web-dev-qa-db-fra.com

Erreur lors de l'installation de VLC dans Ubuntu 16.04

Je reçois un message d'erreur en essayant d'installer 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).

Sortie de 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)

Quelqu'un peut-il s'il vous plaît m'aider à corriger cette erreur et installer vlc

1
Bala Viknesh

Même problème que ici Essayer de résoudre les problèmes de PPA avec libvlccore9 rendant la gestion des paquets inutilisable

IDK si c'est casher mais cela a résolu ça pour moi:

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

Bien sûr, parce que vous utilisez 16.04, vous devez faire ceci:

Sudo dpkg -i --force-overwrite /var/cache/apt/archives/libvlccore9_3.0.0~rc1~~git20171214+r73255+108~ubuntu16.04.1_AMD64.deb
3
multi-flexi

supprimer la construction quotidienne 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

et réinstallez la version officielle stable:

Sudo apt-get -f install
0
Fred M