Skip to content

Instantly share code, notes, and snippets.

@kanevbg
Forked from MPJHorner/Ubuntu16SwapFile
Created November 21, 2017 11:14
Show Gist options
  • Save kanevbg/13ba9506ba5c863593eab136f1de08d3 to your computer and use it in GitHub Desktop.
Save kanevbg/13ba9506ba5c863593eab136f1de08d3 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