Skip to content

Instantly share code, notes, and snippets.

@Natgho
Created August 1, 2024 15:41
Show Gist options
  • Save Natgho/50f4784cdefbb82c2c58eb96dde3a4c1 to your computer and use it in GitHub Desktop.
Save Natgho/50f4784cdefbb82c2c58eb96dde3a4c1 to your computer and use it in GitHub Desktop.
swap_creator_for_ubuntu.sh
sudo fallocate -l 16G /swapfile
sudo dd if=/dev/zero of=/swapfile bs=1M count=16384
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
echo '/swapfile none swap sw 0 0' | sudo tee -a /etc/fstab
# check
# sudo swapon --show
# free -h
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment