Now, I am using ubuntu 14.04 with 512 RAM and Swap 512 too. I want to change my swap to 1 GB. Can anyone help me ? Should I repeat this step on this article with different size ?
https://www.digitalocean.com/community/tutorials/how-to-add-swap-on-ubuntu-14-04
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Thanks for instructions & discussion.
Funny thing, I had to reduce my swap file from 8G to 4G. Gobble up too much disk space.
You could just delete the file and start from scratch, but if you just want to resize it you can do that as well. Just remember to disable it with swapoff first. For example:
# sudo swapon -s
Filename Type Size Used Priority
/swapfile file 1048572 0 -1
# sudo swapoff /swapfile
# sudo fallocate -l 4G /swapfile
# sudo mkswap /swapfile
Setting up swapspace version 1, size = 4194300 KiB
no label, UUID=fb0aadaf-b52f-4928-b57f-c60ef7a0bd49
# sudo swapon /swapfile
# sudo swapon -s
Filename Type Size Used Priority
/swapfile file 4194300 0 -1
This comment has been deleted
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.