Teacher
Professional
- Messages
- 2,669
- Reaction score
- 828
- Points
- 113
I tried to install for Debian 10 the mega.nz Debian package. It actually didn't worked so i write a tutorial on how to fix that error.
Download Debian Packet From Here
Install GDEBI
Try To Install Mega.nz
I had an error:
libraw.so.19 dependency.
Fix The Error
Right click on mega.deb package > extract here > go into the folder
Now you see three folders:
DEBIAN
etc
usr
Go to DEBIAN and open the file "control".
Search for "libraw19" and replace it with "libraw20".
Save the files and exit the file manager.
Now we need to build a debian package:
Reinstall:
The installation worked for me.
Start Errors
So we changed the dependency but not the binary file. All we can do is to copy the libraw20 to libraw19.
Now login and it should work.
Code:
https://mega.io/sync
Code:
sudo apt install gdebi -y
Code:
sudo gdebi ./megasync-Debian_10.0_amd64.deb
I had an error:
libraw.so.19 dependency.
Right click on mega.deb package > extract here > go into the folder
Now you see three folders:
Go to DEBIAN and open the file "control".
Search for "libraw19" and replace it with "libraw20".
Save the files and exit the file manager.
Now we need to build a debian package:
Code:
sudo dpkg-deb --build megasync-Debian_10.0_amd64/
Reinstall:
Code:
sudo gdebi megasync-Debian_10.0_amd64.deb
The installation worked for me.
So we changed the dependency but not the binary file. All we can do is to copy the libraw20 to libraw19.
Code:
sudo cp -R /usr/lib/x86_64-linux-gnu/libraw.so.20 /usr/lib/x86_64-linux-gnu/libraw.so.19
sudo megasync
Now login and it should work.