Skip to content

Instantly share code, notes, and snippets.

@edgarjs
Created March 23, 2016 03:49
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 edgarjs/7609f22d31296a82902c to your computer and use it in GitHub Desktop.
Save edgarjs/7609f22d31296a82902c to your computer and use it in GitHub Desktop.
Make a 4G swap
sudo fallocate -l 4G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
sudo echo '/swapfile none swap sw 0 0' >> /etc/fstab
sudo echo 'vm.swappiness=10' >> /etc/sysctl.conf
sudo echo 'vm.vfs_cache_pressure=50' >> /etc/sysctl.conf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment