我在尝试安装任何东西时反复收到有关 adobe-flashplugin 依赖项未满足的错误

我在尝试安装任何东西时反复收到有关 adobe-flashplugin 依赖项未满足的错误

每当我尝试安装任何东西时,我都会反复收到以下错误,然后安装停止。此外,我还收到错误,我必须修复 Ubuntu 软件中心,但由于同样的错误,我无法修复。

例如,当我运行以下命令时:

sudo apt-get install unity-tweak-tool

我收到此错误:

Reading package lists... Done
You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
  adobe-flash-properties-gtk:
        Depends: adobe-flashplugin (= 1:20160310.1-0ubuntu 0.12.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)

答案1

我已经遇到过类似的问题,我认为在大多数情况下你唯一要做的就是

sudo dpkg --configure -a

进而

sudo apt-get install -f

如果这没有帮助,您应该编辑文件 /var/lib/dpkg/status 并删除损坏的软件包。然后重复前两个命令,这样应该可以解决问题。

答案2

尝试启动 aptitude

sudo aptitude

aptitude 还应该确定问题,并经常提出解决方案,只需按“!”键即可应用。请查看 aptitude 的底行。红色背景行中应该有一些提示。

通常的解决方案是删除未完整安装的软件包。

相关内容