cryptsetup:警告:无法检测到规范设备

cryptsetup:警告:无法检测到规范设备

我的 Ubuntu 18.04 Rootserver 出现问题。全新安装。我使用

apt update && apt upgrade && apt dist-upgrade 

我在内核安装时收到此警告。

谁知道我该如何解决这个问题?

sudo update-initramfs -u update-initramfs: Generating /boot/initrd.img-4.15.0-29-generic
 cryptsetup: WARNING: failed to detect canonical device of /dev/md1
cryptsetup: WARNING: could not determine root device from /etc/fstab
 W: Possible missing firmware /lib/firmware/ast_dp501_fw.bin for module ast
I: The initramfs will attempt to resume from /dev/sdb3 I: (UUID=9055a919-6d99-49f0-88f1-7c53d6fd92a7)
I: Set the RESUME variable to override this.

答案1

/etc/initramfs-tools/conf.d/resume首先,您可以通过查看文件并检查其中记录的 UUID 是否与您的交换分区的 UUID 相同来删除“I”消息。您始终可以通过运行sudo blkid命令来确定所有 UUID。因此,在您的情况下,文件中记录的 UUID 似乎resume与您的交换 UUID 不匹配。只需更正它,该信息消息就会消失。

关于 cryptsetup 消息。如果您没有在任何媒体上使用任何加密,只需通过命令从系统中移除cryptsetup软件包,您就不会再收到这样的消息。sudo apt remove cryptsetup

相关内容