Pacotes “quebram” um ao outro

2

Quando tento executar sudo apt-get install ou sudo apt-get -f install , ocorre o seguinte erro:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
You might want to run 'apt-get -f install' to correct these.
The following packages have unmet dependencies:
 libc6 : Breaks: libc6:i386 (!= 2.23-0ubuntu7) but 2.23-0ubuntu6 is installed
 libc6:i386 : Breaks: libc6 (!= 2.23-0ubuntu6) but 2.23-0ubuntu7 is installed
E: Unmet dependencies. Try using -f.
    
por Hangai 22.03.2017 / 06:57

1 resposta

1

Se o Apt não puder resolver este conflito você deverá ser capaz de resolver isso se você forçar a instalação da versão mais alta das duas versões do pacote:

sudo apt-get install -f libc6:i386=2.23-0ubuntu7

Se o Apt ainda se recusar, você pode recorrer a uma instalação manual:

cd /tmp
apt-get download libc6:i386=2.23-0ubuntu7
sudo dpkg -i libc6_2.23-0ubuntu7_i386.deb
sudo apt-get install -f
    
por David Foerster 09.04.2017 / 19:27