【Linux系列(CPU内存定位性能问题)】学向勤中得,萤窗万卷书。这篇文章主要讲述Linux系列:CPU内存定位性能问题相关的知识,希望能为你提供帮助。
# CPU使用前N的进程列表
ps -aeo pcpu,user,pid,cmd | sort -nr | head -20
# 内存使用前N的进程列表
ps -axo %mem,euser,pid,cmd | sort -nr | head -20
推荐阅读
- Linux系列(并发与并行的区别)
- Linux系列(sudo免密用户授权)
- Linux系列(grep过滤awk拆分sed替换的使用方法与区别)
- Linux系列(查看并杀死僵尸进程,自动告警方法)
- Linux系列(查看对比两个文件的差别)
- Linux系列( passwd和shadow文件说明)
- Linux系列(查看用户所属id群组)
- dolphinscheduler调度中执行python报错的处理过程
- 微服务 - 分布式事务 - 2PC3PC