Skip to content

Instantly share code, notes, and snippets.

@neolite
Forked from li9ht/create-swap
Last active August 29, 2015 14:12
Show Gist options
  • Select an option

  • Save neolite/09fd5883ea26e7ce3d0d to your computer and use it in GitHub Desktop.

Select an option

Save neolite/09fd5883ea26e7ce3d0d to your computer and use it in GitHub Desktop.
#!/bin/sh
cd /var
touch swap.img
chmod 600 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
chmod +x to file
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment