无法再安装或删除任何内容

无法再安装或删除任何内容

我正在学习有关如何在 Ubuntu 上安装 Vulkan 的教程,链接这里,但在此过程中,我不知怎么搞乱了 initramfs-tools。每次我尝试通过.deb文件或使用aptapt-get命令删除或安装任何东西时,都会出现以下错误:

Setting up initramfs-tools (0.130ubuntu3.9) ...
update-initramfs: deferring update (trigger activated)
Processing triggers for initramfs-tools (0.130ubuntu3.9) ...
update-initramfs: Generating /boot/initrd.img-5.3.0-40-generic
I: The initramfs will attempt to resume from /dev/sdc3
I: (UUID=444ddd94-292f-4da1-880e-ad84b5cfe089)
I: Set the RESUME variable to override this.
E: /usr/share/initramfs-tools/hooks/vdfuse failed with return 1.
update-initramfs: failed for /boot/initrd.img-5.3.0-40-generic with 1.
dpkg: error processing package initramfs-tools (--configure):
 installed initramfs-tools package post-installation script subprocess returned error exit status 1
Errors were encountered while processing:
 initramfs-tools
E: Sub-process /usr/bin/dpkg returned an error code (1)

答案1

急救。

sudo mv /usr/share/initramfs-tools/hooks/vdfuse $HOME

将文件移动到 $HOME 然后运行

sudo dpkg --configure -a && sudo apt -f install

识别包

dpkg -S /usr/share/initramfs-tools/hooks/vdfuse

仅当使用 apt 或 dpkg 安装软件包时,此方法才有效。如果是,请使用以下命令将其删除

sudo dpkg -P packagename

相关内容