Skip to content

Instantly share code, notes, and snippets.

@SiddheshNan
Created February 7, 2020 20:55
Show Gist options
  • Save SiddheshNan/dadbead73031908004b8e0aa4dffb435 to your computer and use it in GitHub Desktop.
Save SiddheshNan/dadbead73031908004b8e0aa4dffb435 to your computer and use it in GitHub Desktop.
use for debian/ubuntu only
free -h
df -h
sudo fallocate -l 3G /swapfile
ls -lh /swapfile
sudo chmod 600 /swapfile
ls -lh /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
sudo swapon --show
free -h
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