Forked from jaredmichaelwilliams/Quickly Add 5GB Swap File
Created
March 24, 2018 09:03
-
-
Save reyo/44359cb3b9baa0f32ae6b771838a3ed1 to your computer and use it in GitHub Desktop.
Quick Add 5GB Swap File, and add to fstab
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
| dd if=/dev/zero of=/mnt/swap bs=1024 count=5242880; | |
| mkswap /mnt/swap; | |
| chown root:root /mnt/swap ; | |
| chmod 0600 /mnt/swap ; | |
| swapon /mnt/swap; | |
| echo "/mnt/swap swap swap defaults 0 0" >> /etc/fstab; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment