Skip to content

Instantly share code, notes, and snippets.

@orangewolf
Forked from MPJHorner/Ubuntu16SwapFile
Created March 30, 2017 06:17
Show Gist options
  • Save orangewolf/0dbfb2f8d1c96a635ce2dd64563f171b to your computer and use it in GitHub Desktop.
Save orangewolf/0dbfb2f8d1c96a635ce2dd64563f171b 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