From e123c23b08a2e1d492e26c9973626b38401763f7 Mon Sep 17 00:00:00 2001 From: Robin Candau Date: Thu, 23 May 2024 21:39:27 +0200 Subject: [PATCH] Activate swap at boot on Alpine RPI (#268) --- Services/Alpine.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Services/Alpine.md b/Services/Alpine.md index 8f20ae5..00c90c9 100644 --- a/Services/Alpine.md +++ b/Services/Alpine.md @@ -92,4 +92,9 @@ mkdir media/mmcblk0p1 ln -s media/mmcblk0p1/boot boot # You can safely ignore errors here ``` -After that, `reboot` and perform the [post-installation](https://github.com/Antiz96/Linux-Server/blob/main/VMs/Alpine-Linux_Server_Template.md). +The initial configuration is over! You can now `reboot`, activate swap at boot and proceed with the [post-installation](https://github.com/Antiz96/Linux-Server/blob/main/VMs/Alpine-Linux_Server_Template.md): + +```bash +reboot +rc-update add swap boot +```