Difference between revisions of "Swap space"

From UVOO Tech Wiki
Jump to navigation Jump to search
 
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
 
## Clear swap

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