Skip to content

Instantly share code, notes, and snippets.

@archlemon
Created March 22, 2019 14:00
Show Gist options
  • Select an option

  • Save archlemon/53586dc2e2249e1849815a875874ca7e to your computer and use it in GitHub Desktop.

Select an option

Save archlemon/53586dc2e2249e1849815a875874ca7e to your computer and use it in GitHub Desktop.
sudo fallocate -l 512M /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
echo "/swapfile   none    swap    sw    0   0" >> /etc/fstab
echo "vm.swappiness=10" >> /etc/sysctl.conf
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