Problemas ao atualizar e reinstalar o VLC no Ubuntu 11.10

3

Não consigo consertar ou atualizar, atualizo o VLC; Isto é o que eu recebo ao tentar instalar, eu tinha VLC antes, mas não estava funcionando corretamente, então eu desinstalei; tentei instalá-lo novamente para ter as propriedades completas. Então, agora eu não posso instalar como recebo esta mensagem, eu tentei de tudo e verifiquei com seu site para informações adicionais; alguma sugestão para alguém que é novo para o Ubuntu e Linux completamente?

# Package dependencies cannot be resolved
# This error could be caused by required additional software packages which are  missing or not installable. 
# Furthermore there could be a conflict between software packages which are not allowed to be installed at the same time

# The following packages have unmet dependencies:

vlc:  
Depends: vlc-nox (= 1.1.12-2~oneiric1) but 2.1.0~~git20121022+r2158-0~r88~oneiric1 is to be installed  
Depends: libaa1 (>= 1.4p5) but 1.4p5-38build1 is to be installed  
Depends: libavcodec-extra-53 (>= 4:0.7-1) but 4:0.7.6ubuntu0.11.10.1+medibuntu1 is to be installed  
Depends: libavutil-extra-51 (>= 4:0.7-1) but 4:0.7.6ubuntu0.11.10.1+medibuntu1 is to be installed  
Depends: libc6 (>= 2.8) but 2.13-20ubuntu5.3 is to be installed  
Depends: libfreetype6 (>= 2.2.1) but 2.4.4-2ubuntu1.2 is to be installed  
Depends: libgcc1 (>= 1:4.1.1) but 1:4.6.1-9ubuntu3 is to be installed  
Depends: libqtcore4 (>= 4:4.7.0~beta1) but 4:4.7.4-0ubuntu8.2 is to be installed  
Depends: libqtgui4 (>= 4:4.5.3) but 4:4.7.4-0ubuntu8.2 is to be installed  
Depends: libsdl-image1.2 (>= 1.2.10) but 1.2.10-2.1 is to be installed  
Depends: libsdl1.2debian (>= 1.2.10-1) but 1.2.14-6.1ubuntu4 is to be installed  
Depends: libstdc++6 (>= 4.6) but 4.6.1-9ubuntu3 is to be installed  
Depends: libxcb-xv0 (>= 1.2) but 1.7-3 is to be installed  
Depends: zlib1g (>= 1:1.2.3.3.dfsg) but 1:1.2.3.4.dfsg-3ubuntu3 is to be installed'
    
por irma claeys 22.10.2013 / 01:16

1 resposta

2

Eu tive isso acontecer comigo também. Você terá que abrir um terminal. A primeira coisa é verificar se há dependências quebradas:

sudo apt-get install -f

Se isso não funcionar, eu limparia a vlc e reinstalaria:

sudo apt-get purge vlc*
sudo aptitude purge $(dpkg -l|grep ^rc|awk '{ print $2 }')
sudo apt-get update
sudo apt-get autoremove
sudo apt-get install vlc

Não tenho certeza se isso funcionará, mas informe-nos e posso ajustar, dependendo de seus resultados.

    
por philshem 09.12.2012 / 02:22