Skip to content

Instantly share code, notes, and snippets.

@Goblin80
Created November 2, 2018 13:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Goblin80/03abd1492d9d5c59c4f79b74b6023715 to your computer and use it in GitHub Desktop.
Save Goblin80/03abd1492d9d5c59c4f79b74b6023715 to your computer and use it in GitHub Desktop.
Add permanent swap space on Ubuntu
!#/bin/bash
sudo fallocate -l 1G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
sudo cp /etc/fstab /etc/fstab.bak
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