Last active
April 13, 2024 20:22
-
-
Save peterchester/4537ed05a790045dd11f to your computer and use it in GitHub Desktop.
A simple little shell script that executes the digital ocean swap file tutorial.
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 | |
# Creates a 1gb swap image. | |
# @see https://www.digitalocean.com/community/tutorials/how-to-configure-virtual-memory-swap-file-on-a-vps | |
if [ -f /var/swap.img ]; then | |
echo "Swap file already exists." | |
else | |
touch /var/swap.img | |
chmod 600 /var/swap.img | |
dd if=/dev/zero of=/var/swap.img bs=1024k count=1000 | |
mkswap /var/swap.img | |
swapon /var/swap.img | |
echo "/var/swap.img none swap sw 0 0" >> /etc/fstab | |
sysctl -w vm.swappiness=30 | |
free | |
echo "Swap created and added to /etc/fstab for boot up." | |
fi |
You may want to add this line not to lose swappiness after reboot:
echo "vm.swappiness=30" >> /etc/sysctl.conf
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Usage: