não é possível instalar o gcc-multilib após atualizar para o 14.04

4

Atualizei recentemente de 12.04 para 14.04. Depois de atualizar as coisas começaram a quebrar.

Estou recebendo crt1.o: Nenhum arquivo: Nenhum arquivo ou diretório . Então, eu tentei instalar o gcc-multilib, mas isso também está causando erros.

$ sudo apt-get install gcc-multilib
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 gcc-multilib : Depends: gcc-4.8-multilib (>= 4.8.2-5~) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

Eu tentei

$ sudo apt-get -o Debug::pkgProblemResolver=yes dist-upgrade
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Calculating upgrade... Starting pkgProblemResolver with broken count: 0
Starting 2 pkgProblemResolver with broken count: 0
Done
Done
Starting pkgProblemResolver with broken count: 0
Starting 2 pkgProblemResolver with broken count: 0
Done
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

Eu tentei postar a saída dos seguintes comandos, mas não consigo fazer isso.

cat /etc/apt/sources.list
cat /etc/apt/sources.list.d/*

Como posso resolver isso?

 $ sudo apt-get install gcc-4.8-multilib

 Reading package lists... Done
 Building dependency tree       
 Reading state information... Done
 Some packages could not be installed. This may mean that you have
 requested an impossible situation or if you are using the unstable
 distribution that some required packages have not yet been created
 or been moved out of Incoming.
 The following information may help to resolve the situation:

 The following packages have unmet dependencies:
  gcc-4.8-multilib : Depends: lib32gcc-4.8-dev (= 4.8.2-19ubuntu1) but it is not going to be installed
                    Depends: libx32gcc-4.8-dev (= 4.8.2-19ubuntu1) but it is not going to be installed
 E: Unable to correct problems, you have held broken packages.


 $ sudo apt-get install lib32gcc-4.8-dev

 Reading package lists... Done
 Building dependency tree       
 Reading state information... Done
 Some packages could not be installed. This may mean that you have
 requested an impossible situation or if you are using the unstable
 distribution that some required packages have not yet been created
 or been moved out of Incoming.
 The following information may help to resolve the situation:

 The following packages have unmet dependencies:
  lib32gcc-4.8-dev : Depends: lib32gcc1 (>= 1:4.8.2-19ubuntu1) but it is not going to be installed
                    Depends: libx32gcc1 (>= 1:4.8.2-19ubuntu1) but it is not going to be installed
                    Depends: lib32asan0 (>= 4.8.2-19ubuntu1) but it is not going to be installed
                    Depends: libx32asan0 (>= 4.8.2-19ubuntu1) but it is not going to be installed
 E: Unable to correct problems, you have held broken packages.


$ sudo apt-get install lib32gcc1 libx32gcc1 lib32asan0 libx32asan0

 Reading package lists... Done
 Building dependency tree       
 Reading state information... Done
 Some packages could not be installed. This may mean that you have
 requested an impossible situation or if you are using the unstable
 distribution that some required packages have not yet been created
 or been moved out of Incoming.
 The following information may help to resolve the situation:

 The following packages have unmet dependencies:
  lib32gcc1 : Depends: gcc-4.9-base (= 4.9-20140406-0ubuntu1) but 4.9.1-0ubuntu1 is to   be installed
  libx32gcc1 : Depends: gcc-4.9-base (= 4.9-20140406-0ubuntu1) but 4.9.1-0ubuntu1 is    to be installed
 E: Unable to correct problems, you have held broken packages.



 $ apt-cache policy lib32gcc-4.8-dev  lib32gcc1 gcc-4.9-base

 lib32gcc-4.8-dev:
  Installed: (none)
  Candidate: 4.8.2-19ubuntu1
  Version table:
     4.8.2-19ubuntu1 0
        500 http://archive.ubuntu.com/ubuntu/ trusty/main amd64 Packages
 lib32gcc1:
  Installed: (none)
  Candidate: 1:4.9-20140406-0ubuntu1
  Version table:
     1:4.9.1-0ubuntu1 0
        100 /var/lib/dpkg/status
     1:4.9-20140406-0ubuntu1 0
        500 http://archive.ubuntu.com/ubuntu/ trusty/main amd64 Packages
 gcc-4.9-base:
  Installed: 4.9.1-0ubuntu1
  Candidate: 4.9.1-0ubuntu1
  Version table:
 *** 4.9.1-0ubuntu1 0
        100 /var/lib/dpkg/status
     4.9-20140406-0ubuntu1 0
        500 http://archive.ubuntu.com/ubuntu/ trusty/main amd64 Packages

Link para a saída do sudo apt-get update: link

    
por user368823 14.01.2015 / 22:46

2 respostas

2

Eu não uso frequentemente aptitude , mas em caso de problemas com diferentes versões gcc e dependências não satisfeitas, apt-get é algumas vezes incapaz de corrigir problemas dizendo "você realizou pacotes quebrados"

Nesse dia, você deve instalar o aptitude e tentar instalar o pacote que deseja. Ele mostra claramente todas as dependências e faz não apenas uma sugestão.

As primeiras sugestões são geralmente as mesmas que o apt-get faria, mas se você clicar em "não", o aptitude mostrará outra, que talvez atenda melhor às suas necessidades.

Tente!

A resposta está um pouco atrasada, mas eu sempre procurei por problemas como esses e fiquei feliz com as diferentes soluções.

    
por Sony QS 01.04.2015 / 17:01
0

O comportamento observado parece resultar de um bug legítimo descrito em

link

O relatório acima citado contém minha solução alternativa de curto prazo que renderizará apt-get novamente.

Acredito que, em essência, o sudo apt-get -f install falha é uma duplicata desta questão.

    
por Ben Johnson 15.02.2015 / 17:52