Instalação do VLC media player no Ubuntu 14.04

9

Procurei muitas opções na Internet para instalar o VLC media player no Ubuntu 14.04 (Trusty Tahr), mas nada está funcionando para mim.

Como posso resolver este problema?

Erros:

root@hiteshb-To-be-filled-by-O-E-M:~# apt-get install vlc
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following extra packages will be installed:
  libavcodec54 libavformat54 libchromaprint0 libmp3lame0 libvlc5 libvlccore7
  vlc-data vlc-nox vlc-plugin-notify vlc-plugin-pulse
Suggested packages:
  libchromaprint-tools python-acoustid videolan-doc
Recommended packages:
  libdvdcss2
The following NEW packages will be installed:
  libavcodec54 libavformat54 libchromaprint0 libmp3lame0 libvlc5 libvlccore7
  vlc vlc-data vlc-nox vlc-plugin-notify vlc-plugin-pulse
0 upgraded, 11 newly installed, 0 to remove and 0 not upgraded.

E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
HDB
fonte
tentar digitar: "sudo apt-get update && sudo apt-get upgrade" antes do tipo "apt-get install vlc"
Nymeria

Respostas:

10

A partir de 2015/09/23, a versão mais recente VLC para o Ubuntu 14.04 (Trusty Tahr) fornecidos por este repositório é 2.2.1 .

Abra um terminal e execute (para 14.04):

sudo add-apt-repository ppa:mc3man/trusty-media
sudo apt-get update
sudo apt-get install vlc vlc-plugin-*

Para outras versões, veja aqui .

Ravan
fonte
Talvez você queira adicionar a versão mais recente atualmente fornecida lá?
Byte Commander
4

Para instalar o VLC media player no Ubuntu, tente abrir o seu terminal ( Ctrl+ Alt+ T) e digite:

sudo apt-get install vlc

Se houver erros, cole a saída para que as pessoas possam ajudá-lo.

Você pode tentar desativar o IPv6 na sua caixa. Às vezes, pode ser um problema. Para desativar o IPv6, adicione o seguinte ao /etc/sysctl.conf :

net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1
net.ipv6.conf.lo.disable_ipv6 = 1

Depois disso, abra seu terminal ( Ctrl+ Alt+ T) e digite:

sudo sysctl -p && sudo apt-get update && sudo apt-get install vlc
Alex Kondratiev
fonte
11
Tente fazer o seguinte: #sudo apt-get update && apt-get install --fix-missing vlc
Alex Kondratiev
Ei, Alex, eu tentei sua solução também, mas não funcionou.
HDB
Confira minha atualização, o IPv6 pode ser um problema.
Alex Kondratiev
O mesmo problema é gerado, obrigado por todos os seus esforços, mas ainda está dando o mesmo erro.
HDB
0

tente isso ...

sudo apt-get update
sudo apt-get upgrade
sudo apt-get install vlc
Itachi Sama
fonte
Eu recebi o seguinte erro "Não foi possível buscar alguns arquivos, talvez execute o apt-get update ou tente com --fix-missing?"
HDB
sudo apt-get --fix-falta é realmente uma boa escolha
Itachi Sama
Olá, eu tentei instalar a partir do ubuntu softawre center, mas ainda não consigo instalar o VLC Player. Estou recebendo um erro como Falha ao buscar o arquivo archive.ubuntu.com/ubuntu/pool/universe/l/lame/… Incompatibilidade de tamanho
HDB
Tente sudo apt-get install -f
Itachi Sama
-1

Isso funcionou para mim em 2015-1-8:

sudo add-apt-repository ppa:djcj/vlc-stable
sudo apt-get update
sudo apt-get install vlc
shuo
fonte