This commit is contained in:
Michel Le Cocq 2020-06-22 21:03:37 +02:00
parent ca3b388722
commit d0ce3b4194

View File

@ -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. * 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 mkswap /dev/nvme0n1p2
~~~ ~~~
* activate swap
~~~ ~~~
swapon -a swapon -a
~~~ ~~~