尝试通过命令行安装 Chrome 时收到错误消息

尝试通过命令行安装 Chrome 时收到错误消息

我刚刚重新安装了 15.10,因为 16.04 崩溃了,无法启动。

以下是我按照论坛执行的步骤:

wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
sudo apt-get update
sudo apt-get install google-chrome-stable

这是错误信息:

sudo apt-get install google-chrome-stable  
E: dpkg was interrupted, you must manually run 'sudo dpkg --configure -a' to correct the problem. 

答案1

嗯,很简单,只需sudo dpkg --configure -a按照错误指示运行即可。

相关内容