Create a Swap File on Linux with dd Command | Lisenet.com :: Linux | Security

We are going to use a dd command to create a swap file on a Linux system and then add it to fstab.
I’ve been using Ansible automation for so long that I forgot how to do trivial things by hand.
Create a Swap File with dd
Create a 1GB swap file, make the swap space, harden swap file permissions, and enable it.
$ sudo dd if=/dev/zero of=/swapfile bs=1024 count=1048576
$ sudo mkswap /swapfile && sudo chmod 0600 /swapfile
$ sudo swapon /swapfile
Add a Swap File to Fstab
This ensures that the swap file is used upon system boot.
$ echo “/swapfile none swap sw 0 0” | sudo tee -a /etc/fstab

This entry was posted in Linux. Bookmark the permalink. If you notice any errors, please contact us.

Latest articles

Related articles