Created
July 13, 2016 09:25
-
-
Save jsleetw/8a0d3b059cba20fc785ea5845cde4ae7 to your computer and use it in GitHub Desktop.
make swap on ubuntu
This file contains hidden or 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
sudo dd if=/dev/zero of=/var/swapfile bs=1M count=2048 && | |
sudo chmod 600 /var/swapfile && | |
sudo mkswap /var/swapfile && | |
echo /var/swapfile none swap defaults 0 0 | sudo tee -a /etc/fstab && | |
sudo swapon -a |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment