O media player VLC não instala

1

Depois de digitar sudo apt install vlc no terminal, é isso que recebo:

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: libgles1-mesa (>= 7.8.1) but it is not going to be installed or
                libgles1
       Depends: libgles2-mesa (>= 7.8.1) but it is not going to be installed or
                libgles2
E: Unable to correct problems, you have held broken packages.
    
por J. Kallen 18.02.2018 / 13:38

2 respostas

0
sudo apt update
sudo dpkg --configure -a
sudo apt install -f
sudo apt install vlc

Mas se você quiser a versão mais recente do vlc (Atualmente VLC 3.0), instale a partir do snap.

sudo snap install vlc
    
por Sanjay Prajapat 18.02.2018 / 14:39
0

Basta instalá-lo no Ubuntu Software Center

Depois de tentar

sudo apt-get update –fix-missing

e

sudo dpkg –configure -a

e

sudo apt-get install -f

o problema de um pacote quebrado ainda existe, a solução é editar o arquivo de status do dpkg manualmente.

$ sudo nano /var/lib/dpkg/status    

(você pode usar o vim ou o gedit em vez do nano) Localize o pacote corrompido e remova todo o bloco de informações sobre ele e salve o arquivo.

Informações obtidas de iasptk.com

    
por TheOneAboveAll 18.02.2018 / 14:03