几乎我试图通过包管理器安装的任何东西都会得到以下内容:
root@opsview-appliance:/etc/apt/sources.list.d# apt-get install make
Reading package lists... Done
Building dependency tree
Reading state information... Done
make is already the newest version.
You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies.
linux-image-virtual : Depends: linux-image-3.13.0-106-generic but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).即使在使用-f时,它也是如此:
root@opsview-appliance:/etc/apt/sources.list.d# apt-get -f install make
Reading package lists... Done
Building dependency tree
Reading state information... Done
make is already the newest version.
You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies.
linux-image-virtual : Depends: linux-image-3.13.0-106-generic but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).发布于 2017-05-16 12:51:09
信不信由你,这就是解决问题的原因:
apt-get install linux-image-3.13.0-106-generic我应该提到,我还必须扩展/boot分区,因为它不允许我在没有它的情况下安装任何东西。
https://askubuntu.com/questions/915714
复制相似问题