Michel Le Cocq 2020-06-23 06:40:59 +02:00
parent dc6122c368
commit 9f26e70e8c
1 changed files with 12 additions and 0 deletions

@ -66,12 +66,22 @@ swapoff /dev/mapper/cryptswap1
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash resume=/dev/nvme0n1p2"
~~~
~~~
update-grub
~~~
* edit /etc/initramfs-tools/conf.d/resume. Replace the existing RESUME line with the following line.
~~~
RESUME=/dev/nvme0n1p2
~~~
Register these changes.
~~~
update-initramfs -u -k all
~~~
* make your partition a swap
~~~
@ -84,6 +94,8 @@ mkswap /dev/nvme0n1p2
swapon -a
~~~
## to be solve
~~~