Ubuntu Swap

in ubuntu •  6 years ago  (edited)

Check configured swap:

sudo swapon --show

NAME                   TYPE      SIZE   USED PRIO
/swap-128              file      128G 127.9G   -2
/dev/md0               partition  32G    32G   -1

Create a swap file:

sudo fallocate -l 64G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
echo '/swapfile none swap sw 0 0' | sudo tee -a /etc/fstab

Resources

  1. https://www.digitalocean.com/community/tutorials/how-to-add-swap-space-on-ubuntu-16-04
Authors get paid when people like you upvote their post.
If you enjoyed what you read here, create your account today and start earning FREE STEEM!