Skip to content

Instantly share code, notes, and snippets.

@emacsist
Created June 26, 2018 10:51
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 emacsist/2b130555143ad25af2d88df2d8be8d48 to your computer and use it in GitHub Desktop.
Save emacsist/2b130555143ad25af2d88df2d8be8d48 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
SWAP_FILE="${HOME}/swap.file"
N_MB=10240
dd if=/dev/zero of="${SWAP_FILE}" bs=1M count="${N_MB}"
mkswap "${SWAP_FILE}"
swapon "${SWAP_FILE}"
#swapoff "${SWAP_FILE}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment