我在我的一台测试服务器上安装了zentyal,但是它有一些问题,我选择删除它。我从源代码列表中删除了包存储库,并使用了apt-get remove zentyal、apt-get purge zentyal和apt-get autoclean && apt-get clean cache,但是现在我无法安装任何包,因为它抱怨包与被zentyal替换的包的依赖关系。
The following packages have unmet dependencies:
bind9 : Depends: libbind9-90 (= 1:9.9.5.dfsg-3ubuntu0.5) but 2:9.9.5.dfsg-3+zentyal is to be installed
Depends: libdns100 (= 1:9.9.5.dfsg-3ubuntu0.5) but 2:9.9.5.dfsg-3+zentyal is to be installed
Depends: libisc95 (= 1:9.9.5.dfsg-3ubuntu0.5) but 2:9.9.5.dfsg-3+zentyal is to be installed
Depends: libisccc90 (= 1:9.9.5.dfsg-3ubuntu0.5) but 2:9.9.5.dfsg-3+zentyal is to be installed
Depends: libisccfg90 (= 1:9.9.5.dfsg-3ubuntu0.5) but 2:9.9.5.dfsg-3+zentyal is to be installed
Depends: liblwres90 (= 1:9.9.5.dfsg-3ubuntu0.5) but 2:9.9.5.dfsg-3+zentyal is to be installed
E: Unable to correct problems, you have held broken packages.发布于 2015-09-30 08:29:53
在您的情况下,您必须降低每个包的等级。
sudo apt-get update
sudo apt-get install libbind9-90=1:9.9.5.dfsg-3ubuntu0.5 libdns100=1:9.9.5.dfsg-3ubuntu0.5 libisc95=1:9.9.5.dfsg-3ubuntu0.5 libisccc90=1:9.9.5.dfsg-3ubuntu0.5 libisccfg90=1:9.9.5.dfsg-3ubuntu0.5 liblwres90https://askubuntu.com/questions/680001
复制相似问题