Debian / linux依赖错误

时间:2017-01-05 02:12:42

标签: mysql linux debian

我正在尝试在debian linux服务器上安装mysql-server,但我得到了这个:

the error

当我搜索我的问题时,我已经尝试了几乎所有我找到的东西,没有任何效果。 这个问题也发生在其他软件包上,而不仅仅是mysql-server(例如mysql-client)。

我尝试了apt-get install -f以及来自终端的所有其他可能的修复,但没有任何效果。 请注意,我没有很好的使用linux的经验。

这是我从apt-get update获得的:

the error 2

谢谢。

1 个答案:

答案 0 :(得分:0)

我认为您的问题与您的存储库列表/etc/apt/sources.list有关,我相信您没有列出所有必需的存储库。我建议您将源列表/etc/apt/sources.list更改为以下内容:

deb http://ftp.us.debian.org/debian/ wheezy main contrib non-free
deb-src http://ftp.us.debian.org/debian/ wheezy main contrib non-free
deb http://security.debian.org/ wheezy/updates main contrib non-free
deb-src http://security.debian.org/ wheezy/updates main contrib non-free
deb http://ftp.us.debian.org/debian/ wheezy-updates main contrib non-free
deb-src http://ftp.us.debian.org/debian/ wheezy-updates main contrib non-free
deb http://ftp.debian.org/debian wheezy-backports main contrib non-free
deb-src http://ftp.debian.org/debian wheezy-backports main contrib non-free

之后运行apt-get update并再次尝试安装和修正(例如apt-get install -f)。