首页 > 其他分享 >bcftools: error while loading shared libraries: libcrypto.so.1.0.0: cannot open shared object

bcftools: error while loading shared libraries: libcrypto.so.1.0.0: cannot open shared object

时间:2023-07-20 20:27:38浏览次数:36  
标签:libcrypto so.1 PC1 loading cannot shared root bcftools

 

001、问题

[root@PC1 home]# bcftools
bcftools: error while loading shared libraries: libcrypto.so.1.0.0: cannot open shared object file: No such file or directory

 

002、解决方法

[root@PC1 home]# find / -user root -name "libcrypto.so.*"     ## 查找库文件
/root/anaconda3/pkgs/openssl-1.1.1t-h7f8727e_0/lib/libcrypto.so.1.1
/root/anaconda3/pkgs/openssl-1.1.1u-h7f8727e_0/lib/libcrypto.so.1.1
/root/anaconda3/lib/libcrypto.so.1.1
/usr/lib64/libcrypto.so.1.0.2k
/usr/lib64/libcrypto.so.10
[root@PC1 home]# ln -s /root/anaconda3/lib/libcrypto.so.1.1 /root/anaconda3/lib/libcrypto.so.1.0.0  ## 建立软链接
[root@PC1 home]# find / -user root -name "libcrypto.so.1.0.0"      ## 查找确认
/root/anaconda3/lib/libcrypto.so.1.0.0

 

003、测试bcftools命令

[root@PC1 home]# bcftools --version      ## 版本
bcftools 1.8
Using htslib 1.8
Copyright (C) 2016 Genome Research Ltd.
License Expat: The MIT/Expat license
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
[root@PC1 home]# bcftools               ## 调用

Program: bcftools (Tools for variant calling and manipulating VCFs and BCFs)
Version: 1.8 (using htslib 1.8)

Usage:   bcftools [--version|--version-only] [--help] <command> <argument>

Commands:

 

标签:libcrypto,so.1,PC1,loading,cannot,shared,root,bcftools
From: https://www.cnblogs.com/liujiaxin2018/p/17569552.html

相关文章

  • vue项目安装lees-loader报错:Module build failed: Error: Cannot find module 'less'
    1-新搭建的一个项目,运行时报Modulebuildfailed:Error:Cannotfindmodule'less'错误原因:vue文件里面的style添加了 lang="less" 解决方案:安装less  npminstallless2-安装less后运行报错:Modulebuildfailed:TypeError:this.getOptionsisnotafunc......
  • Embedding into a shared library fails-- c++ import numpy异常
    rb reportatbugs.python.orgWedNov2610:13:39CET2008 Previousmessage: [New-bugs-announce][issue4433]_ctypes.COMErrorcrashNextmessage: [New-bugs-announce][issue4435]SphinxdoesnotshowfaileddoctestsinquietmodeMessagessortedby: [da......
  • Python Magic Methods & Operator Overloading All In One
    PythonMagicMethods&OperatorOverloadingAllInOne__init__&__add__MagicMethods__sub__for-__mul__for*__truediv__for/__floordiv__for//__mod__for%__pow__for**__and__for&__xor__for^__or__for|Theexpression......
  • LOADING Redis is loading the dataset in memory
     MISCONFRedisisconfiguredtosaveRDBsnapshots,butiscurrentlynotabletopersistondisk.Commandsthatmaymodifythedatasetaredisabled.PleasecheckRedislogsfordetailsabouttheerror LOADINGRedisisloadingthedatasetinmemory......
  • loading
    <divclass="loading"><divclass="clockwise"><div></div><div></div><div></div><div></div><div></div><d......
  • shared_ptr包装this指针构造bug
    目录成员函数里用shared_ptr包装this指针,当shared_ptr析构了,就会调用this对象的析构函数,是非常可怕的事情。classA{voideat(){std::shared_ptrp(this);ptr->status="吃了";}}voidfunc(){Aa;a.eat();//eat里......
  • 解决报错Cannot connect to the Maven process. Try again later. If the problem per
    故障描述:使用idea下载java某个源文件,idea报错:CannotconnecttotheMavenprocess.Tryagainlater.Iftheproblempersists,checktheMaven解决方案:修改maven的配置文件......
  • idea进行maven打包的时候报错Cannot create resource output directory
    今天在进行maven打包的时候报错了Cannotcreateresourceoutputdirectory:XXXXX,之前遇到过,但是之前选择了重启就好了,这次真不想重启,有很多需要保存的shell页面原因呢就是target被占用,导致打包不了。但是我仔仔细细检查了,真的没这情况啊,没有任何文件夹占用了然后各种看,最后,在......
  • RestKit学习5:Loading Remote Objects
    本系列的前面几篇:RestKit学习1:引用RestKit项目RestKit学习2:使用RestKit发送和接受请求 RestKit学习3:CoreData从模型到实体RestKit学习4:DatabaseSeeding(生成数据库文件)这篇是从服务器的一个json接口直接获得数据,并把数据解析成对象。需要解析的json字符串:{"error":0,"message":"......
  • vue3项目 运行 报错 Cannot assign to "b" because it is a constant
    环境依赖node18.16.0vite4.4.4vue 3.2.47背景当前错误与环境依赖关系不大,是由于我在打包的文件写的代码错误导致的,一般情况不会有这个错报错信息X[ERROR]Cannotassignto"b"becauseitisaconstantThesymbol"b"wasdeclaredaconstanthere:原因将r......