Skip to content

Instantly share code, notes, and snippets.

@nerijunior
Created August 23, 2018 18:55
Show Gist options
  • Save nerijunior/7e64fd70b747dec3acbba4bdb6eb300b to your computer and use it in GitHub Desktop.
Save nerijunior/7e64fd70b747dec3acbba4bdb6eb300b to your computer and use it in GitHub Desktop.
Swap for Server
# Create Swap
sudo fallocate -l 2G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
# Make Swap permanent
sudo cp /etc/fstab /etc/fstab.bak
echo '/swapfile none swap sw 0 0' | sudo tee -a /etc/fstab
# Show the result
free -h
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment