Linux Swap and Swapfile

From WikiMLT

Add Swap­file

sudo fallocate -l 4G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
sudo nano /etc/fstab
/swapfile swap swap defaults 0 0

Check the swap and its us­age:

sudo swapon --show
sudo free -h