Disable swap on linux

How can I turn off swap permanently?

Swap makes my system all sluggish and turning it off makes everything smoother. I have 3.5 GB of RAM. I know how to turn swap off by entering sudo swapoff -a in the terminal, but that’s just for the current session, because after a reboot swap turns itself back on. Is there any way to turn swap off permanently?

Yes it is, but it still can be used. I have a little script that mounts the swap partition when the system goes into hibernation and un-mounts it when it comes back. The swap file doesn’t need to be active in the meantime.

@user264467: it is quite counterintuitive to leave swap enabled just to disable it on every reboot, it is much cleaner to disable it permamently.

6 Answers 6

May I suggest a safer approach? You never know when swap can save you from crashing. While swapping does indeed slow down your computer, if you use a program that eats up all your RAM, having the ability to swap can save you from a hard reboot. When the computer starts swapping, you’ll notice and be able to kill the offending application.

So, instead of disabling swap altogether, just make sure your OS swaps very rarely. This is controlled by the vm.swappiness setting in /etc/sysctl.conf . Ubuntu’s default setting is 60 if I remember correctly which is too much for most situations and will cause you to start swapping even while RAM is still available. If you reduce this value, you will be able to keep the safety line of swap while only using it for emergencies. So, open the file:

If that is still too much, change the 10 to 1. Now, after you restart, you will only swap when absolutely necessary and you can simply forget about it.

Источник

How to Permanently Disable Swap Partition in Linux

Swapping or swap space represents a physical memory page that lives on top of a disk partition or a special disk file used for extending the RAM memory of a system when the physical memory fills up.

Using this method of extending RAM resources, inactive memory pages are frequently dumped into the swap area when no RAM is available. However, due to the spinning speed of classical hard disks, swap space is way lower in transfer speeds and access time compared to RAM.

Читайте также:  Red hat linux gpl

On newer machines with fast SSD hard disks, reserving a small partition for swapping can greatly improve access time and speed transfer compared to classical HDD, but the speed is still magnitudes lower than RAM memory.

Some suggest that the swap space should be set as twice the amount of machine RAM. However, on systems with more than 4 GB of RAM, swap space should be set between 2 or 4 GB.

In case your server has sufficient RAM memory or does not require the use of swap space or the swapping greatly decreases your system performance, you should consider disabling the swap area.

How to Check Swap Space in Linux

Before actually disabling swap space, first, you need to visualize your memory load degree and then identify the partition that holds the swap area, by issuing the below free command.

Look for the Swap space used size. If the used size is 0B or close to 0 bytes, it can be assumed that swap space is not used intensively and can be safely disabled.

Check Swap Space

How to Check Swap Partition in Linux

Next, issue following the blkid command, look for TYPE=»swap» line in order to identify the swap partition, as shown in the below screenshot.

Check Swap Partition Type

Again, issue the following lsblk command to search and identify the [SWAP] partition as shown in the below screenshot.

Search Confirm Swap Partition

How to Disable Swap in Linux

After you’ve identified the swap partition or file, execute the below command to deactivate the swap area.

# swapoff /dev/mapper/centos-swap

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

Run free command in order to check if the swap area has been disabled.

Disable Swap Partition

How to Disable Swap Permanently in Linux

In order to permanently disable swap space in Linux, open /etc/fstab file, search for the swap line and comment on the entire line by adding a # (hashtag) sign in front of the line, as shown in the below screenshot.

Disable Swap Partition Permanently

Afterward, reboot the system in order to apply the new swap setting or issue mount -a command in some cases might do the trick.

After the system reboot, issuing the commands presented at the beginning of this tutorial should reflect that the swap area has been completely and permanently disabled in your system.

Читайте также:  Чем открыть ini linux

You might also like:

I’am a computer addicted guy, a fan of open source and linux based system software, have about 4 years experience with Linux distributions desktop, servers and bash scripting.

Each tutorial at TecMint is created by a team of experienced Linux system administrators so that it meets our high-quality standards.

