Skip to content

Instantly share code, notes, and snippets.

@aamsur-mkt
Created September 10, 2020 14:37
Show Gist options
  • Save aamsur-mkt/e38ed1d0342130f0535bc17a078b8985 to your computer and use it in GitHub Desktop.
Save aamsur-mkt/e38ed1d0342130f0535bc17a078b8985 to your computer and use it in GitHub Desktop.
Add SWAP Memory 2GB Ubuntu 16.04 and up
sudo fallocate -l 2G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
sudo cp /etc/fstab /etc/fstab.bak
echo '/swapfile none swap sw 0 0' | sudo tee -a /etc/fstab
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
@aamsur-933
Copy link

Works on ubuntu 20.04 !!!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment