Skip to content

Instantly share code, notes, and snippets.

@abarmat
Created August 12, 2017 04:51
Show Gist options
  • Select an option

  • Save abarmat/be4e0725db33b930a42170e69cc0948f to your computer and use it in GitHub Desktop.

Select an option

Save abarmat/be4e0725db33b930a42170e69cc0948f to your computer and use it in GitHub Desktop.
# Create and attach swapfile
sudo fallocate -l 8G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
# Permanent mount
echo "/swapfile none swap sw 0 0" | sudo tee -a /etc/fstab
# Tweaks
sudo sysctl vm.swappiness=10
sudo sysctl vm.vfs_cache_pressure=50
echo "vm.swappiness=10" | sudo tee -a /etc/sysctl.conf
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