-
-
Save Medigato/42ed618e0337ce8ddce66f3598b63bf6 to your computer and use it in GitHub Desktop.
increase swap file size to 8Gb
This file contains hidden or 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
# ref. https://askubuntu.com/a/1075516/22308 | |
sudo swapoff /swapfile # make all swap off | |
sudo rm -rf /swapfile # remove the current | |
# 8*1024Mb=8192Mb | |
# 4*1024Mb=4096Mb | |
sudo dd if=/dev/zero of=/swapfile bs=1M count=4096 # resize the swapfile to 8Gb | |
sudo chmod 600 /swapfile | |
sudo mkswap /swapfile # format the file as swap | |
sudo swapon /swapfile # activate it | |
sudo swapon -s # view swap size |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment