Problema de instalação do VLC (Instalando através do Terminal)

6

Eu queria instalar o VLC no Ubuntu, ele não estava funcionando, sistema atualizado, do que o atualizado, mas ainda não está funcionando.

Eu usei o centro do Ubuntu Software e o Terminal para isso.

No terminal eu digitei o comando sudo apt-get install vlc

A mensagem de erro que o terminal me fornece é a seguinte.

arif@arifpc:~$ sudo apt-get install vlc
[sudo] password for arif: 
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.2.0~rc1-1ppa2~trusty) but it is not going to be installed
       Depends: libavcodec56 (>= 7:2.4~) but it is not going to be installed
       Depends: libgles1-mesa (>= 7.8.1) but it is not installable or
                libgles1 but it is not installable
       Depends: libsdl-image1.2 (>= 1.2.10) but it is not installable
       Depends: libsdl1.2debian (>= 1.2.11) but it is not installable
       Depends: libva-drm1 but it is not installable
       Depends: libva-x11-1 (> 1.3.0~) but it is not installable
       Depends: libva1 (> 1.3.0~) but it is not installable
       Depends: libvlccore8 (>= 2.2.0~pre1) but it is not going to be installed
       Depends: libxcb-composite0 but it is not installable
       Depends: libxcb-xv0 (>= 1.2) but it is not installable
       Recommends: vlc-plugin-notify (= 2.2.0~rc1-1ppa2~trusty) but it is not going to be installed
       Recommends: vlc-plugin-samba (= 2.2.0~rc1-1ppa2~trusty) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

Nota: estou usando o Ubuntu 14.04 LTS

    
por Bangash 19.11.2014 / 08:18

3 respostas

0

Na verdade eu resolvi esse problema no mesmo dia, o problema foi com o arquivo archive.ubuntu.com mais próximo (Ubuntu Archive Server) Eu mudei todas as suas instâncias (13 ocorrências no meu caso) para us.archive.ubuntu.com e funcionou. O arquivo de configuração onde eu mudei essa configuração foi /etc/apt/sources.list.

Editar : Recentemente eu encontrei outra pergunta no askubuntu, a resposta aceita para esta pergunta também é uma boa solução para este problema se você não quer mudar o endereço do arquivo archive.ubuntu.
Aqui está essa pergunta.

    
por Bangash 07.12.2014 / 09:38
6

Isso aconteceu comigo após a atualização do Ubuntu 14.04 para 14.10.

Eu encontrei esta Solução que me ajudou.

Você precisa adicionar o X cookies Xorg-edgers Fresh Repository com este código no terminal:

sudo add-apt-repository ppa:xorg-edgers/ppa 
apt-cache policy libgl1-mesa-glx libglapi-mesa

Em seguida, reinicie o seu PC. Em seguida, atualize os repositórios com os seguintes comandos e instale o VLC:

sudo apt-get update
sudo apt-get install vlc
    
por Aby 03.12.2014 / 21:05
0

Execute os seguintes comandos

sudo apt-get -f install

sudo dpkg --configure -a

Isso deve instalar todas as dependências ausentes e configurar o dpkg.

    
por Rohith Madhavan 19.11.2014 / 08:59