Skip to content

Instantly share code, notes, and snippets.

@bugb
Created May 29, 2020 19:42
Show Gist options
  • Save bugb/e25fe83a8d9710ef09fdfd725756e289 to your computer and use it in GitHub Desktop.
Save bugb/e25fe83a8d9710ef09fdfd725756e289 to your computer and use it in GitHub Desktop.
Script install swap for ubuntu
#!/bin/bash
sudo fallocate -l 4G /swapfile
chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
sudo swapon -s
sudo echo "/swapfile none swap sw 0 0" >> /etc/fstab
cat /etc/fstab
sudo echo "vm.swappiness=10" >> /etc/sysctl.conf
sudo sysctl -p
echo "done"
@bugb
Copy link
Author

bugb commented Jun 2, 2020

curl -s https://gist.githubusercontent.com/bugb/e25fe83a8d9710ef09fdfd725756e289/raw/d0d0c329e0830bf0c93fa71a72dd7e4ed216ff9b/swap.sh | sudo bash

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