Skip to content

Instantly share code, notes, and snippets.

@TotalLag
Forked from superbarne/gist:77bd850d5c270bf7cad4
Last active November 28, 2019 20:18
Show Gist options
  • Save TotalLag/9f5e684cd408ba290d94 to your computer and use it in GitHub Desktop.
Save TotalLag/9f5e684cd408ba290d94 to your computer and use it in GitHub Desktop.
Enable Swap
fallocate -l 4G /swapfile || sudo dd if=/dev/zero of=/swapfile count=4096 bs=1MiB && \
chmod 600 /swapfile && \
mkswap /swapfile && \
swapon /swapfile && \
echo "/swapfile none swap defaults 0 0" >> /etc/fstab
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment