Skip to content

Instantly share code, notes, and snippets.

@arcreative
Last active June 22, 2016 19:32
Show Gist options
  • Save arcreative/0bd78336999d84a1d8c2816df838385c to your computer and use it in GitHub Desktop.
Save arcreative/0bd78336999d84a1d8c2816df838385c to your computer and use it in GitHub Desktop.
#!/bin/bash
sudo fallocate -l 2G /swapfile # <-- Don't forget to change size here
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
sudo echo '/swapfile none swap sw 0 0' >> /etc/fstab
sudo sysctl vm.swappiness=10
sudo sysctl vm.vfs_cache_pressure=50
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