Skip to content

Instantly share code, notes, and snippets.

@hayatibis
Last active June 25, 2019 07:33
Show Gist options
  • Save hayatibis/892c391ebd50ff50f4cebf05e0af48e4 to your computer and use it in GitHub Desktop.
Save hayatibis/892c391ebd50ff50f4cebf05e0af48e4 to your computer and use it in GitHub Desktop.
Ubuntu Resize Swap Area
sudo swapoff -a
sudo dd if=/dev/zero of=/swapfile bs=1G count=8
sudo mkswap /swapfile
sudo swapon /swapfile
grep SwapTotal /proc/meminfo
Ref: https://bogdancornianu.com/change-swap-size-in-ubuntu/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment