Last active
July 25, 2018 12:33
-
-
Save FahmiRaazali/30778247cc7458f27ca181beef6aa84d to your computer and use it in GitHub Desktop.
[Linux Swapfile Partition] #cloudhosting
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo fallocate -l 4G /swapfile | |
| sudo chmod 600 /swapfile | |
| sudo mkswap /swapfile | |
| sudo swapon /swapfile | |
| sudo nano /etc/fstab | |
| /swapfile none swap sw 0 0 | |
| sudo sysctl vm.swappiness=10 | |
| sudo nano /etc/sysctl.conf | |
| vm.swappiness=10 | |
| sudo sysctl vm.vfs_cache_pressure=50 | |
| sudo nano /etc/sysctl.conf | |
| vm.vfs_cache_pressure=50 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment