Skip to content

Instantly share code, notes, and snippets.

@evereq
Created December 30, 2018 16:53
Show Gist options
  • Save evereq/b33fa4e25bb6739348f14cc4b22e9d83 to your computer and use it in GitHub Desktop.
Save evereq/b33fa4e25bb6739348f14cc4b22e9d83 to your computer and use it in GitHub Desktop.
Add 4Gb Swap file (Ubuntu)
sudo fallocate -l 4G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
sudo swapon -s
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