Skip to content

Instantly share code, notes, and snippets.

@seeya
Created September 13, 2018 02:41
Show Gist options
  • Save seeya/da88c97625426203acce53e99930dc92 to your computer and use it in GitHub Desktop.
Save seeya/da88c97625426203acce53e99930dc92 to your computer and use it in GitHub Desktop.
Setup swap space
sudo fallocate -l 4G /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