我正在使用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)
这就是我什至更新/升级系统时发生的情况。此时,我要做的就是能够安装软件并更新我当前的软件。有什么方法可以潜在地扭转这个问题,或者至少可以纠正它?
编辑:幸运的是,此问题仅在发生后的一两天内得到解决。公认的答案非常有效,并解决了我的问题
git-daemon-run
取决于,runit
因此我将其删除,然后删除了runit
。现在测试以查看git是否仍然有效。但这确实解决了我当前的问题!