Delete Huge Files in Linux

Parted Command in Linux

TLDR Man Pages for Linux Commands

apt-get Command Examples

Ubuntu apt-cache Commands

apt Command Examples

8 thoughts on “How to Permanently Disable Swap Partition in Linux”

I’ve been told that “swap space” is used during SUSPEND operations. I welcome someone to offer a robust explanation. It is important for road warriors and any who rely on laptop portability. During “sleep” [suspend to ram] current runtime details get written to swap before putting things on hold. During “hibernate” [suspend to disk] the majority of the system state gets written to swap before power off. Reply

The “free -h” commands must be executed when the system is under heavy load. Otherwise, it does not provide the information necessary to determine whether a swap partition or space is needed. When executed on an idling system, the command will only tell you the size of the swap partition and that it is not being used. It’s like running the “top” command on an idling system to see the CPU Load. It will show the CPU Load to be negligible. I agree with S. Daniels on the use of GParted. It not only provides a visual representation of your disks but also can delete your swap partition and recover that space by moving and/or resizing other partitions. Using the command line to accomplish your tasks may be ‘leet’ and cool but it is also dangerous to the health of your system. Using GParted prevents misspelling or use of incorrect CLI commands, as well as the use of incorrect options which can result in making the drive unusable. Reply

These instructions are rather outdated for any linux with a desktop:MATE, xfce, Gnome or KDE/Plasma. Firstly, the program Gparted very nicely displays swap size, location and UUID. “blkid”, especially on a dual-boot or system with multiple OSes is just going to display a lot of confusing and unhelpful entries. The KDE partitioner is inferior, but adequate. The centos-swap is fairly specific to CentOS Linux, this should be explained in the article. A swap file can also be used in place of a dedicated partition, this should also be mentioned. “Vi” is very much overkill for editing fstab. “Vim” is easier than “vi” for newbies in every case, and “pico /etc/fstab” or “nano /etc/fstab” are more appropriate here. Finally, for José , 30GB is seriously wrong. I suspect he somehow changed a data or system partition into a swap partition. He can “manage flags in Gparted” to inspect it for contents. I’m just a hobbyist, but have nearly 20 years experience, since a Debian bootable CD, the first Linux installation disk that did not need a floppy to boot, came out in 2000. Reply

Читайте также:  Rtx 3070 linux drivers

Источник

How to Disable Swap in Linux

In scenarios like changing the swap size, you should disable the swap first. This quick tutorial shows the steps for disabling swap in Linux.

You may encounter a scenario where you need to disable the swap in Linux. Suppose you want to change the swap size. You should disable it before making any changes.

If for some reasons, you decided to disable swap in Linux, this tutorial shows you the steps to do it.

There are two kinds of swap space in Linux:

A system can have either of the swap partition or swap file or both. You can check active swap using command:

However, more reliable information can be found in /etc/fstab file that shows all the swap on your system, active or inactive.

Check Swap in fstab

Now that you know how to locate your swap file or partition, let’s see how to disable it.

Disable swap in Linux

If you want to disable a specific swap file or partition, provide its path like this:

sudo swapoff /dev/nvme0n1p2

An easier way is to disable all the active swap on your system like this:

If you check for active swap again using swapon –show command, you won’t see any swap anymore.

Re-enable swap in Linux

If you want to reactivate a disabled swap space, you can use the swapon command like this:

Or you can enable all the available swap space using this command:

Deleting swap space

If you want to delete the swap partition or file, you’ll have to first disable it. You just saw the steps for disabling it.

Now, if you have a swap file, deleting it is the same as removing any file in Linux.

sudo rm path_to_swap_file

If you have a swap partition, you can delete the partition using fdisk command.

The important part is that you should also remove the entry for the deleted swap file or partition from the /etc/fstab file.

I hope you found this quick little tutorial helpful in handling swap space to your Linux system.

Источник

Оцените статью
Adblock
detector