Não é possível atualizar o servidor Ubuntu devido a dependências não atendidas

1

Quando estou tentando instalar a atualização do sistema no meu Ubuntu Server 13.04 AMD64, ele retorna a seguinte mensagem:

Agora atualizando o apparmor ..

Installing package(s) with command apt-get -y install apparmor ..

dpkg: dependency problems prevent configuration of linux-server:
 linux-server depends on linux-image-server (= 3.2.0.44.53); however:
  Version of linux-image-server on system is 3.2.0.53.63.
 linux-server depends on linux-headers-server (= 3.2.0.44.53); however:
  Version of linux-headers-server on system is 3.2.0.53.63.
dpkg: error processing linux-server (--configure):
 dependency problems - leaving unconfigured
Errors were encountered while processing:
 linux-server
Reading package lists...
Building dependency tree...
Reading state information...
You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
 linux-server : Depends: linux-image-server (= 3.2.0.44.53) but 3.2.0.53.63 is to be installed
                Depends: linux-headers-server (= 3.2.0.44.53) but 3.2.0.53.63 is to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

.. install failed!

Eu tentei todas as coisas comuns listadas no artigo abaixo, mas ainda dá a mesma mensagem. Como resolvo dependências não satisfeitas depois de adicionar um PPA?

Olá, aqui está a saída desse comando:

sudo apt-get check
Reading package lists...
Building dependency tree...
Reading state information...
You might want to run 'apt-get -f install' to correct these.
The following packages have unmet dependencies:
 linux-server : Depends: linux-image-server (= 3.2.0.44.53) but 3.2.0.53.63 is installed
                Depends: linux-headers-server (= 3.2.0.44.53) but 3.2.0.53.63 is installed
E: Unmet dependencies. Try using -f.


> sudo apt-get -qq update && apt-cache policy linux-server
linux-server:
  Installed: 3.2.0.44.53
  Candidate: 3.2.0.53.63
  Version table:
     3.2.0.53.63 0
        500 http://no.archive.ubuntu.com/ubuntu/ precise-updates/main amd64 Packages
        500 http://security.ubuntu.com/ubuntu/ precise-security/main amd64 Packages
 *** 3.2.0.44.53 0
        100 /var/lib/dpkg/status
     3.2.0.23.25 0
        500 http://no.archive.ubuntu.com/ubuntu/ precise/main amd64 Packages

rgds E Andersen

    
por Espen Andersen 15.09.2013 / 21:25

2 respostas

0

Parece que os meta-pacotes têm alguns problemas de dependência, removê-lo e instalá-lo novamente, depois atualizar seu sistema como de costume:

sudo apt-get update
sudo apt-get remove linux-server
sudo apt-get install linux-server
sudo apt-get upgrade
    
por Braiam 16.09.2013 / 20:34
0

Eu tive o mesmo problema. O seguinte funcionou para mim:

    sudo apt-get update
    sudo apt-get remove linux-headers-server linux-image-server linux-server
    sudo apt-get install linux-headers-server linux-image-server linux-server
    sudo apt-get upgrade
    
por cjackson 15.12.2013 / 07:49