web-dev-qa-db-ja.com

初期設定エラー:restore-uuidが間違っています

コマンドライン経由でシステムをアップグレードすると、aptから次のエラーメッセージが表示されました。

init設定RESTORE-UUID =(uid)is wrongドライブが存在しません。 initは/ sda3からの復元を試みます

システムが正常に起動し、スワップパーティションがマウントされます。

修正できるように、この設定はどこにありますか?

1
ravery

ファイルは/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

RESUME = 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
2
heynnema