Skip to content

Instantly share code, notes, and snippets.

@hendra
Forked from MPJHorner/Ubuntu16SwapFile
Last active June 19, 2018 16:37
Show Gist options
  • Save hendra/57fec673e134b6725da95d661023c1b2 to your computer and use it in GitHub Desktop.
Save hendra/57fec673e134b6725da95d661023c1b2 to your computer and use it in GitHub Desktop.
Create Swap File on Ubuntu 16.04
sudo fallocate -l 2G /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