-
-
Save imago-storm/7cde3a8bf1f8d2838b3dc9e7cdbc63ec to your computer and use it in GitHub Desktop.
Increasing swap size. Only tested on the ubuntu/trusty64 Vagrant box. CREDIT GOES TO ---> http://jeqo.github.io/blog/devops/vagrant-quickstart/
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
| #!/bin/sh | |
| # size of swapfile in megabytes | |
| swapsize=8000 | |
| # does the swap file already exist? | |
| grep -q "swapfile" /etc/fstab | |
| # if not then create it | |
| if [ $? -ne 0 ]; then | |
| echo 'swapfile not found. Adding swapfile.' | |
| fallocate -l ${swapsize}M /swapfile | |
| chmod 600 /swapfile | |
| mkswap /swapfile | |
| swapon /swapfile | |
| echo '/swapfile none swap defaults 0 0' >> /etc/fstab | |
| else | |
| echo 'swapfile found. No changes made.' | |
| fi | |
| # output results to terminal | |
| df -h | |
| cat /proc/swaps | |
| cat /proc/meminfo | grep Swap |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment