Skip to content

Support us

Authors: fire1ce | Created: 2021-08-27 | Last update: 2022-08-02

Memory & Swap

Who Uses RAM

ps aux  | awk '{print $6/1024 " MB\t\t" $11}'  | sort -n

Who Is Using Swap Memory

grep VmSwap /proc/*/status 2>/dev/null | sort -nk2 | tail -n5

Clear Cache and Swap

echo 3 > /proc/sys/vm/drop_caches && swapoff -a && swapon -a

Comments