Always I forget how to set Linux swap so there it is
- check swap
- check disk size
- create swap file (with 4GB)
- fix permissions for root
- create swap area
- enable swap in linux using the new file
- configuring swap partition to start when restarted vm
- check if swap enabled (again)
- check swappiness
- set swappiness in running machine
- configure swappiness to be set when restarted vm
sudo free -m
sudo swapon --show
df -h
sudo fallocate -l 4G /swap.img
or you can call dd if you don't have fallocate command
dd command alternative: $ sudo dd if=/dev/zero of=/swap.img bs=1024 count=4194304
sudo chown root:root /swap.img
sudo chmod 600 /swap.img
sudo mkswap /swap.img
sudo swapon /swap.img
sudo vim /etc/fstab
-> add file content:
/swap.img swap swap defaults 0 0
sudo free -m
sudo swapon --show
cat /proc/sys/vm/swappiness
sudo sysctl vm.swappiness=10
sudo vim /etc/sysctl.conf
-> add file content:
vm.swappiness=10
Reference: https://linuxize.com/post/how-to-add-swap-space-on-ubuntu-22-04/