Skip to content

Instantly share code, notes, and snippets.

@yanaga
Created April 15, 2015 21:19
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yanaga/a271e0412da5b575d171 to your computer and use it in GitHub Desktop.
Save yanaga/a271e0412da5b575d171 to your computer and use it in GitHub Desktop.
Create a 4G swap file on Ubuntu
sudo fallocate -l 4G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
cat << EOF | sudo tee -a /etc/fstab
/swapfile none swap sw 0 0
EOF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment