Pacotes quebrados / Dependências não atendidas [duplicado]

1

Eu tenho um problema. Desde que eu atualizei meu Ubuntu 12.04 para 13.04, eu recebi muitos erros, não consigo instalar nenhum programa porque ele me mostra uma mensagem que diz (para este exemplo eu tentarei instalar o Synaptic):

>alexis@McLovin:~$ sudo apt-get install synaptic
>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:
> synaptic : Depends: libept1.4.12 (>= 1.0.9) but it is not installable
>            Recommends: rarian-compat but it is not installable
>E: Unable to correct problems, you have held broken packages.

Sou novo no Ubuntu, espero que não seja uma pergunta idiota. Obrigado (Inglês não é minha língua nativa).

    
por Alexis Duarte Peña 11.06.2013 / 08:39

2 respostas

0

Tente executar estes comandos:

sudo dpkg --configure -a
sudo apt-get install -f
sudo apt-get update
sudo apt-get upgrade
sudo apt-get dist-upgrade

Ou o one-liner:

sudo sh -c "dpkg --configure -a && apt-get install -f && apt-get update && apt-get upgrade && apt-get dist-upgrade"
    
por daboross 11.06.2013 / 08:56
0

apenas uma linha funcionou para mim ..

sudo apt-get install -f 

também .. eu continuo fazendo o seguinte sem nenhum motivo .. eles podem ter sido um fator na solução

sudo apt-get update
sudo apt-get upgrade

ps: o "install -f" removeu o skype do meu sistema

    
por Vivek P. 11.06.2013 / 14:27