Ubuntu 15.10にアップデートしました。ハイバネーションは15.04で正常に動作します。今ではありません。ここにいくつかの情報があります:
quang@ubuntu:~$ cat /etc/fstab
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
UUID=bef5e506-c800-469f-a7d6-d518e1102328 / ext4 noatime,data=writeback,errors=remount-ro 0 1
UUID=9c7da40c-89d7-4eb6-aab7-bd0067dfa753 /home ext4 noatime,data=writeback,defaults 0 2
UUID=a3fa91b7-4262-4253-a24e-5ee2b221f524 /var ext4 noatime,data=writeback,defaults 0 2
UUID=D8C0-A1BC /boot/efi vfat defaults 0 0
UUID=4cea5ee8-3322-48c6-b05e-2e90854f088e none swap sw 0 0
quang@ubuntu:~$ cat /etc/initramfs-tools/conf.d/resume
RESUME=UUID=4cea5ee8-3322-48c6-b05e-2e90854f088e
Grub.cfgのlinux paramにresume = UID = 4cea5ee8-3322-48c6-b05e-2e90854f088eを入れても機能しますが、それなしでは機能しません。グラブに触れることなく以前のように動作させる方法。
@ Pilot6が示唆したように、私は答えをここに投稿します。私は追加する必要があります
resume=UUID=4cea5ee8-3322-48c6-b05e-2e90854f088e
GRUB_CMDLINE_LINUX_DEFAULT
の/etc/default/grub
に変更してから、GRUBを使用して更新します
Sudo update-grub
RESUME=UUID=4cea5ee8-3322-48c6-b05e-2e90854f088e
を/etc/initramfs-tools/conf.d/resume
に入力したら、実行する必要があります
Sudo update-initramfs -u
Sudo update-grub