Problema ao instalar o build-essential. Erro de pacotes quebrados

3

Acabei de executar uma nova instalação do Ubuntu Mate 15.10 no meu laptop e atualmente preciso instalar o "build-essential". Eu corri:

sudo apt-get install build-essential

e recebi este erro:

daniel@daniel-VGN-NR230FE:~$ sudo apt-get install build-essential 
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:
build-essential : Depends: libc6-dev but it is not going to be installed or
                        libc-dev
               Depends: g++ (>= 4:5.2) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

Eu não sei se tem alguma coisa a ver com isso, mas durante a instalação, eu pulei alguns pacotes, já que a instalação demoraria uma eternidade (300 min ou mais).

Antes de fazer o essencial da compilação, instalei todas as atualizações disponíveis por meio do Software Updater e dos pacotes de idiomas incompletos, mas, novamente, recebi esse erro.

    
por Daniel Stark 31.03.2016 / 18:45

1 resposta

2

Eu começaria verificando se as fontes main da sua distro estão habilitadas, Se ela é 15.10, seu nome de código deve ser wily .

  1. Abra o seu arquivo sources :

    $sudo gedit /etc/apt/sources.list

  2. Procure pelas seguintes linhas e remova o comentário delas, salve o arquivo:

    ###### Ubuntu Main Repos
    deb http://us.archive.ubuntu.com/ubuntu/ wily main
    deb-src http://us.archive.ubuntu.com/ubuntu/ wily main

    ###### Ubuntu Update Repos
    deb http://us.archive.ubuntu.com/ubuntu/ wily-security main
    deb http://us.archive.ubuntu.com/ubuntu/ wily-updates main e deb-src http://us.archive.ubuntu.com/ubuntu/ wily-security main e deb-src http://us.archive.ubuntu.com/ubuntu/ wily-updates main

  3. Atualizar fontes e amp; Repetir a instalação:

    $sudo apt-get update e sudo apt-get install build-essential

por Roberto León 31.03.2016 / 22:42