Skip to content

Instantly share code, notes, and snippets.

@adastreamer
Created October 31, 2015 23:17
Show Gist options
  • Save adastreamer/92c9115781a4768b3863 to your computer and use it in GitHub Desktop.
Save adastreamer/92c9115781a4768b3863 to your computer and use it in GitHub Desktop.
Create swap ubuntu
#!/bin/bash
sudo fallocate -l 1G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
sudo swapon -s
sudo vi /etc/fstab
echo "/swapfile none swap sw 0 0" >> /etc/fstab
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment