Skip to content

Instantly share code, notes, and snippets.

@kurorido
Created November 8, 2015 10:41
Show Gist options
  • Select an option

  • Save kurorido/487f9eb31bfe971b24e3 to your computer and use it in GitHub Desktop.

Select an option

Save kurorido/487f9eb31bfe971b24e3 to your computer and use it in GitHub Desktop.
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