Friday, May 3, 2024
64
rated 0 times [  64] [ 0]  / answers: 1 / hits: 434418  / 3 Years ago, sun, july 4, 2021, 11:31:39

Im trying to use twoBitToFa, which is a small program released by the University of California Santa Cruz, that uncompresses large genome files and I get this error:



error while loading shared libraries: libssl.so.10: cannot open shared object file: No     such file or directory


I tried searching for what package provides it. I switched from Fedora which had yum provides but when looking for the Ubuntu equivalent, I came across apt-file search but when I tried that I got a command not found error.



How can I get this libssl file, and more generally, how can I search for what package provides a file so I can do this by myself in the future?


More From » shared-library

 Answers
6

Lets make sure that you have your SSL installed and updated:



sudo apt-get update
sudo apt-get install libssl1.0.0 libssl-dev


Now lets fix the naming of the file by creating a link:



cd /lib/x86_64-linux-gnu
sudo ln -s libssl.so.1.0.0 libssl.so.10
sudo ln -s libcrypto.so.1.0.0 libcrypto.so.10


And finally, lets inform the developer about this flaw so he can fix it :)


[#29686] Monday, July 5, 2021, 3 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
ippalogu

Total Points: 215
Total Questions: 127
Total Answers: 146

Location: Denmark
Member since Tue, Jul 19, 2022
2 Years ago
ippalogu questions
Tue, Jan 4, 22, 21:49, 2 Years ago
Tue, Sep 21, 21, 09:12, 3 Years ago
Wed, May 19, 21, 02:24, 3 Years ago
Mon, Dec 27, 21, 01:44, 2 Years ago
;