Not restoring after hibernating

Thanks. I finally did it. Here is how:
(Replace โ€œ[UUID_of_the_swap_partition]โ€ with the actual UUID)

  1. In /etc/fstab added:
    UUID=[UUID_of_the_swap_partition] none swap defaults 0 0
  2. In /etc/default/grub added:
    resume=UUID=[UUID_of_the_swap_partition] to GRUB_CMDLINE_LINUX
  3. In /etc/mkinitcpio.conf added:
    resume to HOOKS (after udev)
  4. sudo mkinitcpio -P && sudo update-grub

Thatโ€™s all. Hibernated and it resumed! :+1:

13 Likes