Erro na instalação da vlc, dependência

1

Atualizei recentemente o Ubuntu 14.04 do atualizador de software. Após a atualização, alguns pacotes foram removidos. Depois disso, descobri que o vlc também foi removido do meu sistema. Então eu tentei instalar o vlc e está dando um erro como este:

mzsbulbul@bulbul-laptop:~$ sudo apt-get install vlc
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.1-3~ubuntu14.04.1~c42.ppa1) but it is not going to be installed
       Depends: libstdc++6 (>= 4.9) but 4.8.4-2ubuntu1~14.04.1 is to be installed
       Recommends: vlc-plugin-notify (= 2.2.1-3~ubuntu14.04.1~c42.ppa1) but it is not going to be installed
       Recommends: vlc-plugin-samba (= 2.2.1-3~ubuntu14.04.1~c42.ppa1) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

Eu também tentei sudo apt-get -f install & sudo aptitude install vlc , mas não resolvi.

    
por mzsbulbul 08.03.2016 / 12:36

1 resposta

1

Adicione o universo do repositório:

sudo apt-add-repository universe

pacote de atualização:

sudo apt-get update

instale vlc :

sudo apt-get install vlc browser-plugin-vlc

Mais explicado pelo link

# sudo apt-get update
# sudo apt-get install vlc vlc-plugin-pulse mozilla-plugin-vlc
    
por GAD3R 08.03.2016 / 13:11