Answers for "samtools: error while loading shared libraries: libcrypto.so.1.0.0: cannot open shared object file: no such file or directory"

5

yay: error while loading shared libraries: libalpm.so.12: cannot open shared object file: No such file or directory

1- Remove yay by running
$ sudo pacman -R yay

2- Make a new directory and change to it (makes for easier cleanup): 
$ mkdir /tmp/yay && cd /tmp/yay

3- Download the latest PKGBUILD for yay by running 
$ curl -OJ 'https://aur.archlinux.org/cgit/aur.git/plain/PKGBUILD?h=yay'

4- Build and install the package by running 
$ makepkg -si

5- Get rid of of the evidence: 
$ rm -rf /tmp/yay
Posted by: Guest on June-22-2021
2

samtools: error while loading shared libraries: libcrypto.so.1.0.0: cannot open shared object file: no such file or directory

As I'm quite familiar with Debian and programming, here is some advice:

** if you have questions about setting up your system, ask on SuperUser and/or (if your question is specific to a Un*x flavour) on Unix&Linux

** when fuddling around with symlinks to shared-libraries, you should have a thorough understanding of what you are doing. these files are named for a reason - and the reason is to protect you (the user of the system) from weird crashes, because an application is using a wrong/incompatible library.

** a tutorial that tells you to do so, should give proper warning and explanation about what you are to do.

So, why are these instructions in the tutorial you are following?
The application you are trying to run, has been linked against libcrypto.so. in the developer machine, libcrypto.so was a symlink to libcrypto.so.10, but this is missing on Debian: maybe because the library has been removed (and replaced by a new and incompatible version), or because Debian uses a different naming scheme as the system that was used to compile the application.

If it is the former, then you cannot solve the issue by using symlinks. You have to get the right library (or the application linked against the correct libraries).

If it is the latter, you may get away with symlinking the expected library name with the correct library files found on your system. (This is assuming that the only difference between the two systems is indeed the so-naming scheme).

So, how to do it?
first of all, you should find out, against which libraries your application was really linked, and which of these libraries are missing.

$ ldd /path/to/my/app | grep -i "not found"
libfoo.so.10 => not found

** then find out, whether you have a (hopefully compatible) library on your system.
A good place to start is /usr/lib/. but not-so-recently, Debian has started moving the libraries to /usr/lib/<host-triplet>, with <host-triplet> describing a target architecture.
You can find out the default value if your application was indeed built for the architecture you are running (e.g. for linux-amd64) you can get the string by running something like:

$ gcc -print-multiarch

Imagine you discover that you have /usr/lib/x86_64-linux-gnu/libfoo.so.1.0.0.

if you have good reason to believe that this can act as a replacement for libfoo.so.10, you can go make the found library available to your application by means of a symlink, e.g.

# cd /usr/lib/x86_64-linux-gnu
# ln -s libfoo.so.1.0.0 libfoo.so.10
Posted by: Guest on August-01-2021

Code answers related to "samtools: error while loading shared libraries: libcrypto.so.1.0.0: cannot open shared object file: no such file or directory"

Browse Popular Code Answers by Language