Extend Swap Space using Swap file in Linux
There are some scenarios where our Linux box is running out of swap space so in that case we can extend the swap space using swap partition but due to unavailability of free partitions on the disk, we are unable to extend it.
So in such cases we can extend or increase swap space using a swap file
Below are the Steps to extend Swap Space using Swap File in Linux
Lets first check the size of existing swap space / partition using the command like ‘free -m‘ and ‘swapon -s‘
In my case size of swap partition is 2 GB. So we will be extending swap space by 1 GB.
Step:1 Create a swap file of size 1 GB using below dd Command
Replace the value of ‘bs‘ and ‘count‘ according your requirement.
Step:2 Secure the swap file with permissions 644.
Step:3 Enable the Swap Area on the file (swap_file)
Use mkswap command to enable swap area
Step:4 Add the swap file entry in the fstab file
Add the below entry in the fstab file so that swap file become persistent across every reboot.
Step:5 Enable the swap file using ‘mkswap on’ command.
Step:6 Now verify the swap space
Note: To disable the swap file for any troubleshooting point of view, use swapoff command as shown below and to re-enable swap file then use swapon command as shown in step5.
0 comments:
Post a Comment