Linux apt-get update Eu recebo “erro de dependência não atendido” Ubuntu 16.04

0

Por que não consigo instalar alguns pacotes no meu Ubuntu 16.04

Se eu tentar: sudo apt-get install update i:

The following packages have unmet dependencies:
linux-image-extra-4.4.0-64-generic : Depends: linux-image-4.4.0-64-generic but it is not going to be installed
linux-image-generic : Depends: linux-image-4.4.0-64-generic but it is not going to be installed
                   Recommends: thermald but it is not going to be installed
y-ppa-manager : Depends: yad (>= 0.36.0) but it is not going to be installed
             Depends: libnotify-bin but it is not going to be installed
             Depends: ppa-purge but it is not going to be installed
             Depends: xterm
             Depends: launchpad-getkeys (>= 0.3.2) but it is not going to be installed
             Depends: python-appindicator but it is not going to be installed
             Depends: python-gtk2 but it is not going to be installed
             Depends: xclip but it is not going to be installed
             Recommends: gksu but it is not going to be installed or
                         kdesudo but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

Eu também tentei: sudo add-apt-repository ppa:webupd8team/y-ppa-manager

Mas não adianta.

Por favor, sugira.

    
por Sushivam 23.02.2017 / 12:59

1 resposta

0

O mais básico para resolver problemas de dependências é executar:

sudo apt-get -f install

O -f significa "conserto quebrado". O Apt tentará corrigir dependências quebradas. Se você instalou manualmente um pacote que tinha dependências não atendidas, o apt-get instalará essas dependências, se possível, caso contrário, pode simplesmente remover o pacote que você instalou para resolver o problema.

Vá em frente e corra:

sudo dpkg --configure -a

Em seguida, execute novamente:

sudo apt-get -f install

Se você ainda receber o mesmo erro, remova e adicione o repositório que acabou de adicionar. Deixe-me saber como é isso.

    
por Sherlock Smith 23.02.2017 / 13:06