无法使用apt安装任何软件包

马罗斯

我的Debian 6服务器上有大问题。我无法在系统上安装/卸载任何软件包。当我尝试安装某些东西时,我看到此错误:

You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
 consolekit : Depends: libglib2.0-0 (>= 2.37.3) but 2.24.2-1 is to be installed
              Breaks: udev (< 204-1) but 164-3 is to be installed
 libgudev-1.0-0 : Depends: libglib2.0-0 (>= 2.37.3) but 2.24.2-1 is to be installed
 libpolkit-agent-1-0 : Depends: libglib2.0-0 (>= 2.37.3) but 2.24.2-1 is to be installed
                       Depends: libpolkit-gobject-1-0 (>= 0.105) but 0.96-4+squeeze2 is to be installed
 libsecret-1-0 : Depends: libglib2.0-0 (>= 2.38.0) but 2.24.2-1 is to be installed
 libudisks2-0 : Depends: libglib2.0-0 (>= 2.37.3) but 2.24.2-1 is to be installed
 policycoreutils : Depends: libaudit0 but it is not going to be installed
 xserver-xorg-input-all : Depends: xserver-xorg-input-vmmouse but it is not going to be installed
                          Recommends: xserver-xorg-input-wacom but it is not going to be installed
 xserver-xorg-input-evdev : Depends: libevdev2 (>= 0.9.1) but it is not going to be installed
                            Depends: libmtdev1 (>= 1.1.0) but it is not going to be installed
 xserver-xorg-input-synaptics : Depends: libevdev2 (>= 1.3) but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

当我尝试apt-get -f install

dpkg: considering deconfiguration of sysvinit-utils, which would be broken by installation of startpar ...
dpkg: no, sysvinit-utils is essential, will not deconfigure
 it in order to enable installation of startpar
dpkg: error processing archive /var/cache/apt/archives/startpar_0.59-3_amd64.deb (--unpack):
 installing startpar would break existing software
configured to not write apport reports

Errors were encountered while processing:
 /var/cache/apt/archives/startpar_0.59-3_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

/etc/apt/sources.list 包含:

deb http://ftp.pl.debian.org/debian/ squeeze main
deb-src http://ftp.pl.debian.org/debian/ squeeze main
deb http://http.debian.net/debian/ squeeze-lts main contrib non-free
deb-src http://http.debian.net/debian/ squeeze-lts main contrib non-free
deb http://http.debian.net/debian/ squeeze main contrib non-free
deb-src http://http.debian.net/debian/ squeeze main contrib non-free
deb http://security.debian.org/ squeeze/updates main
deb-src http://security.debian.org/ squeeze/updates main
deb http://debian.sur5r.net/i3/ squeeze universe
deb http://ftp.debian.org/debian sid main
斯蒂芬·基特

这些错误源于您的apt配置混合了Squeeze(Debian 6)和Sid(Debian不稳定)的事实这是一个坏主意...

您需要sid/etc/apt/sources.list文件中删除(用注释行#),然后运行

apt-get update
apt-get -f install

解决问题。

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章