Created
February 4, 2020 07:47
-
-
Save jams008/c5525b2b83c404571b74043f7621b105 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Do argument checks | |
if [ ! "$#" -ge 1 ]; then | |
echo "Usage: $0 {size}" | |
echo "Example: $0 4G" | |
echo "(Default path: /swapfile)" | |
echo "Optional path: Usage: $0 {size} {path}" | |
exit 1 | |
fi | |
## Intro | |
echo "Welcome to Swap setup script! This script will automatically setup a swap file and enable it." | |
echo "Root access is required, please run as root or enter sudo password." | |
echo "Source is @ https://github.com/Cretezy/Swap" | |
echo | |
## Setup variables | |
# Get size from first argument | |
SWAP_SIZE=$1 | |
# Get path from second argument (default to /swapfile) | |
SWAP_PATH="/swapfile" | |
if [ ! -z "$2" ]; then | |
SWAP_PATH=$2 | |
fi | |
## Run | |
sudo fallocate -l $SWAP_SIZE $SWAP_PATH # Allocate size | |
sudo chmod 600 $SWAP_PATH # Set proper permission | |
sudo mkswap $SWAP_PATH # Setup swap | |
sudo swapon $SWAP_PATH # Enable swap | |
echo "$SWAP_PATH none swap sw 0 0" | sudo tee /etc/fstab -a # Add to fstab | |
## Outro | |
echo | |
echo "Done! You now have a $SWAP_SIZE swap file at $SWAP_PATH" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment