Created
November 8, 2015 10:41
-
-
Save kurorido/487f9eb31bfe971b24e3 to your computer and use it in GitHub Desktop.
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
| https://www.digitalocean.com/community/questions/how-to-change-swap-size-on-ubuntu-14-04 | |
| Just follow these steps: | |
| Make all swap off | |
| sudo swapoff -a | |
| Resize the swapfile | |
| sudo dd if=/dev/zero of=/swapfile bs=1M count=1024 | |
| Make swapfile usable | |
| sudo mkswap /swapfile | |
| Make swapon again | |
| sudo swapon /swapfile |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment