Skip to content

Instantly share code, notes, and snippets.

@cobyism
Created June 27, 2015 07:25
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save cobyism/58f5463869aaf84184f0 to your computer and use it in GitHub Desktop.
Save cobyism/58f5463869aaf84184f0 to your computer and use it in GitHub Desktop.
Commands to create swapfile on a Digital Ocean Ubuntu droplet
sudo fallocate -l 2G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
swapon -s
free -m
@porimol
Copy link

porimol commented Jun 13, 2016

Hi @cobyism ,
How may I permanently add the swap file in my system?
Now I'm facing the problem is If I restart or shutdown the server the swap file remove or does not run! Then I have to have need re-create the swap file as your command.

Thanks

@orangewolf
Copy link

echo '/swapfile none swap sw 0 0' | sudo tee -a /etc/fstab

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment