Skip to content

Instantly share code, notes, and snippets.

@jeanbispo
Created September 24, 2019 19:51
Show Gist options
  • Save jeanbispo/153ee13f7d39760c2497e02615784364 to your computer and use it in GitHub Desktop.
Save jeanbispo/153ee13f7d39760c2497e02615784364 to your computer and use it in GitHub Desktop.
Criar swap linux
cd / && sudo mkdir swap
sudo dd if=/dev/zero of=/swap/swapfile bs=1024 count=4000000
sudo mkswap /swap/swapfile
sudo swapon /swap/swapfile
cd /etc
sudo nano fstab
FSTAB
/swap/swapfile swap swap defaults 0 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment