Table of Contents

Swap Files

General Information

Swap can be increased by resizing partitions, adding new partitions formatted as swap, or by creating swap files. Swap files are useful if you need to utilize existing volumes and cannot resize the swap partition.

Checklist


Create a Swap File with DD

Create a block file called “swapfile” in /home/ that is 1GB.

dd if=/dev/zero of=/home/swapfile bs=1024 count=1048576

Explanation:

Format the File

mkswap /home/swapfile

Enable the Swap

swapon /home/swapfile

Verify Swap is Used

swapon -s
 
Filename				Type		Size	Used	Priority
/dev/mapper/vgroot-lvswap               partition	4194300	124872	-1
/home/swapfile                          file		1048572	0	-2

Enable this Swap File After a Reboot

Edit /etc/fstab and add:

/home/swapfile    none    swap   sw    0    0