Skip to content

Instantly share code, notes, and snippets.

@skycocker
Last active June 9, 2021 14:52
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save skycocker/d1b5c8daa3e1ad67d49e0af42cebfa58 to your computer and use it in GitHub Desktop.
Save skycocker/d1b5c8daa3e1ad67d49e0af42cebfa58 to your computer and use it in GitHub Desktop.
Enable 1G swap space on ubuntu (or pretty much any other linux distro) - useful on small Amazon/Digitalocean instances
sudo fallocate -l 1G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
sudo swapon --show
sudo cp /etc/fstab /etc/fstab.bak
echo '/swapfile none swap sw 0 0' | sudo tee -a /etc/fstab
sudo sysctl vm.swappiness=10
echo 'vm.swappiness=10' | sudo tee -a /etc/sysctl.conf
sudo sysctl vm.vfs_cache_pressure=50
echo 'vm.vfs_cache_pressure=50' | sudo tee -a /etc/sysctl.conf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment