我遇到了一个 apt 错误,似乎每次更新时都会发生。每次我尝试通过 apt 安装某些东西时都会输出错误。以下是输出;
E: Waited for /usr/sbin/dpkg-preconfigure --apt || true but it wasn't there
E: Failure running script /usr/sbin/dpkg-preconfigure --apt || true
运行版本 12.04.3
答案1
这意味着你以某种方式搞砸了你的配置脚本,发生这种情况的原因是因为 DPkg::Pre-Install-Pkgs {"/usr/sbin/dpkg-preconfigure --apt || true";}; 在你的脚本中不存在,所以你可能必须创建它:
sudo sh -c "echo 'DPkg::Pre-Install-Pkgs {"/usr/sbin/dpkg-preconfigure --apt || true";};' >> /etc/apt/apt.conf.d/70debconf"
现在重新尝试安装。
感谢 Braiam 的回答