Проблемы Git-All и Runit в 16.04
Когда я пытаюсь установить git-all из репозиториев sudo apt-get install git-all
в конце процесса установки я получаю несколько ошибок:
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
Кажется, что пакет runit еще не настроен, система является новой установкой Ubuntu 16.04. Кто-нибудь знает, как мне это настроить?
1 ответ
Попробуйте установить git-daemon-sysvinit перед git-all:
sudo apt-get install git-daemon-sysvinit
git-daemon-sysvinit - это альтернатива git-daemon-run, и она лучше работает на Ubuntu 15.04 и выше. (См. https://bugs.launchpad.net/ubuntu/+source/runit/+bug/1448164)