Problema ao instalar o pacote git-all [duplicado]

5

Estou tentando instalar o git-all usando os seguintes comandos:

sudo apt update
sudo apt install git-all

e obtenho os seguintes resultados:

jonathan@Aristotle:~$ sudo apt install git-all
Reading package lists... Done
Building dependency tree       
Reading state information... Done
git-all is already the newest version (1:2.7.4-0ubuntu1).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
2 not fully installed or removed.
After this operation, 0 B of additional disk space will be used.
Do you want to continue? [Y/n] y
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
No apport report written because the error message indicates its a followup error from a previous failure.
                                                                                                          Errors were encountered while processing:
 runit
 git-daemon-run
E: Sub-process /usr/bin/dpkg returned an error code (1)

Eu encontrei essa resposta para uma pergunta semelhante: link mas nenhuma das soluções mencionadas funcionou para mim. Alguma idéia de como eu posso proceder daqui?

    
por Jonathan 13.05.2016 / 16:25

3 respostas

21

Eu descobri que este é um bug do Ubuntu que foi reportado como https://bugs.launchpad.net/ubuntu/+source/runit/+bug/1448164.

O problema existe porque o runit depende do upstart e o Ubuntu mudou para o systemd em 15.04. A solução alternativa é a seguinte:

sudo apt-get purge runit
sudo apt-get purge git-all
sudo apt-get purge git
sudo apt-get autoremove
sudo apt update
sudo apt install git

Basicamente você se livra completamente do runit, git-all e git, limpa o banco de dados apt e então instala o git. Em vez de instalar o git-all novamente, escolha os pacotes que você realmente precisa e instale-os.

    
por Jonathan 13.05.2016 / 17:55
2

Livre-se do runit e do git-daemon-run. Instale o git-daemon-sysvinit em seu lugar. O git-daemon-sysvinit é uma alternativa para o git-daemon-run, e funciona no Ubuntu 15.04 e acima.

Depois de instalar o git-daemon-sysvinit, as dependências de git-all devem ser atendidas, e você pode continuar.

    
por Stephen G Tuggy 09.07.2016 / 17:52
2

Eu tive o mesmo problema ao tentar instalar todos os pacotes do git no Ubuntu 16.04 LTS. Foi o que eu fiz:

sudo apt-get purge runit
sudo apt-get purge git-all
sudo apt-get purge git
sudo apt-get autoremove
sudo apt update 
sudo apt-get install git-daemon-sysvinit
sudo apt-get install git-all

Eu escrevi este pequeno código baseado nos dois posts acima de Johnathon e Stephen. Ele funcionou para mim!

    
por PARTH SURESH 30.07.2016 / 14:26

Tags