You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
223 B
Markdown

# Swappiness
# Clear Swap
sudo swapoff -a; sudo swapon -a
# Check swapiness
cat /proc/sys/vm/swappiness
This is recommended to be ~10, but many times it's set to 60
# Change swapiness
sudo sysctl vm.swappiness=10