全新安装 lubuntu xenial
遇到无法找到打印服务的问题(此提示)。由于某种原因,Cups 没有安装(可能是 lubuntu 做出的另一个精简选择?)。尝试安装 cupssudo apt-get install cups --install-suggests
它运行了几个小时,并拖慢了系统速度。试图查找为什么它花了这么长时间(可能表明这是一个糟糕的选择?),我意外地关闭了终端窗口,中止了该过程。现在runit
和git-daemon-run
正在引起问题。我无法在 synaptic 或 apt 中完成任何事情,否则它们会生气,因为它们坏了。
我已经尝试了很多方法,但这可能是最相关的方法:
$ sudo dpkg --configure -a
Setting up runit (2.1.2-3ubuntu1) ...
start: Unable to connect to Upstart: Failed to connect to socket /com/ubuntu/upstart: Connection refused
dpkg: error processing package runit (--configure):
subprocess installed post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of git-daemon-run:
git-daemon-run depends on runit; however:
Package runit is not configured yet.
dpkg: error processing package git-daemon-run (--configure):
dependency problems - leaving unconfigured
Errors were encountered while processing:
runit
git-daemon-run
请帮忙!
编辑:@jokerdino 将此标记为重复是正确的。尝试 @minigeek 的建议时,出现了重复链接中提到的 Upstart 错误。删除 runit 似乎效果很好:
sudo dpkg -r --force-all runit
sudo apt-get remove --purge git-daemon-run
答案1
跑步 :
sudo apt-get install --reinstall runit git-daemon-run
如果这不能解决您的问题:
这里我已经写了一些修复损坏的软件包或解决依赖问题的说明,请参阅:https://askubuntu.com/a/827763/593116