安装任何应用程序时出现“dpkg 被中断错误”

安装任何应用程序时出现“dpkg 被中断错误”

我有 ubuntu 11.10,当我在终端中运行任何包管理命令时,我收到此消息

E: dpkg was interrupted, you must manually run 'sudo dpkg --configure -a'
to correct the problem. 

这是什么问题?我该如何解决?

答案1

该错误信息通常表明过去下载中断。

应通过以下方式解决此问题:

sudo dpkg --configure -a
sudo apt-get -f install
sudo apt-get update && sudo apt-get upgrade

相关内容