Skip to content

Instantly share code, notes, and snippets.

@calimaborges
Created July 17, 2017 16:35
Show Gist options
  • Save calimaborges/26444eab757ba5b2ef9ac6cbe5da418a to your computer and use it in GitHub Desktop.
Save calimaborges/26444eab757ba5b2ef9ac6cbe5da418a to your computer and use it in GitHub Desktop.
Swap Memory Config Digital Ocean
# Configure swap memory
fallocate -l 4G /swapfile
chmod 600 /swapfile
mkswap /swapfile
echo "/swapfile none swap sw 0 0" >> /etc/fstab
shutdown -r now
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment