Skip to content

Instantly share code, notes, and snippets.

@thinmy
Created October 9, 2018 10:51
Show Gist options
  • Save thinmy/a013001ae9994079454602a161c92423 to your computer and use it in GitHub Desktop.
Save thinmy/a013001ae9994079454602a161c92423 to your computer and use it in GitHub Desktop.
Create swap
#!/bin/sh
export SWAP_SIZE=2G
sudo fallocate -l $SWAP_SIZE /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
sudo bash -c 'echo "/swapfile none swap sw 0 0" >> /etc/fstab'
sudo sysctl vm.swappiness=10
sudo sysctl vm.vfs_cache_pressure=50
sudo bash -c 'echo "vm.swappiness=10" >> /etc/sysctl.conf'
sudo bash -c 'echo "vm.vfs_cache_pressure=50" >> /etc/sysctl.conf'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment