Difference between revisions of "Swap"
From Wasya Wiki
(Created page with " sudo fallocate -l 4G /swapfile sudo dd if=/dev/zero of=/swapfile bs=1024 count=2097152 sudo chmod 600 /swapfile sudo mkswap /swapfile sudo swapon /swapfile # /etc/fsta...") |
(No difference)
|
Revision as of 00:38, 21 March 2022
sudo fallocate -l 4G /swapfile sudo dd if=/dev/zero of=/swapfile bs=1024 count=2097152 sudo chmod 600 /swapfile sudo mkswap /swapfile sudo swapon /swapfile
# /etc/fstab /swapfile swap swap defaults 0 0
sudo swapon --show sudo free -h
cat /proc/sys/vm/swappiness sudo sysctl vm.swappiness=10
sudo swapoff -v /swapfile # and remove the entry from /etc/fstab sudo rm /swapfile