Skip to content

Instantly share code, notes, and snippets.

@sonuame
Created August 17, 2020 16:51
Show Gist options
  • Save sonuame/32ab036274e2f37ed530e54d79d3325c to your computer and use it in GitHub Desktop.
Save sonuame/32ab036274e2f37ed530e54d79d3325c to your computer and use it in GitHub Desktop.
sudo swapon --show
free -h
df -h
sudo fallocate -l 5G /swapfile
ls -lh /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
sudo swapon --show
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