Skip to content

Instantly share code, notes, and snippets.

@PixelNoob
Last active December 13, 2021 20:51
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 PixelNoob/e8d8c256a4286002c4df0a17328bb6bc to your computer and use it in GitHub Desktop.
Save PixelNoob/e8d8c256a4286002c4df0a17328bb6bc to your computer and use it in GitHub Desktop.
Add swap
cd
sudo fallocate -l 4G /swapfile
ls -lh /swapfile
sudo chmod 600 /swapfile
ls -lh /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
free -h
echo '/swapfile none swap sw 0 0' | sudo tee -a /etc/fstab
sudo sysctl vm.swappiness=10
echo 'vm.swappiness=10' | sudo tee -a /etc/sysctl.conf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment