Skip to content

Instantly share code, notes, and snippets.

@olegbuevich
Created October 10, 2018 11:51
Show Gist options
  • Save olegbuevich/68809cb1ec74abac0e8070a22dd3ac4b to your computer and use it in GitHub Desktop.
Save olegbuevich/68809cb1ec74abac0e8070a22dd3ac4b to your computer and use it in GitHub Desktop.
create swap file
sudo fallocate -l 4G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
echo "/swapfile swap 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