安装 git-all 时出现“无法连接到 Upstart”错误

安装 git-all 时出现“无法连接到 Upstart”错误

我正在使用 15.04。

所以我使用 git 并安装了标准版本。我设置了 ssh 密钥,并能够将我的一个存储库克隆到正确的文件夹。一切都运行良好,然后我决定安装更多软件包是个好主意。我运行了sudo apt-get install git-all。我正在查看错误代码,现在必须处理 upstart。

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)

当我更新/升级系统时,也会发生这种情况。此时,我所要做的就是能够安装软件并更新我当前的软件。有什么方法可以扭转这个问题或至少纠正它吗?

编辑:谢天谢地,这个问题在发生后一两天就解决了。接受的答案非常有效,解决了我的问题。

答案1

这是因为这个错误https://bugs.launchpad.net/ubuntu/+source/runit/+bug/1448164

您需要删除runitgit-daemon-run。这应该可以解决问题。

sudo apt-get purge runit git-daemon-run

不要忘记访问错误报告并点击是的,这个错误影响到我

git-all无错误

似乎您可以git-all使用守护进程支持而不会出现此错误。git-all建议使用git-daemon-rungit-daemon-sysvinit包。apt选择git-daemon-run作为首选。但如果您明确提到所需的包(即git-daemon-sysvinit),apt则不会尝试安装git-daemon-run

你需要做的就是

sudo apt-get install git-all git-daemon-sysvinit

希望有所帮助。

答案2

您需要强制删除runit。运行sudo dpkg -r runit应该可以。您可能需要使用其中一个--force-*选项。

答案3

尝试:

sudo apt update 
sudo apt --purge remove git 
sudo apt install git

反而。

答案4

您可能在虚拟主机下使用 Ubuntu。如果是这样,您需要使用以下步骤修改 initctl 以返回 true。首先,您需要告诉 dpkg,您将使用以下命令更改 upstart 软件包安装:

sudo dpkg-divert --local --rename --add /sbin/initctl

然后,您需要创建一个虚拟的 initctl 作为到 true 的链接:

ln -s /bin/true /sbin/initctl

相关内容