初始化设置错误:restore-uuid 错误

初始化设置错误:restore-uuid 错误

我通过命令行升级了我的系统,apt 给了我错误消息:

init 设置 RESTORE-UUID=(uid) 是错误的,驱动器不存在。init 将尝试从 /sda3 恢复

系统启动正常并且交换分区已安装。

在哪里可以找到此设置以便可以修复它?

答案1

该文件位于/etc/initramfs-tools/conf.d/resume

terminal...

sudo blkid | grep -i swap # note the UUID of the swap partition

sudo -H gedit /etc/initramfs-tools/conf.d/resume # edit the file

简历=UUID=071f8b0e-8e16-4f4d-90ff-a4ae9cc56e2b

* edit with correct UUID of swap partition from blkid command

sudo update-initramfs -u # update the /boot/initrd.img file

相关内容