libcrypto is already installed, but it is a newer version. You should be able to fool the application by creating a link to this newer version, called 'libcrypto.so.6'. First, check what current file you have:
- Code: Select all
locate libssl.so.
On Linux Mint 14 64-bit that responds the following (on 32-bit it will be somewhere else):
- Code: Select all
/lib/x86_64-linux-gnu/libssl.so.1.0.0
Then you can create the link by going to the directory that has the file (from the output of above command):
- Code: Select all
cd /lib/x86_64-linux-gnu
And then running this command to create the link (first the name of the file as output by above command, then the 'libcrypto.so.6' name):
- Code: Select all
ln -s libssl.so.1.0.0 libcrypto.so.6
This may or may not work, depending on whether the application you are trying to run is 64-bit or not. If it is 32-bit, you would first install the package libssl1.0.0:i386 and this will install the library to '/lib/i386-linux-gnu/libcrypto.so.1.0.0'. And then you would run the above commands the same way, except replacing the 'x86_64-linux-gnu' part of the path with 'i386-linux-gnu'.