Ubuntu 15.10: Não é possível retomar do modo de hibernação

3

Acabei de atualizar para o Ubuntu 15.10. A hibernação funciona bem em 15.04. Agora não é. Aqui estão algumas informações:

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

Funciona se eu colocar resume = UID = 4cea5ee8-3322-48c6-b05e-2e90854f088e no linux param no grub.cfg, mas não sem ele. Como fazê-lo funcionar como antes sem tocar no grub.

    
por Quang Ngô 25.10.2015 / 12:50

2 respostas

1

Como sugerido pelo @Pilot6, coloco a resposta aqui. Eu tenho que acrescentar

resume=UUID=4cea5ee8-3322-48c6-b05e-2e90854f088e

para GRUB_CMDLINE_LINUX_DEFAULT em /etc/default/grub , em seguida, atualize o GRUB usando

sudo update-grub
    
por Quang Ngô 29.03.2016 / 07:04
0

Depois de inserir RESUME=UUID=4cea5ee8-3322-48c6-b05e-2e90854f088e to /etc/initramfs-tools/conf.d/resume , você precisa executar

sudo update-initramfs -u
sudo update-grub
    
por Pilot6 26.10.2015 / 09:35