Skip to content

Instantly share code, notes, and snippets.

@gossterrible
Created September 4, 2018 05:16
Show Gist options
  • Save gossterrible/02016f2014fc07c4af0d6582c32fedf8 to your computer and use it in GitHub Desktop.
Save gossterrible/02016f2014fc07c4af0d6582c32fedf8 to your computer and use it in GitHub Desktop.
create swap ubuntu
Enabling the Swap File
sudo fallocate -l 1G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
sudo swapon --show
Check swap
free -h
Make the Swap File Permanent
Back up the /etc/fstab file in case anything goes wrong:
sudo cp /etc/fstab /etc/fstab.bak
echo '/swapfile none swap sw 0 0' | sudo tee -a /etc/fstab
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment