quando eu tento instalar qualquer coisa no Ubuntu 12.04 eu recebo este erro

1

sudo apt-get install

Reading package lists... Done
Building dependency tree       
Reading state information... Done
You might want to run 'apt-get -f install' to correct these.
The following packages have unmet dependencies: libjson0 : Breaks: libjson0:i386 (!= 0.10-1.2ubuntu2) but 0.9-1ubuntu1 is installed libjson0:i386 : Breaks: libjson0 (!= 0.9-1ubuntu1) but 0.10-1.2ubuntu2 is installed
teamviewer : Depends: lib32asound2 but it is not installed
          Depends: lib32z1 but it is not installed
E: Unmet dependencies. Try using -f.

Alguém pode me ajudar com isso

    
por user238169 21.01.2014 / 07:24

2 respostas

2

Você precisa remover os pacotes específicos de libjson0 , libjson0:i386 forçadamente sem remover suas dependências,

sudo dpkg --purge --force-all --force-remove-reinstreq libjson0 libjson0:i386
sudo apt-get -f install
    
por Avinash Raj 21.01.2014 / 08:13
0

senhor ... você deve digitar esses comandos

apt-get -f install

se isso não funcionar, tente fazer isso

sudo apt-get clean
sudo apt-get remove libjson0:i386
sudo apt-get install libjson0
sudo apt-get install lib32asound2
sudo apt-get install lib32z1

se o comando sudo apt-get remove libjson0:i386 não funcionar vá para o próximo ou instalá-lo com o gerenciador de pacotes synapatic

  

* pesquisar em traço    aqui

    
por sasuki131 21.01.2014 / 07:43