由于 dpkg 错误无法安装软件包,常见解决方案失败

由于 dpkg 错误无法安装软件包,常见解决方案失败

大多数纠正此行为的解决方案均无效。

~$ sudo apt-get purge paper-icon-theme
E: dpkg was interrupted, you must manually run 'sudo dpkg --configure -a' to correct the problem. 
~$ sudo apt-get remove paper-icon-theme
E: dpkg was interrupted, you must manually run 'sudo dpkg --configure -a' to correct the problem. 
~$  sudo apt-get install -f
E: dpkg was interrupted, you must manually run 'sudo dpkg --configure -a' to correct the problem.

运行sudo dpkg --configure -a会导致系统挂起。尝试了 1 个多小时,系统与立即运行命令时一样没有响应。

该命令不起作用。它一运行就挂起。

有一天,我在安装 paper-icon-theme 时意外断电,然后就出错了。从那时起,我就无法运行该apt-get install命令了。

我该怎么办?

在 Ubuntu 14.04 上

答案1

  • 启动到 GRUB 菜单。
  • 选择 ”Ubuntu 的高级选项“。
  • 现在选择第一个/最上面的“(恢复模式)“ 选项。
  • 现在您将看到一个“恢复菜单“。从这里,选择“根访问权限“ 选项。
  • 出现提示时输入您的 root 密码。

运行以下命令:

sudo mount -o remount,rw /
fsck -f /
sudo dpkg --configure -a
sudo apt-get install -f

那就可以了。

相关内容