我需要安装 libcrypto.so.1.0.0,但我不知道如何安装它 - 并且 apt 找不到它

我需要安装 libcrypto.so.1.0.0,但我不知道如何安装它 - 并且 apt 找不到它

我正在尝试安装linuxtrack在 Ubuntu 22.04.2 上。解压到 /opt 后,我​​运行

$ ldd * | grep 'not found' | sort -u
libcrypto.so.1.0.0 => not found
libcwiid.so.1 => not found
liblo.so.7 => not found
libQtCore.so.4 => not found
libQtGui.so.4 => not found
libQtNetwork.so.4 => not found
libQtOpenGL.so.4 => not found
libQtWebKit.so.4 => not found

所以我需要安装很多的东西。即使是第一个也让我头疼。

我已经安装了 libssl-dev - 这并没有解决问题。

然后我尝试了这个:

$ sudo apt install libssl-dev=1.0.0
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Package libssl-dev is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
However the following packages replace it:
  libssl-dev:i386

E: Version '1.0.0' for 'libssl-dev' was not found

然后我尝试了这个:

$ apt-file search libcrypto.so.1.0.0

- 不返回任何输出,因此看起来没有包包含该文件。伟大的。

我现在真的不知道该怎么办。这只是八个依赖项中的第一个,我需要安装......

相关内容