From 9ecbacbb122d7325da51b05a34bf90061bfd275d Mon Sep 17 00:00:00 2001 From: Harri Lahtinen Date: Wed, 17 Jun 2020 19:24:36 +0300 Subject: [PATCH] new instructions for swapfile --- addons/install_arch.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/install_arch.md b/addons/install_arch.md index 3dc33b7..537fedf 100644 --- a/addons/install_arch.md +++ b/addons/install_arch.md @@ -49,7 +49,7 @@ mkfs.ext4 /dev/sda2 #### Create swapfile ```sh -fallocate -l 4G /swapfile +dd if=/dev/zero of=/swapfile bs=1M count=32768 status=progress chmod 600 /swapfile mkswap /swapfile swapon /swapfile