Difference between revisions of "Swap space"

From UVOO Tech Wiki
Jump to navigation Jump to search
(Created page with "Linux ``` free -m swapoff -a # wait about 30 seconds swapon -a ```")
 
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
Linux
+
# Linux
 +
 
 +
## Disable swap
 +
 
 +
# Disable swap immediately
 +
sudo swapoff -a
 +
 
 +
# Comment out or remove any swap entries from /etc/fstab to persist on reboot
 +
sudo sed -i.bak '/\bswap\b/s/^/#/' /etc/fstab
 +
 
 +
## Clear swap
 
```
 
```
 
free -m  
 
free -m  
Line 5: Line 15:
 
# wait about 30 seconds
 
# wait about 30 seconds
 
swapon -a
 
swapon -a
 +
```
 +
 +
## Check swappiness
 +
```
 +
sysctl -a | grep swap
 +
vm.swappiness = 10
 
```
 
```

Latest revision as of 21:03, 1 August 2026

Linux

Disable swap

Disable swap immediately

sudo swapoff -a

Comment out or remove any swap entries from /etc/fstab to persist on reboot

sudo sed -i.bak '/\bswap\b/s/^/#/' /etc/fstab

Clear swap

free -m 
swapoff -a
# wait about 30 seconds
swapon -a

Check swappiness

sysctl -a | grep swap
vm.swappiness = 10