Skip to content

Instantly share code, notes, and snippets.

@zengxs
Created June 28, 2019 07:47
Show Gist options
  • Save zengxs/7526298e3fa514fd863e6c06bcdbbe8d to your computer and use it in GitHub Desktop.
Save zengxs/7526298e3fa514fd863e6c06bcdbbe8d to your computer and use it in GitHub Desktop.
#!/bin/sh
sudo dd if=/dev/zero of=/swapfile bs=1M count=1024 # 1G
sudo chmod 0600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
echo /swapfile none swap sw 0 0 | sudo tee -a /etc/fstab
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment