Como executar o 'apt-get install' para instalar todas as dependências? [duplicado]

30

Estou executando isso na instalação do servidor Ubuntu:

sudo apt-get install git-core gnupg flex bison gperf build-essential \
  zip curl libc6-dev libncurses5-dev:i386 x11proto-core-dev \
  libx11-dev:i386 libreadline6-dev:i386 libgl1-mesa-glx:i386 \
  libgl1-mesa-dev g++-multilib mingw32 openjdk-6-jdk tofrodos \
  python-markdown libxml2-utils xsltproc zlib1g-dev:i386

mas estou recebendo isso:

Reading package lists...
Building dependency tree...
Reading state information...
curl is already the newest version.
gnupg is already the newest version.
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: 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
 g++-multilib : Depends: cpp (>= 4:4.7.2-1ubuntu2) but it is not going to be installed
                Depends: gcc-multilib (>= 4:4.7.2-1ubuntu2) but it is not going to be installed
                Depends: g++ (>= 4:4.7.2-1ubuntu2) but it is not going to be installed
                Depends: g++-4.7-multilib (>= 4.7.2-1~) but it is not going to be installed

Como posso corrigir isso?

    
por michael 08.11.2012 / 22:30

3 respostas

40

sudo apt-get install -f

Isso instalaria quaisquer dependências perdidas em suas instalações anteriores. Acabei de corrigir meu teamviewer e instalações VNC.

    
por user148057 09.04.2013 / 18:49
24

Experimente sudo apt-get build-dep build-essential

    
por wwwslinger 08.11.2012 / 23:53
1

Você já correu: %código% antes?

    
por Robert Vila 08.11.2012 / 22:42

Tags