Não consigo instalar nada - Os seguintes pacotes têm dependências não atendidas

0

Qualquer coisa que eu tente instalar através do gerenciador de pacotes obtém o seguinte:

root@opsview-appliance:/etc/apt/sources.list.d# apt-get install make
  Reading package lists... Done 
  Building dependency tree 
  Reading state information... Done 
  make is already the newest version. 
  You might want to run 'apt-get -f install' to correct these: 
  The following packages have unmet dependencies.  
    linux-image-virtual : Depends: linux-image-3.13.0-106-generic but it is not going to be installed 
  E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

Mesmo quando usar -f é mais do mesmo:

root@opsview-appliance:/etc/apt/sources.list.d# apt-get -f install make 
  Reading package lists... Done 
  Building dependency tree 
  Reading state information... Done 
  make is already the newest version. 
  You might want to run 'apt-get -f install' to correct these: 
  The following packages have unmet dependencies.  
    linux-image-virtual : Depends: linux-image-3.13.0-106-generic but it is not going to be installed 
  E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
    
por JustAGuy 16.05.2017 / 13:52

1 resposta

2

Acredite ou não, isso é o que resolveu o problema:

apt-get install linux-image-3.13.0-106-generic

Eu devo mencionar que eu também tive que estender a partição / boot já que ela não me permitiu instalar nada sem ela.

    
por JustAGuy 16.05.2017 / 14:51