Skip to content

Instantly share code, notes, and snippets.

@iamajeesh
Created January 15, 2015 17:48
Show Gist options
  • Save iamajeesh/292d9074cd0e84fe9ea2 to your computer and use it in GitHub Desktop.
Save iamajeesh/292d9074cd0e84fe9ea2 to your computer and use it in GitHub Desktop.
Add Swap Ubuntu 14.04 LTS - This adds 1GB swap
sudo swapon -s
free -m
fallocate -l 1G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
sudo swapon -s
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