Skip to content

Instantly share code, notes, and snippets.

@mohamnag
Created March 17, 2015 10:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mohamnag/1384b120170dc399f704 to your computer and use it in GitHub Desktop.
Save mohamnag/1384b120170dc399f704 to your computer and use it in GitHub Desktop.
swap file on aws micro instances
sudo dd if=/dev/zero of=/var/swapfile bs=1M count=2048
sudo chmod 600 /var/swapfile
sudo mkswap /var/swapfile
echo /var/swapfile none swap defaults 0 0 | sudo tee -a /etc/fstab
sudo swapon -a
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment