Skip to content

Instantly share code, notes, and snippets.

@MPJHorner
Created September 5, 2016 17:10
Show Gist options
  • Save MPJHorner/f614faa6f644a64e20bbf1371b4a3bb0 to your computer and use it in GitHub Desktop.
Save MPJHorner/f614faa6f644a64e20bbf1371b4a3bb0 to your computer and use it in GitHub Desktop.
Create Swap File on Ubuntu 16.04
sudo fallocate -l 1G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
echo '/swapfile none swap sw 0 0' | sudo tee -a /etc/fstab
sudo swapon --show
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment