Dependências não satisfeitas usando o apt-get no Ubuntu

1

Estou trabalhando em uma máquina Ubuntu 12.04.2 LTS (GNU/Linux 3.5.0-43-generic x86_64) . É um servidor rodando em ambiente de produção com outros projetos então tenho que ter bastante cuidado.

Eu tenho que instalar uma certa lista de programas, então primeiro eu corro o usual apt-get update e então eu procuro o seguinte comando:

apt-get install python-dev libxslt1-dev libpq-dev git python-pip nginx supervisor wget libxml2-dev mongodb build-essential libxslt1-dev libxrender1 libxext6'

Isso é o que eu recebo:

root@SERVERLINUX:~# apt-get install python-dev libxslt1-dev libpq-dev git python-pip nginx supervisor wget libxml2-dev mongodb build-essential libxslt1-dev libxrender1 libxext6
Reading package lists... Done
Building dependency tree       
Reading state information... Done
git is already the newest version.
python-pip is already the newest version.
build-essential is already the newest version.
libxext6 is already the newest version.
libxrender1 is already the newest version.
libxrender1 set to manually installed.
python-dev is already the newest version.
You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
 libpq-dev : Depends: libpq5 (= 9.1.14-0ubuntu0.12.04) but 9.1.9-0ubuntu12.04 is to be installed
             Depends: libkrb5-dev but it is not going to be installed
             Depends: comerr-dev but it is not going to be installed
 libxml2-dev : Depends: libxml2 (= 2.7.8.dfsg-5.1ubuntu4.9) but 2.7.8.dfsg-5.1ubuntu4.6 is to be installed
 linux-image-generic-lts-quantal : Depends: linux-image-3.5.0-44-generic but it is not going to be installed
 mongodb : Depends: mongodb-server but it is not going to be installed
           Depends: mongodb-dev but it is not going to be installed
 nginx : Depends: nginx-full but it is not going to be installed or
                  nginx-light but it is not going to be installed
 supervisor : Depends: python-medusa (>= 0.5.4) but it is not going to be installed
              Depends: python-meld3 but it is not going to be installed
              Depends: python-support (>= 0.90.0) but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

O que devo fazer para conseguir instalar os pacotes com "dependências não atendidas"? Como posso atender essas dependências? Eu tenho medo de usar a opção -f como sugerido, porque isso pode estragar tudo.

Por favor, tenha paciência comigo, só quero ser mais cauteloso antes de correr qualquer risco neste servidor.

    
por Xar 06.09.2014 / 22:14

2 respostas

1

Após a falha na instalação, você pode usar:

apt-get -f install

Isso instalará automaticamente os pacotes solicitados junto com todas as dependências,

    
por 06.09.2014 / 22:21
1

Você pode tentar encontrar uma versão mais antiga desses pacotes e instalá-lo manualmente por dpkg -i packagename para diminuir a lista de dependências e, provavelmente, diminuir o potencial segmento para o seu sistema.

    
por 28.07.2015 / 14:45