sudo fallocate -l 2G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
Test:
sudo swapon -s
free -m
Make your changes permanent:
sudo vi /etc/fstab
Add the following line:
/swapfile none swap sw 0 0
save & close the file.
Twek swapinness (0-100). If near to 0 the kernel will use swap only it is absolutely necessary. Values near to 100 mean use more swap and use less RAM.
To see swappiness:
cat /proc/sys/vm/swappiness
and to change it
sudo vi /etc/sysctl.conf
and add at the end of the file
vm.swappiness=10
(source)
No comments:
Post a Comment