HomeLinuxFind out how to Completely Disable Swap in Linux

Find out how to Completely Disable Swap in Linux


Swapping or swap area represents a bodily reminiscence web page that lives on prime of a disk partition or a particular disk file used for extending the RAM reminiscence of a system when the bodily reminiscence fills up.

Utilizing this methodology of extending RAM sources, inactive reminiscence pages are incessantly dumped into the swap space when no RAM is offered. Nonetheless, because of the spinning velocity of classical exhausting disks, swap area is manner decrease in switch speeds and entry time in comparison with RAM.

On newer machines with quick SSD exhausting disks, reserving a small partition for swapping can tremendously enhance entry time and velocity switch in comparison with classical HDD, however the velocity remains to be magnitudes decrease than RAM reminiscence.

Some recommend that the swap area ought to be set as twice the quantity of machine RAM. Nonetheless, on programs with greater than 4 GB of RAM, swap area ought to be set between 2 or 4 GB.

In case your server has ample RAM reminiscence or doesn’t require using swap area or the swapping tremendously decreases your system efficiency, it is best to contemplate disabling the swap space.

Find out how to Verify Swap Area in Linux

Earlier than truly disabling swap area, first, it’s good to visualize your reminiscence load diploma after which establish the partition that holds the swap space, by issuing the beneath free command.

# free -h 

Search for the Swap area used dimension. If the used dimension is 0B or near 0 bytes, it may be assumed that swap area will not be used intensively and might be safely disabled.

Check Swap Space
Verify Swap Area

Find out how to Verify Swap Partition in Linux

Subsequent, difficulty following the blkid command, search for TYPE="swap" line so as to establish the swap partition, as proven within the beneath screenshot.

# blkid 
Check Swap Partition Type
Verify Swap Partition Sort

Once more, difficulty the next lsblk command to go looking and establish the [SWAP] partition as proven within the beneath screenshot.

# lsblk
Search Confirm Swap Partition
Search Affirm Swap Partition

Find out how to Disable Swap in Linux

After you’ve recognized the swap partition or file, execute the beneath command to deactivate the swap space.

# swapoff /dev/mapper/centos-swap  

Or disable all swaps from /proc/swaps, which supplies a snapshot of the swap file identify.

# swapoff -a 

Run free command so as to examine if the swap space has been disabled.

# free -h
Disable Swap Partition
Disable Swap Partition

Find out how to Disable Swap Completely in Linux

To be able to completely disable swap area in Linux, open /and so on/fstab file, seek for the swap line and touch upon all the line by including a # (hashtag) register entrance of the road, as proven within the beneath screenshot.

# vi /and so on/fstab
Disable Swap Partition Permanently
Disable Swap Partition Completely

Afterward, reboot the system so as to apply the brand new swap setting or difficulty mount -a command in some instances may do the trick.

# mount -a

After the system reboot, issuing the instructions offered initially of this tutorial ought to mirror that the swap space has been fully and completely disabled in your system.

# free -h
# blkid 
# lsblk 
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments