Dependências não atendidas instalando o vim [duplicado]

0

Backspace e teclas de seta não estão funcionando no terminal vim. Eu tentei resolver o problema usando os seguintes comandos do usuário root:

sudo apt-get update
sudo apt-get install vim

Mas estou recebendo a seguinte mensagem no terminal:

root@abhi:/home# sudo apt-get install vim
Reading package lists... Done
Building dependency tree       
Reading state information... Done
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:
 vim : Depends: vim-common (= 2:7.4.052-1ubuntu3) but 2:7.4.273-2ubuntu4 is to be installed
       Depends: vim-runtime (= 2:7.4.052-1ubuntu3) but 2:7.4.273-2ubuntu4 is to be installed
E: Unable to correct problems, you have held broken packages.
root@abhi:/home# 

Como posso resolver este problema?

    
por Abhijit Bhandarkar 22.08.2016 / 05:28

1 resposta

0

Corrigir pacotes quebrados é descrito aqui .

Em resumo, use os seguintes comandos:

sudo apt-get update –fix-missing
sudo dpkg –configure -a
sudo apt-get install -f

Se o problema de um pacote quebrado ainda existir, a solução é editar o arquivo de status do dpkg manualmente.

    
por WinEunuuchs2Unix 22.08.2016 / 05:58