E:需要重新安装软件包 resolvconf,但我找不到它的存档

E:需要重新安装软件包 resolvconf,但我找不到它的存档

当我使用命令时

sudo apt-get update && sudo apt-get upgrade

然后我得到..

Reading package lists... Done
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: The package resolvconf needs to be reinstalled

请问我该如何解决?

答案1

听起来你有一个依赖性问题,因此以下步骤应该可以解决这个问题:

sudo apt-get install -f
sudo apt-get upgrade

install -f将解决依赖问题并帮助修复损坏的软件包。

编辑

尝试以下方法来安装该包:

cd
wget http://91.189.91.13/ubuntu/pool/main/r/resolvconf/resolvconf_1.69ubuntu1_all.deb
sudo dpkg -i resolvconf_1.69ubuntu1_all.deb

这将从存在 DNS 问题的 Ubuntu 存储库下载软件包,因此使用的是 IP 地址而不是域名(来源:这个答案

相关内容