Como corrijo um sistema de pacotes quebrado?

4

Eu tenho o seguinte problema:

The package system is broken

Check if you are using third party repositories. If so disable them, since they are a common source of problems.
Furthermore run the following command in a Terminal: apt-get install -f

The following packages have unmet dependencies:

chromium-browser-l10n: Depends: chromium-browser (= 20.0.1132.47~r144678-0ubuntu0.12.04.1) but 18.0.1025.168~r134367-0ubuntu0.12.04.1 is installed"

Alguma sugestão?

    
por Perry 21.09.2012 / 16:13

1 resposta

6

tente remover a versão antiga do cromo e o pacote de idiomas e atualize o cache do repositório e reinstale-os

sudo apt-get remove chromium-browser
sudo apt-get remove chromium-browser-l10n
sudo apt-get update
sudo apt-get install chromium-browser
sudo apt-get install chromium-browser-l10n
    
por user91632 21.09.2012 / 16:18