Skip to content

Instantly share code, notes, and snippets.

@Tiryoh
Last active July 12, 2019 14:32
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 Tiryoh/e82368a45a08dc704505749ea0e968fb to your computer and use it in GitHub Desktop.
Save Tiryoh/e82368a45a08dc704505749ea0e968fb to your computer and use it in GitHub Desktop.
create 2GB swapfile on Linux
#!/usr/bin/env bash
set -eu
sudo dd if=/dev/zero of=/var/swapfile bs=1M count=2048
sudo mkswap /var/swapfile
sudo chmod 600 /var/swapfile
sudo swapon /var/swapfile
sudo cat /proc/swaps
echo "/var/swapfile swap swap defaults 0 0" | sudo tee -a /etc/fstab
@Tiryoh
Copy link
Author

Tiryoh commented Jul 12, 2019

Usage

curl -SsfL git.io/create_2gbswapfile | bash

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment