erro na instalação do gcc no ubuntu Ubuntu 12.04

2

Eu quero instalar o gcc em uma máquina Ubuntu, mas tenho os seguintes erros:

   t@lab45:~# apt-get install build-essential
    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:
     build-essential : Depends: libc6-dev but it is not going to be installed or                        
                                libc-dev 
                       Depends: gcc (>= 4:4.4.3) but it is not going to be installed           
                       Depends: g++ (>= 4:4.4.3) but it is not going to be installed
                       Depends: make but it is not going to be installed
                       Depends: dpkg-dev (>= 1.13.5) but it is not going to be installed
     linux-image-generic-pae : Depends: linux-image-3.2.0-37-generic-pae but it is not going to be installed
    E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

o problema é semelhante ao Instale o gcc no Ubuntu 12.04 LTS mas as soluções não são viáveis.

como lidar com isso? obrigado!

    
por user138126 11.03.2013 / 16:23

1 resposta

1

Você deve certificar-se de que o arquivo main está ativado no arquivo sources.list e que nenhum pacote está em espera.

sudo apt-get update
sudo apt-get clean
grep -P 'main&precise-updates' /etc/apt/sources.list
## Here should return something like deb http://ubuntu.mirror.cambrium.nl/ubuntu/ precise-updates main
echo $(dpkg --get-selections | grep hold | awk '{print }') install | sudo dpkg --set-selections
sudo apt-get upgrade
sudo apt-get --fix-missing install build-essentials

Com isso, sua instalação deve ser perfeita.

    
por Braiam 15.08.2013 / 15:32