Skip to content

Instantly share code, notes, and snippets.

@l4sh
Created October 19, 2017 19:23
Show Gist options
  • Save l4sh/a8f486b2adfeb16b63b6c9019446c129 to your computer and use it in GitHub Desktop.
Save l4sh/a8f486b2adfeb16b63b6c9019446c129 to your computer and use it in GitHub Desktop.
Create and enable a temporary swap file
#! /bin/bash
# Create and enable a temporary swap file
SWAPFILE="/tmp/swapfile1"
if [[ $1 == "on" ]]
then
echo Creating swap file on $SWAPFILE
dd if=/dev/zero of=$SWAPFILE bs=1024 count=524288
mkswap $SWAPFILE
chown root:root $SWAPFILE
chmod 0600 $SWAPFILE
swapon $SWAPFILE
elif [[ $1 == "off" ]]
then
echo Deleting swap file $SWAPFILE
swapoff -v $SWAPFILE
rm $WAPFILE
else
echo "Usage: tempswap [on|off]"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment