库:libcrypto.so.1.0.0:无法打开共享对象文件:没有这样的文件或目录

库:libcrypto.so.1.0.0:无法打开共享对象文件:没有这样的文件或目录

libcrypto.so.1.0.0我使用 kali linux 操作系统,我的库有问题

/Bureau/PacketTracer62Student/bin$ ./PacketTracer6 
./PacketTracer6: error while loading shared libraries: libcrypto.so.1.0.0: cannot open shared object file: No such file or directory

答案1

你需要安装libssl1.0.0:

sudo apt-get install libssl1.0.0

为了便于将来参考,您可以安装apt-file以自行查找:

sudo apt-get install apt-file
sudo apt-file update
apt-file search libcrypto.so.1.0.0

答案2

  1. 须藤纳米 /etc/apt/sources.list
  2. 添加德布http://security.ubuntu.com/ubuntu仿生安全主要
  3. sudo apt update && apt-cache 策略 libssl1.0-dev
  4. sudo apt-get install libssl1.0-dev

来源:https://raspberrypi.stackexchange.com/questions/101245/how-do-i-install-the-libssl1-0-0-package/112232#112232?newreg=b4deba3288294d1e82b88241d5d0c295

答案3

使用reinstall对我有用:

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

答案4

编辑源列表以sudo nano /etc/apt/sources.list添加以下行

deb http://security.ubuntu.com/ubuntu xenial-security main

然后sudo apt updatesudo apt install libssl1.0.0

相关内容