diff --git a/right-fit-swap-for-laptop-hibernation-Ubuntu-20.04-full-ZFS-install.md b/right-fit-swap-for-laptop-hibernation-Ubuntu-20.04-full-ZFS-install.md index 2085090..9c26b97 100644 --- a/right-fit-swap-for-laptop-hibernation-Ubuntu-20.04-full-ZFS-install.md +++ b/right-fit-swap-for-laptop-hibernation-Ubuntu-20.04-full-ZFS-install.md @@ -168,12 +168,18 @@ GRUB_CMDLINE_LINUX_DEFAULT="quiet splash resume=/dev/nvme0n1p2" * edit /etc/initramfs-tools/conf.d/resume. Replace the existing RESUME line with the following line. - RESUME=/dev/nvme0n1p2 +~~~ +RESUME=/dev/nvme0n1p2 +~~~ + +* make your partition a swap ~~~ mkswap /dev/nvme0n1p2 ~~~ +* activate swap + ~~~ swapon -a ~~~