我正试图在amd64 Kali-Linux上安装Skype,遵循这个教程。然而,一旦我完成了步骤4.1,gdebi skype-install.deb,我就得到了一条错误消息:This package is uninstallable Dependency is not satisfiable: libssl1.0.0,我尝试过apt-get install libssl1.0.0它,它说它是最新的。然后我尝试了apt-get autoremove,然后再次尝试apt-get install。它再次表示它是最新的,我再次尝试使用gdebi,但没有结果。任何帮助都会很棒。
发布于 2016-12-23 20:53:02
libssl1.0.0包不再在拉伸或sid中可用。
您仍然可以从snapshot.debian.org:http://snapshot.debian.org/binary/libssl1.0.0/下载它。
请注意,如果您正以这种方式安装该软件包,则不会对其进行安全更新。
发布于 2016-12-24 18:06:43
缺少的包(libssl1.0.0 )不存在于Kali.repo上,您可以按照推荐的这里从debian回购安装它。
wget http://security.debian.org/debian-security/pool/updates/main/o/openssl/libssl1.0.0_1.0.1t-1+deb8u5_amd64.deb
dpkg -i libssl1.0.0_1.0.1t-1+deb8u5_amd64.deb
apt-get -f install然后安装skype:
wget -O skype-install.deb http://www.skype.com/go/getskype-linux-deb
dpkg --add-architecture i386
apt-get update
gdebi skype-install.deb
apt-get -f installhttps://unix.stackexchange.com/questions/332443
复制相似问题