带字段头查看进程:
1 |
ps aux | head -1;ps aux |grep xxx |
USER 用户名
%CPU 进程占用的CPU百分比
%MEM 占用内存的百分比
VSZ 该进程使用的虚拟內存量(KB)
RSS 该进程占用的物理內存量(KB)
STAT 进程的状态
START 该进程被触发启动时间
TIME 该进程实际使用CPU运行的时间
查看进程的运行时间
1 |
ps -eo pid,user,comm,lstart,etime | grep xxx |
pid:进程ID
user:用户
comm:进程名
lstart:开始时间
etime:运行时间