Skip to content

Instantly share code, notes, and snippets.

@TheSalarKhan
Created February 24, 2021 18:17
Show Gist options
  • Save TheSalarKhan/833936e580f0a70bd8db4b3b3419198d to your computer and use it in GitHub Desktop.
Save TheSalarKhan/833936e580f0a70bd8db4b3b3419198d to your computer and use it in GitHub Desktop.
sudo swapon --show
sudo fallocate -l 1G /swapfile
sudo dd if=/dev/zero of=/swapfile bs=1024 count=1048576
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
sudo echo "/swapfile swap swap defaults 0 0" >> /etc/fstab
sudo swapon --show
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment