问题来了

问题来了
$ apt-get -f install vlc
Reading package lists... Done
Building dependency tree       
Reading state information... Done
You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
 google-chrome-stable : Depends: libappindicator1 but it is not going to be installed
 heirloom-mailx : Depends: libkrb53 (>= 1.6.dfsg.2) but it is not installable
                  Depends: libssl0.9.8 (>= 0.9.8f-5) but it is not installable
 qbittorrent : Depends: libboost-system1.49.0 (>= 1.49.0-1) but it is not installable
               Depends: libtorrent-rasterbar7 (>= 0.16.18) but it is not installable
 tor-geoipdb : Depends: tor (>= 0.2.9.9-1) but it is not going to be installed
 vlc : Depends: vlc-bin (= 2.2.4-13) but it is not going to be installed
       Depends: vlc-plugin-base (= 2.2.4-13) but it is not going to be installed
       Depends: vlc-plugin-qt (= 2.2.4-13) but it is not going to be installed
       Depends: vlc-plugin-video-output (= 2.2.4-13) but it is not going to be installed
       Depends: vlc-l10n (= 2.2.4-13) but it is not going to be installed
       Recommends: vlc-plugin-notify (= 2.2.4-13) but it is not going to be installed
       Recommends: vlc-plugin-samba (= 2.2.4-13) but it is not going to be installed
       Recommends: vlc-plugin-skins2 (= 2.2.4-13) but it is not going to be installed
       Recommends: vlc-plugin-video-splitter (= 2.2.4-13) but it is not going to be installed
       Recommends: vlc-plugin-visualization (= 2.2.4-13) but it is not going to be installed
 xdman : Depends: openjdk-6-jre but it is not installable or
                  openjdk-7-jre but it is not installable
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

在此处输入图片描述

答案1

删除软件包:

  • google-chrome-稳定版
  • 传家宝-mailx
  • qbittorrent
  • tor-geoipdb

我不确定你是否可以删除西德曼或不。但如果它没有造成任何严重损害,那么你可以将其移除。

sudo apt-get remove google-chrome-stable heirloom-mailx qbittorrent tor-geoipdb 

然后尝试在更新后安装 vlc

sudo apt-get update
sudo apt-get install vlc

然后您可以再次安装上面未安装的软件包:

sudo apt-get install google-chrome-stable heirloom-mailx qbittorrent tor-geoipdb  -y

如果没有什么效果,就尝试一下。

相关内容