问题描述
我用的是15.04。
所以我正在使用 git 并安装了标准版本。我设置了 ssh 密钥,并能够将我的存储库之一克隆到正确的文件夹。一切都很顺利,然后我决定安装更多软件包是个好主意。我运行了 sudo apt-get install git-all
。我正在查看错误代码,现在必须与暴发户打交道。
start: Unable to connect to Upstart: Failed to connect to socket /com/ubuntu/upstart: Connection refused
No apport report written because the error message indicates its a followup error from a previous failure.
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
E: Sub-process /usr/bin/dpkg returned an error code (1)
当我更新/升级我的系统时就会发生这种情况。此时,我所要做的就是能够安装软件并更新我当前的软件。有什么办法可以扭转这个问题或者至少纠正它吗?
编辑:值得庆幸的是,这个问题在发生后一两天就得到了解决。接受的答案完美地解决了我的问题
最佳答案
发生这种情况是因为这个错误 https://bugs.launchpad.net/ubuntu/+source/runit/+bug/1448164
您需要删除 runit
和 git-daemon-run
。这应该可以解决问题。
sudo apt-get purge runit git-daemon-run
不要忘记访问错误报告并单击是,此错误影响我。
git-all
无错误
看来您可以让 git-all
具有守护程序支持,而不会出现此错误。 git-all
建议使用 git-daemon-run
或 git-daemon-sysvinit
封装。 apt
选择 git-daemon-run
作为首选。但是如果您明确提及所需的软件包(即 git-daemon-sysvinit
), apt
将不会尝试安装 git-daemon-run
。
您需要做的就是
sudo apt-get install git-all git-daemon-sysvinit
希望有帮助。
次佳答案
您需要强制删除 runit
。运行 sudo dpkg -r runit
应该可以。您可能需要使用 --force-*
选项之一。
第三种答案
尝试:
sudo apt update
sudo apt --purge remove git
sudo apt install git
反而。