无法下载任何内容

无法下载任何内容

我目前使用的是 ubuntu 14.04,我正在尝试下载 steam 启动器,但是当我尝试时,屏幕上显示。

"The package system is broken
 Check if you are using third party repositories. If so disable them, since they are a common source of problems.
Furthermore run the following command in a Terminal: apt-get install -f" 

当我打开详细信息时,它显示。

"The following packages have unmet dependencies:

linux-image-extra-3.13.0-73-generic: Depends: linux-image-3.13.0-73-generic but it is not installed
linux-image-generic: Depends: linux-image-3.13.0-73-generic but it is not installed"

请帮忙谢谢。

Filesystem                          Size  Used Avail Use% Mounted on
udev                                914M  4.0K  914M   1% /dev
tmpfs                               185M  940K  184M   1% /run
/dev/mapper/ubuntu--kylin--vg-root  292G   43G  235G  16% /
none                                4.0K     0  4.0K   0% /sys/fs/cgroup
none                                5.0M     0  5.0M   0% /run/lock
none                                924M  184K  924M   1% /run/shm
none                                100M   44K  100M   1% /run/user
/dev/sda1                           236M  236M     0 100% /boot
izzy-22@Randys-PC:~$ 

答案1

看起来您的问题是某些软件包依赖于其他软件包,这导致apt卡住了。我会说打开终端并运行sudo apt install linux-image-3.13.0.73-generic,因为该软件包未安装,似乎是导致问题的原因。只需安装该软件包,然后报告它是否有效。它应该解决该依赖性错误。

现在查看问题中的编辑,你的 /boot 已满,因此尝试运行,

sudo apt-get autoremove

删除存储在那里的旧内核和 initrd。然后运行

sudo apt-get install linux-image-3.13.0.73-generic

这应该可以解决依赖问题

相关内容