Skip to content

Instantly share code, notes, and snippets.

@scavin
Created November 18, 2022 02:49
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 scavin/2bcc7141b706c6eed364a93ab0b6bb0b to your computer and use it in GitHub Desktop.
Save scavin/2bcc7141b706c6eed364a93ab0b6bb0b to your computer and use it in GitHub Desktop.
swap.sh
install -o root -g root -m 0600 /dev/null /swapfile
dd if=/dev/zero of=/swapfile bs=1k count=2048k
mkswap /swapfile
swapon /swapfile
echo "/swapfile swap swap auto 0 0" | sudo tee -a /etc/fstab
sudo sysctl -w 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