日落 says to Ubuntu 台灣社群
之前從網路上複製了一段 script,可以列出目前在 swap 的 proccess 以及資料大小,可以觀察一下是否需要 swap for file in /proc/*/status ; do awk '/VmSwap|Name/{printf $2 " " $3}END{ print ""}' $file; done | sort -k 2 -n -r | head