1、使用命令查使用内存最多的K个进程
1、 top命令
[root@hadoop102 ~] top -M
2、free命令
[root@hadoop102 ~] free -m
3、ps -aux 命令
ps -aux | sort -k4nr | head -8
2、使用命令查使用CPU最多的K个进程
1、 top命令
[root@hadoop102 ~] top -P
3、ps -aux 命令
ps -aux | sort -k3nr | head -8