Skip to content

Instantly share code, notes, and snippets.

@noudadrichem
Created April 12, 2021 16:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save noudadrichem/524c666ca924ba5b9aaa8a06ebeeeb44 to your computer and use it in GitHub Desktop.
Save noudadrichem/524c666ca924ba5b9aaa8a06ebeeeb44 to your computer and use it in GitHub Desktop.
echo "Creating 3gb swap for $(whoami)"
free -h
sudo fallocate -l 3G /swapfile
ls -lh /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
sudo swapon --show
free -h
sudo sysctl vm.swappiness=10
sudo sysctl vm.vfs_cache_pressure=50
echo "--DONE--"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment