Last active
June 25, 2019 07:33
-
-
Save hayatibis/892c391ebd50ff50f4cebf05e0af48e4 to your computer and use it in GitHub Desktop.
Ubuntu Resize Swap Area
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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