linux-tools-common 未满足的依赖关系

linux-tools-common 未满足的依赖关系

当我尝试安装(随机)包时出现以下错误。

The following packages have unmet dependencies:
linux-tools-3.2.0-24 : Depends: linux-tools-common but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

我试过 :

apt-get -f install

我收到以下错误信息:

The following extra packages will be installed:
  linux-tools-common
The following NEW packages will be installed:
  linux-tools-common
0 upgraded, 1 newly installed, 0 to remove and 36 not upgraded.
2 not fully installed or removed.
Need to get 0 B/69.3 kB of archives.
After this operation, 183 kB of additional disk space will be used.
Do you want to continue [Y/n]? Y
(Reading database ... 183468 files and directories currently installed.)
Unpacking linux-tools-common (from .../linux-tools-common_3.2.0-25.40_all.deb) ...
dpkg: error processing /var/cache/apt/archives/linux-tools-common_3.2.0-25.40_all.deb (--unpack):
 trying to overwrite '/usr/share/man/man1/perf.1.gz', which is also in package linux-base 3.4ubuntu2
Processing triggers for man-db ...
Errors were encountered while processing:
 /var/cache/apt/archives/linux-tools-common_3.2.0-25.40_all.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

下一步我应该做什么?


编辑:

https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1008713

编辑2:

我设法消除了在恢复模式下重新启动 ubuntu 的错误,然后我运行了 dpkg 修复损坏的软件包

答案1

你应该使用类似的程序格德比安装 gdebi。这可以解决您的问题,因为该程序会下载并安装未满足的软件包依赖项。

gdebi通常已安装在您的 Ubuntu 系统上。按Alt+ F2,输入gksu gdebi(或在 Kubuntu 上为kdesudo gdebi),然后按Enter

答案2

你确实没有说你是如何尝试安装的,但这是我所做的。

我只需按下键盘上的Ctrl+ Alt+即可打开终端。打开后,我运行了此命令。T

sudo apt-get install linux-tools-3.2.0-25

一切顺利,没有任何错误。我刚刚运行了几分钟前更新的 12.04。

你也可以从 USC 安装 Linux Tools

在安装之前请确保您具有正确的内核版本,因为这是特定于版本的。

尝试

sudo apt-get -f install

要修复依赖关系问题,请尝试以下命令:

  1. 更新您的 sources.list

    sudo apt-get update
    
  2. 清理事故发生时遗留的任何部分包裹。

    sudo apt-get autoclean
    
  3. 清理你的 apt-cache

    sudo apt-get clean
    

然后再次尝试安装。

相关内容