Swap space

From UVOO Tech Wiki
Revision as of 21:03, 1 August 2026 by Busk (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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