Differences between revisions 4 and 5
Revision 4 as of 2022-02-24 22:24:45
Size: 439
Editor: PieterSmit
Comment:
Revision 5 as of 2022-03-03 04:55:03
Size: 439
Editor: PieterSmit
Comment:
Deletions are marked like this. Additions are marked like this.
Line 6: Line 6:
export swapspace="2G" export swapspace="8G"

Add a swapfile to a Linux box (Ubuntu

1. Paste into a terminal, it adds a 8G swapfile to the VM/Machine.

  • export swapspace="8G"
    sudo fallocate -l ${swapspace} /swapfile${swapspace}
    sudo chmod 600 /swapfile${swapspace}
    sudo mkswap /swapfile${swapspace}
    echo "/swapfile${swapspace} none swap sw 0 0" | sudo tee -a /etc/fstab
    sudo swapon -a 
    free -h
    cat /proc/sys/vm/swappiness

...

Linux/SwapFile (last edited 2022-03-03 04:55:03 by PieterSmit)