Skip to content

Instantly share code, notes, and snippets.

@demiters
Created July 20, 2020 13:54
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 demiters/ba1c66c382cd2870764bf58066116a7a to your computer and use it in GitHub Desktop.
Save demiters/ba1c66c382cd2870764bf58066116a7a to your computer and use it in GitHub Desktop.
Creating swap space on Ubuntu 18.04 - 20.04
#!/bin/bash
# Creates 8GB of swap space and persists some recommended settings for servers
sudo fallocate -l 8G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
echo '/swapfile none swap sw 0 0' | sudo tee -a /etc/fstab
sudo sysctl vm.swappiness=10
sudo sysctl vm.vfs_cache_pressure=50
echo "vm.swappiness=10
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