Problema ao instalar o vlc player

2

Não consigo instalar o vlc player no meu Ubuntu (14.04). Eu li this e tente executar os comandos, mas enquanto executo este comando:

sudo apt-get install vlc

Eu tenho algo assim:

    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:
 vlc : Depends: vlc-nox (= 2.1.4+git20150226+r54594+19+11~ubuntu14.04.1) but 2.1.6-0ubuntu14.04.1 is to be installed
       Recommends: vlc-plugin-notify (= 2.1.4+git20150226+r54594+19+11~ubuntu14.04.1) but 2.1.6-0ubuntu14.04.1 is to be installed
       Recommends: vlc-plugin-pulse (= 2.1.4+git20150226+r54594+19+11~ubuntu14.04.1) but 2.1.6-0ubuntu14.04.1 is to be installed
E: Unable to correct problems, you have held broken packages.

Qual é o problema? Você tem alguma idéia para resolver isso ou você poderia por favor me dizer o procedimento correto pelo qual eu posso instalar o media player vlc?

Atualização:

Após remover o PPA, esta é a saída de apt-cache policy vlc :

vlc: 
  Installed:  (none) 
  Candidate:  2.1.2-2build2 
    Version table: 
      2.1.6-0ubuntu14.04.1 0 
        100 /var/lib/dpkg/status 
      2.1.2-2build2 0 
        500 archive.ubuntu.com/ubuntu trusty/universe i386 Packages 
      2.0.1-4 0 
        500 archive.ubuntu.com/ubuntu precise/universe i386 Packages

E o comando:

apt-cache policy vlc-nox vlc-plugin-notify vlc-plugin-pulse

me dá os seguintes resultados:

vlc-nox:
  Installed: 2.1.6-0ubuntu14.04.1
  Candidate: 2.1.6-0ubuntu14.04.1
  Version table:
 *** 2.1.6-0ubuntu14.04.1 0
        100 /var/lib/dpkg/status
     2.1.2-2build2 0
        500 http://archive.ubuntu.com/ubuntu/ trusty/universe i386 Packages
     2.0.1-4 0
        500 http://archive.ubuntu.com/ubuntu/ precise/universe i386 Packages
vlc-plugin-notify:
  Installed: 2.1.6-0ubuntu14.04.1
  Candidate: 2.1.6-0ubuntu14.04.1
  Version table:
 *** 2.1.6-0ubuntu14.04.1 0
        100 /var/lib/dpkg/status
     2.1.2-2build2 0
        500 http://archive.ubuntu.com/ubuntu/ trusty/universe i386 Packages
     2.0.1-4 0
        500 http://archive.ubuntu.com/ubuntu/ precise/universe i386 Packages
vlc-plugin-pulse:
  Installed: 2.1.6-0ubuntu14.04.1
  Candidate: 2.1.6-0ubuntu14.04.1
  Version table:
 *** 2.1.6-0ubuntu14.04.1 0
        100 /var/lib/dpkg/status
     2.1.2-2build2 0
        500 http://archive.ubuntu.com/ubuntu/ trusty/universe i386 Packages
     2.0.1-4 0
        500 http://archive.ubuntu.com/ubuntu/ precise/universe i386 Packages
    
por Shikhor Roy 20.11.2015 / 12:19

1 resposta

2

Não use o PPA, instale vlc dos repositórios do Ubuntu.

  1. Remova o PPA que você instalou:

    sudo add-apt-repository --remove ppa:videolan/stable-daily
    
  2. Esvazie o cache do pacote:

    sudo apt-get clean
    
  3. Atualize suas listas de pacotes:

    sudo apt-get update
    
  4. Faça o downgrade / instale todos os pacotes vlc para / na versão do repositório:

    sudo apt-get install --reinstall vlc=2.1.2-2build2 vlc-data=2.1.2-2build2 vlc-nox=2.1.2-2build2 vlc-plugin-notify=2.1.2-2build2 vlc-plugin-pulse=2.1.2-2build2
    

Dependendo da sua versão do Ubuntu, você pode atualmente (20 de novembro de 2015) obter uma versão do VLC até 2.2.1-3 no Wily (15.10). Versões mais antigas do Ubuntu podem ter versões antigas do VLC em seus repositórios.

Você verifica as versões disponíveis para você com o comando:

apt-cache policy vlc

Um exemplo de saída no meu sistema de 16,10 64 bits seria:

vlc:
  Installed: (none)
  Candidate: 2.2.1-3
  Version table:
     2.2.1-3 0
        500 http://[YOUR REPOSITORY SERVER URL]/ wily/universe amd64 Packages
    
por Byte Commander 20.11.2015 / 12:44