首页 > 代码库 > samtools can not find libbz2.so.1.0

samtools can not find libbz2.so.1.0

 

Error:

samtools
samtools: error while loading shared libraries: libbz2.so.1.0: cannot open shared object file: No such file or directory

Solution:

[root@centos64 ~]#  find / -name "libbz2.so.1*"
/lib64/libbz2.so.1.0.4
/lib64/libbz2.so.1
[root@centos64 ~]# ln -s /lib64/libbz2.so.1 /usr/lib64/libbz2.so.1.0

 

samtools can not find libbz2.so.1.0