重新安装 Ubuntu 18.04 时出现问题(而且无法修复损坏的软件包)

重新安装 Ubuntu 18.04 时出现问题(而且无法修复损坏的软件包)

我有两个主要问题:

当我打开 Synaptic 时,它说包linux-image-5.3.0-26-generic已损坏。我尝试使用按钮修复它修复损坏的软件包并将其删除。但它给了我以下信息:

E: linux-image-5.3.0-26-generic: installed linux-image-5.3.0-26-generic package pre-removal script subprocess returned error exit status 1``

我尝试了其他答案中看到的一些控制台命令,但它们不起作用:

$ sudo apt install -f 
E: Could not get lock /var/lib/dpkg/lock-frontend - open (11: Resource temporarily unavailable)
E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), is another process using it?
$ sudo apt-get autoremove 
E: Could not get lock /var/lib/dpkg/lock-frontend - open (11: Resource temporarily unavailable)
E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), is another process using it?

之后我决定重新安装 Ubuntu。但是当我双击或右键单击->打开时,桌面图标似乎不起作用。因此我无法打开 Ubuntu LiveUSB。

重点是:

该破损的软件包不允许我安装或卸载任何东西,并且由于我无法打开桌面图标,我真的不知道该怎么办。

我尝试了所有指南但尚未成功。

抱歉造成混淆,但我对 Linux 完全是新手。

我将非常感激您的帮助。

答案1

通过命令输出确保您已经安装了其他内核:

cat /boot/grub/grub.cfg | grep '/boot/vmlinuz-'
dpkg --list | grep linux-image | grep ii
ls /boot | grep vmlinuz

还请检查当前正在运行的内核:

uname -a

如果有一个内核可以与损坏的包内核一起启动,您可以尝试以下命令:

sudo apt purge linux-*5.3.0-26-*

相关内容