1. Clear PageCache only.
sync && echo 1 > /proc/sys/vm/drop_caches2. Clear dentries and inodes.sync && echo 2 > /proc/sys/vm/drop_caches3. Clear PageCache, dentries and inodes.sync && echo 3 > /proc/sys/vm/drop_caches查使用内存最多的5个进程
ps -aux | sort -k4nr | head -n 5top(然后按下M,注意大写)可以使用一下命令查使用CPU最多的5个进程
ps -aux | sort -k3nr | head -n 5top (然后按下P,注意大写)使用atop可以查看各程序内存、cpu使用情况