Erro ao instalar o VLC no Ubuntu 16.04 [duplicado]

1

Estou ficando abaixo do erro ao tentar instalar o VLC:

You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
libvlc5 : Depends: libvlccore9 (>= 3.0.0~rc1~~git20171214+r73255+108~ubuntu16.04.1~) but it is not going to be installed
vlc : Depends: vlc-bin (= 3.0.0~rc1~~git20171214+r73255+108~ubuntu16.04.1) but it is not going to be installed
      Depends: vlc-l10n (= 3.0.0~rc1~~git20171214+r73255+108~ubuntu16.04.1) but it is not going to be installed
      Depends: vlc-plugin-base (= 3.0.0~rc1~~git20171214+r73255+108~ubuntu16.04.1) but it is not going to be installed
      Depends: vlc-plugin-qt (= 3.0.0~rc1~~git20171214+r73255+108~ubuntu16.04.1) but it is not going to be installed
      Depends: vlc-plugin-video-output (= 3.0.0~rc1~~git20171214+r73255+108~ubuntu16.04.1) but it is not going to be installed
      Recommends: vlc-plugin-notify (= 3.0.0~rc1~~git20171214+r73255+108~ubuntu16.04.1) but it is not going to be installed
      Recommends: vlc-plugin-samba (= 3.0.0~rc1~~git20171214+r73255+108~ubuntu16.04.1) but it is not going to be installed
      Recommends: vlc-plugin-skins2 (= 3.0.0~rc1~~git20171214+r73255+108~ubuntu16.04.1) but it is not going to be installed
      Recommends: vlc-plugin-video-splitter (= 3.0.0~rc1~~git20171214+r73255+108~ubuntu16.04.1) but it is not going to be installed
      Recommends: vlc-plugin-visualization (= 3.0.0~rc1~~git20171214+r73255+108~ubuntu16.04.1) but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

Saída do apt-get -f install:

The following additional packages will be installed:
libvlccore9
The following NEW packages will be installed:
libvlccore9
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. 2 not fully installed or removed.
Need to get 0 B/472 kB of archives. After this operation, 1,247 kB of additional disk space will be used.
Do you want to continue? [Y/n] y
(Reading database ... 359521 files and directories currently installed.)
Preparing to unpack .../libvlccore9_3.0.0~rc1~~git20171214+r73255+108~ubuntu16.04.1_amd64.deb ...
Unpacking libvlccore9:amd64 (3.0.0~rc1~~git20171214+r73255+108~ubuntu16.04.1) ...
dpkg: error processing archive /var/cache/apt/archives/libvlccore9_3.0.0~rc1~~git20171214+r73255+108~ubuntu16.04.1_amd64.deb (--unpack):
trying to overwrite '/usr/lib/x86_64-linux-gnu/libvlccore.so.9.0.0', which is also in package libvlccore8:amd64_3.0.0~~git20171210+r73147+99~ubuntu16.04.1
dpkg-deb: error: subprocess paste was killed by signal (Broken pipe)
Processing triggers for libc-bin (2.23-0ubuntu9) ...
Errors were encountered while processing: /var/cache/apt/archives/libvlccore9_3.0.0~rc1~~git20171214+r73255+108~ubun tu16.04.1_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

Alguém por favor pode me ajudar a corrigir esse erro e instalar o vlc

    
por Bala Viknesh 15.12.2017 / 19:07

2 respostas

3

Mesmo problema aqui Tentando para resolver problemas de PPA com libvlccore9 que tornaram o gerenciamento de pacotes inoperável

IDK se for kosher mas isso resolveu para mim:

sudo dpkg -i --force-overwrite /var/cache/apt/archives/libvlccore9_3.0.0~rc1~~git20171215+r73271+108~ubuntu18.04.1_amd64.deb

É claro que porque você está usando o 16.04 você tem que fazer isso:

sudo dpkg -i --force-overwrite /var/cache/apt/archives/libvlccore9_3.0.0~rc1~~git20171214+r73255+108~ubuntu16.04.1_amd64.deb
    
por multi-flexi 16.12.2017 / 16:31
0

suprima a compilação diária de vlc:

rm /etc/apt/sources.list.d/videolan-ubuntu-master-daily-xenial.list.save  
rm /etc/apt/sources.list.d/videolan-ubuntu-master-daily-xenial.list

e reinstale a versão estável oficial:

sudo apt-get -f install
    
por Fred M 16.12.2017 / 11:35