Created
December 22, 2015 10:47
-
-
Save hitapia/b57ecf1d02786a90ca46 to your computer and use it in GitHub Desktop.
make swap file - UBUNTU
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 swapon -s |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment