linux ps aux 命令详解

命令 ps aux

image.png
  • USER:该 process 属于哪个使用者帐号的?
  • PID :该 process 的进程识别码。
  • %CPU:该 process 使用掉的 CPU 资源百分比;
  • %MEM:该 process 所占用的实体内存百分比;
  • VSZ :该 process 使用掉的虚拟内存量 (Kbytes)
  • RSS :该 process 占用的固定的内存量 (Kbytes)
  • TTY :该 process 是在那個终端上面运作
  • STAT:该进程目前的状态 (R/S/T/Z)
  • START:该 process 被触发启动的时间;
  • TIME :该 process 实际使用 CPU 运行的时间。
  • COMMAND:该程序的实际指令为何?

你可能感兴趣的:(linux ps aux 命令详解)