Skip to content

Instantly share code, notes, and snippets.

@LiberQuack
Last active August 8, 2020 17:00
Show Gist options
  • Save LiberQuack/58eb3841a330e6dda6e5 to your computer and use it in GitHub Desktop.
Save LiberQuack/58eb3841a330e6dda6e5 to your computer and use it in GitHub Desktop.
SWAP_SIZE=2G
# See more: http://goo.gl/jN3NFO
sudo fallocate -l $SWAP_SIZE /swapfile
sudo chown root:root /swapfile
sudo chmod 0600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
echo '/swapfile none swap sw 0 0' | sudo tee --append /etc/fstab
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment