Skip to content

Instantly share code, notes, and snippets.

@hewersonfreitas
Last active December 29, 2020 18:39
Show Gist options
  • Save hewersonfreitas/11c37b92ddb45c807c15776dbc0a2558 to your computer and use it in GitHub Desktop.
Save hewersonfreitas/11c37b92ddb45c807c15776dbc0a2558 to your computer and use it in GitHub Desktop.
add-aux-swap.sh
$ echo 'enable aux swap composer'
$ fallocate -l 2G /swapfile-composer
$ chmod 600 /swapfile-composer
$ mkswap /swapfile-composer
$ swapon /swapfile-composer
$ echo '/swapfile-composer none swap sw 0 0' | sudo tee -a /etc/fstab
$ echo 'disable aux swap composer'
$ swapoff /swapfile-composer
$ rm /swapfile-composer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment