查看linux占用內存/CPU最多的進程
可以使用一下命令查使用內存最多的10個進程
ps -aux | sort -k4nr | head -n 10
可以使用一下命令查使用CPU最多的10個進程
ps -aux | sort -k3nr | head -n 10
分類:
Linux
