如何修复 sudo apt-get upgrade 时的错误

如何修复 sudo apt-get upgrade 时的错误

我在 Ubuntu 12.04 服务器上收到以下错误。这台机器上的所有内容都是使用 apt-get install 安装的,并尝试尽可能保持更新。上次更新后,我注意到我无法再更新我的机器。这是一台关键机器,我不确定 -f 是否会破坏其他任何东西。我应该使用 -f 吗?

Reading package lists... Done
Building dependency tree       
Reading state information... Done
You might want to run 'apt-get -f install' to correct these.
The following packages have unmet dependencies:
mysql-server-5.5 : Depends: mysql-server-core-5.5 (= 5.5.35-0ubuntu0.12.04.1) but 5.5.35-0ubuntu0.12.04.2 is installed
E: Unmet dependencies. Try using -f.

答案1

尝试以下命令序列:

sudo apt-get remove mysql-server-core-5.5 mysql-server-5.5 mysql-server
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install mysql-server

只需安装mysql-server(不带 5.5 后缀)就可以了。

相关内容