ps命令

用途

显示系统进程信息

用法

  1. ps [options]

常用选项

选项有三种风格,这里是指Unix风格

(Unix,BSD,GNU LONG OPTIONS)

简单刷选类

-A, -e

显示所有进程

-N, --deselect

显示不符合刷选条件的进程

-a

显示和当前终端关联的进程

-d

显示除了进程是session leader以外的所有进程

列表刷选类

选项可以重复使用多次,多个可以使用空格或者英文逗号连接,不如 "1 2" 3,4

-C cmdlist

根据命令名列表过滤

-G grplist

根据真实组id或者组名过滤

-U userlist

根据真实的用户id或者用户名过滤

-g grplist

Select by session OR by effective group name.

Selection by session is specified by many standards, but selection by effective group is the logical behavior that several other operating systems use.

-p pidlist

根据进程id过滤

-q pidlist

根据进程id快速过滤

-s sesslist

根据会话id过滤

-t ttylist

根据tty过滤

-u userlist

Select by effective user ID (EUID) or name.

This selects the processes whose effective user name or ID is in userlist.

--ppid pidlist

根据父进程id过滤

输出格式控制类

-F

extra full format.

-O format

is like -o, but preloaded with some default columns. Identical to -o pid,format,state,tname,time,command or -o pid,format,tname,time,cmd, see -o below.

-M

Add a column of security data. Identical to Z. (for SE Linux)

-f

does full-format listing. This option can be combined with many other UNIX-style options to add additional columns. It also causes the command arguments to be printed. When used with -L,the NLWP (number of threads) and LWP (thread ID) columns will be added. See the c option, the format keyword args, and the format keyword comm.

-o format, --format format

user-defined format.

--context

Display security context format.

输出修饰类

-H

按层次结构显示进程列表

--cols n, --columns n, --width n

设置屏幕宽度

--lines n, --rows n

设置屏幕高度

--cumulative

include some dead child process data (as a sum with the parent)

--forest

ASCII art process tree

--headers

每页都输出头字段

--no-headers

不输出头字段

进程状态说明

  1. Here are the different values that the s, stat and state output specifiers (header "STAT" or "S") will display to describe the state of a process.
  2. D Uninterruptible sleep (usually IO)
  3. R Running or runnable (on run queue)
  4. S Interruptible sleep (waiting for an event to complete)
  5. T Stopped, either by a job control signal or because it is being traced.
  6. W paging (not valid since the 2.6.xx kernel)
  7. X dead (should never be seen)
  8. Z Defunct ("zombie") process, terminated but not reaped by its parent.

标准输出字段说明

懒得翻译了

  1. STANDARD FORMAT SPECIFIERS
  2. Here are the different keywords that may be used to control the output format (e.g. with option -o)
  3. or to sort the selected processes with the GNU-style --sort option.
  4. For example: ps -eo pid,user,args --sort user
  5. This version of ps tries to recognize most of the keywords used in other implementations of ps.
  6. The following user-defined format specifiers may contain spaces: args, cmd, comm, command, fname,
  7. ucmd, ucomm, lstart, bsdstart, start.
  8. Some keywords may not be available for sorting.
  9. CODE HEADER DESCRIPTION
  10. %cpu %CPU cpu utilization of the process in "##.#" format. Currently, it is the CPU time used
  11. divided by the time the process has been running (cputime/realtime ratio), expressed as
  12. a percentage. It will not add up to 100% unless you are lucky. (alias pcpu).
  13. %mem %MEM ratio of the processs resident set size to the physical memory on the machine,
  14. expressed as a percentage. (alias pmem).
  15. args COMMAND command with all its arguments as a string. Modifications to the arguments may be
  16. shown. The output in this column may contain spaces. A process marked <defunct> is
  17. partly dead, waiting to be fully destroyed by its parent. Sometimes the process args
  18. will be unavailable; when this happens, ps will instead print the executable name in
  19. brackets. (alias cmd, command). See also the comm format keyword, the -f option, and
  20. the c option.
  21. When specified last, this column will extend to the edge of the display. If ps can not
  22. determine display width, as when output is redirected (piped) into a file or another
  23. command, the output width is undefined. (it may be 80, unlimited, determined by the
  24. TERM variable, and so on) The COLUMNS environment variable or --cols option may be used
  25. to exactly determine the width in this case. The w or -w option may be also be used to
  26. adjust width.
  27. blocked BLOCKED mask of the blocked signals, see signal(7). According to the width of the field,
  28. a 32-bit or 64-bit mask in hexadecimal format is displayed. (alias sig_block, sigmask).
  29. bsdstart START time the command started. If the process was started less than 24 hours ago, the output
  30. format is " HH:MM", else it is "mmm dd" (where mmm is the three letters of the month).
  31. See also lstart, start, start_time, and stime.
  32. bsdtime TIME accumulated cpu time, user + system. The display format is usually "MMM:SS", but can be
  33. shifted to the right if the process used more than 999 minutes of cpu time.
  34. c C processor utilization. Currently, this is the integer value of the percent usage over
  35. the lifetime of the process. (see %cpu).
  36. caught CAUGHT mask of the caught signals, see signal(7). According to the width of the field, a 32 or
  37. 64 bits mask in hexadecimal format is displayed. (alias sig_catch, sigcatch).
  38. cgroup CGROUP display control groups to which the process belongs.
  39. class CLS scheduling class of the process. (alias policy, cls). Fields possible values are:
  40. - not reported
  41. TS SCHED_OTHER
  42. FF SCHED_FIFO
  43. RR SCHED_RR
  44. B SCHED_BATCH
  45. ISO SCHED_ISO
  46. IDL SCHED_IDLE
  47. ? unknown value
  48. cls CLS scheduling class of the process. (alias policy, class). Fields possible values are:
  49. - not reported
  50. TS SCHED_OTHER
  51. FF SCHED_FIFO
  52. RR SCHED_RR
  53. B SCHED_BATCH
  54. ISO SCHED_ISO
  55. IDL SCHED_IDLE
  56. ? unknown value
  57. cmd CMD see args. (alias args, command).
  58. comm COMMAND command name (only the executable name). Modifications to the command name will not be
  59. shown. A process marked <defunct> is partly dead, waiting to be fully destroyed by its
  60. parent. The output in this column may contain spaces. (alias ucmd, ucomm). See also the
  61. args format keyword, the -f option, and the c option.
  62. When specified last, this column will extend to the edge of the display. If ps can not
  63. determine display width, as when output is redirected (piped) into a file or another
  64. command, the output width is undefined. (it may be 80, unlimited, determined by the
  65. TERM variable, and so on) The COLUMNS environment variable or --cols option may be used
  66. to exactly determine the width in this case. The w or -w option may be also be used to
  67. adjust width.
  68. command COMMAND see args. (alias args, cmd).
  69. cp CP per-mill (tenths of a percent) CPU usage. (see %cpu).
  70. cputime TIME cumulative CPU time, "[dd-]hh:mm:ss" format. (alias time).
  71. egid EGID effective group ID number of the process as a decimal integer. (alias gid).
  72. egroup EGROUP effective group ID of the process. This will be the textual group ID, if it can be
  73. obtained and the field width permits, or a decimal representation otherwise.
  74. (alias group).
  75. eip EIP instruction pointer.
  76. esp ESP stack pointer.
  77. etime ELAPSED elapsed time since the process was started, in the form [[dd-]hh:]mm:ss.
  78. euid EUID effective user ID. (alias uid).
  79. euser EUSER effective user name. This will be the textual user ID, if it can be obtained and the
  80. field width permits, or a decimal representation otherwise. The n option can be used to
  81. force the decimal representation. (alias uname, user).
  82. f F flags associated with the process, see the PROCESS FLAGS section. (alias flag, flags).
  83. fgid FGID filesystem access group ID. (alias fsgid).
  84. fgroup FGROUP filesystem access group ID. This will be the textual user ID, if it can be obtained and
  85. the field width permits, or a decimal representation otherwise. (alias fsgroup).
  86. flag F see f. (alias f, flags).
  87. flags F see f. (alias f, flag).
  88. fname COMMAND first 8 bytes of the base name of the processs executable file. The output in this
  89. column may contain spaces.
  90. fuid FUID filesystem access user ID. (alias fsuid).
  91. fuser FUSER filesystem access user ID. This will be the textual user ID, if it can be obtained and
  92. the field width permits, or a decimal representation otherwise.
  93. gid GID see egid. (alias egid).
  94. group GROUP see egroup. (alias egroup).
  95. ignored IGNORED mask of the ignored signals, see signal(7). According to the width of the field,
  96. a 32-bit or 64-bit mask in hexadecimal format is displayed. (alias sig_ignore,
  97. sigignore).
  98. label LABEL security label, most commonly used for SE Linux context data. This is for the Mandatory
  99. Access Control ("MAC") found on high-security systems.
  100. lstart STARTED time the command started. See also bsdstart, start, start_time, and stime.
  101. lwp LWP lwp (light weight process, or thread) ID of the lwp being reported. (alias spid, tid).
  102. ni NI nice value. This ranges from 19 (nicest) to -20 (not nice to others), see nice(1).
  103. (alias nice).
  104. nice NI see ni. (alias ni).
  105. nlwp NLWP number of lwps (threads) in the process. (alias thcount).
  106. nwchan WCHAN address of the kernel function where the process is sleeping (use wchan if you want the
  107. kernel function name). Running tasks will display a dash (’-’) in this column.
  108. pcpu %CPU see %cpu. (alias %cpu).
  109. pending PENDING mask of the pending signals. See signal(7). Signals pending on the process are distinct
  110. from signals pending on individual threads. Use the m option or the -m option to see
  111. both. According to the width of the field, a 32-bit or 64-bit mask in hexadecimal
  112. format is displayed. (alias sig).
  113. pgid PGID process group ID or, equivalently, the process ID of the process group leader.
  114. (alias pgrp).
  115. pgrp PGRP see pgid. (alias pgid).
  116. pid PID process ID number of the process.
  117. pmem %MEM see %mem. (alias %mem).
  118. policy POL scheduling class of the process. (alias class, cls). Possible values are:
  119. - not reported
  120. TS SCHED_OTHER
  121. FF SCHED_FIFO
  122. RR SCHED_RR
  123. B SCHED_BATCH
  124. ISO SCHED_ISO
  125. IDL SCHED_IDLE
  126. ? unknown value
  127. ppid PPID parent process ID.
  128. psr PSR processor that process is currently assigned to.
  129. rgid RGID real group ID.
  130. rgroup RGROUP real group name. This will be the textual group ID, if it can be obtained and the field
  131. width permits, or a decimal representation otherwise.
  132. rip RIP 64-bit instruction pointer.
  133. rsp RSP 64-bit stack pointer.
  134. rss RSS resident set size, the non-swapped physical memory that a task has used (in kiloBytes).
  135. (alias rssize, rsz).
  136. rssize RSS see rss. (alias rss, rsz).
  137. rsz RSZ see rss. (alias rss, rssize).
  138. rtprio RTPRIO realtime priority.
  139. ruid RUID real user ID.
  140. ruser RUSER real user ID. This will be the textual user ID, if it can be obtained and the field
  141. width permits, or a decimal representation otherwise.
  142. s S minimal state display (one character). See section PROCESS STATE CODES for the
  143. different values. See also stat if you want additional information displayed.
  144. (alias state).
  145. sched SCH scheduling policy of the process. The policies SCHED_OTHER (SCHED_NORMAL), SCHED_FIFO,
  146. SCHED_RR, SCHED_BATCH, SCHED_ISO, and SCHED_IDLE are respectively displayed as
  147. 0, 1, 2, 3, 4, and 5.
  148. sess SESS session ID or, equivalently, the process ID of the session leader.
  149. (alias session, sid).
  150. sgi_p P processor that the process is currently executing on. Displays "*" if the process is
  151. not currently running or runnable.
  152. sgid SGID saved group ID. (alias svgid).
  153. sgroup SGROUP saved group name. This will be the textual group ID, if it can be obtained and the
  154. field width permits, or a decimal representation otherwise.
  155. sid SID see sess. (alias sess, session).
  156. sig PENDING see pending. (alias pending, sig_pend).
  157. sigcatch CAUGHT see caught. (alias caught, sig_catch).
  158. sigignore IGNORED see ignored. (alias ignored, sig_ignore).
  159. sigmask BLOCKED see blocked. (alias blocked, sig_block).
  160. size SZ approximate amount of swap space that would be required if the process were to dirty
  161. all writable pages and then be swapped out. This number is very rough!
  162. spid SPID see lwp. (alias lwp, tid).
  163. stackp STACKP address of the bottom (start) of stack for the process.
  164. start STARTED time the command started. If the process was started less than 24 hours ago, the output
  165. format is "HH:MM:SS", else it is " mmm dd" (where mmm is a three-letter month name).
  166. See also lstart, bsdstart, start_time, and stime.
  167. start_time START starting time or date of the process. Only the year will be displayed if the process
  168. was not started the same year ps was invoked, or "mmmdd" if it was not started the same
  169. day, or "HH:MM" otherwise. See also bsdstart, start, lstart, and stime.
  170. stat STAT multi-character process state. See section PROCESS STATE CODES for the different values
  171. meaning. See also s and state if you just want the first character displayed.
  172. state S see s. (alias s).
  173. suid SUID saved user ID. (alias svuid).
  174. suser SUSER saved user name. This will be the textual user ID, if it can be obtained and the field
  175. width permits, or a decimal representation otherwise. (alias svuser).
  176. svgid SVGID see sgid. (alias sgid).
  177. svuid SVUID see suid. (alias suid).
  178. sz SZ size in physical pages of the core image of the process. This includes text, data, and
  179. stack space. Device mappings are currently excluded; this is subject to change. See vsz
  180. and rss.
  181. thcgr THCGR display control groups to which the thread belongs.
  182. thcount THCNT see nlwp. (alias nlwp). number of kernel threads owned by the process.
  183. tid TID see lwp. (alias lwp).
  184. time TIME cumulative CPU time, "[dd-]hh:mm:ss" format. (alias cputime).
  185. tname TTY controlling tty (terminal). (alias tt, tty).
  186. tpgid TPGID ID of the foreground process group on the tty (terminal) that the process is connected
  187. to, or -1 if the process is not connected to a tty.
  188. tt TT controlling tty (terminal). (alias tname, tty).
  189. tty TT controlling tty (terminal). (alias tname, tt).
  190. ucmd CMD see comm. (alias comm, ucomm).
  191. ucomm COMMAND see comm. (alias comm, ucmd).
  192. uid UID see euid. (alias euid).
  193. uname USER see euser. (alias euser, user).
  194. user USER see euser. (alias euser, uname).
  195. vsize VSZ see vsz. (alias vsz).
  196. vsz VSZ virtual memory size of the process in KiB (1024-byte units). Device mappings are
  197. currently excluded; this is subject to change. (alias vsize).
  198. wchan WCHAN name of the kernel function in which the process is sleeping, a "-" if the process is
  199. running, or a "*" if the process is multi-threaded and ps is not displaying threads.

实践

1 显示所有进程列表,输出user,pid,start_time,state等信息

  1. [root@vm ~]# ps -e --headers -o user,pid,ppid,state,%cpu,%mem,args,bsdstart,bsdtime,comm
  2. USER PID PPID S %CPU %MEM COMMAND START TIME COMMAND
  3. root 1 0 S 0.0 0.0 /sbin/init Mar 29 0:03 init
  4. root 2 0 S 0.0 0.0 [kthreadd] Mar 29 0:00 kthreadd
  5. root 3 2 S 0.0 0.0 [migration/0] Mar 29 0:05 migration/0
  6. root 4 2 S 0.0 0.0 [ksoftirqd/0] Mar 29 0:05 ksoftirqd/0
  7. root 5 2 S 0.0 0.0 [stopper/0] Mar 29 0:00 stopper/0
  8. root 6 2 S 0.0 0.0 [watchdog/0] Mar 29 0:00 watchdog/0
  9. root 7 2 S 0.0 0.0 [migration/1] Mar 29 0:04 migration/1
  10. root 8 2 S 0.0 0.0 [stopper/1] Mar 29 0:00 stopper/1
  11. root 9 2 S 0.0 0.0 [ksoftirqd/1] Mar 29 0:05 ksoftirqd/1
  12. root 10 2 S 0.0 0.0 [watchdog/1] Mar 29 0:00 watchdog/1
  13. root 11 2 S 0.0 0.0 [events/0] Mar 29 1:41 events/0
  14. root 12 2 S 0.0 0.0 [events/1] Mar 29 0:20 events/1
  15. root 13 2 S 0.0 0.0 [events/0] Mar 29 0:00 events/0
  16. root 14 2 S 0.0 0.0 [events/1] Mar 29 0:00 events/1
  17. root 15 2 S 0.0 0.0 [events_long/0] Mar 29 0:00 events_long/0
  18. root 16 2 S 0.0 0.0 [events_long/1] Mar 29 0:00 events_long/1
  19. root 17 2 S 0.0 0.0 [events_power_ef] Mar 29 0:00 events_power_ef
  20. root 18 2 S 0.0 0.0 [events_power_ef] Mar 29 0:00 events_power_ef
  21. root 19 2 S 0.0 0.0 [cgroup] Mar 29 0:00 cgroup
  22. root 20 2 S 0.0 0.0 [khelper] Mar 29 0:00 khelper
  23. root 21 2 S 0.0 0.0 [netns] Mar 29 0:00 netns
  24. root 22 2 S 0.0 0.0 [async/mgr] Mar 29 0:00 async/mgr
  25. root 23 2 S 0.0 0.0 [pm] Mar 29 0:00 pm
  26. root 24 2 S 0.0 0.0 [sync_supers] Mar 29 0:01 sync_supers
  27. root 25 2 S 0.0 0.0 [bdi-default] Mar 29 0:00 bdi-default
  28. root 26 2 S 0.0 0.0 [kintegrityd/0] Mar 29 0:00 kintegrityd/0
  29. root 27 2 S 0.0 0.0 [kintegrityd/1] Mar 29 0:00 kintegrityd/1
  30. root 28 2 S 0.0 0.0 [kblockd/0] Mar 29 0:21 kblockd/0
  31. root 29 2 S 0.0 0.0 [kblockd/1] Mar 29 0:07 kblockd/1
  32. root 30 2 S 0.0 0.0 [kacpid] Mar 29 0:00 kacpid
  33. root 31 2 S 0.0 0.0 [kacpi_notify] Mar 29 0:00 kacpi_notify
  34. root 32 2 S 0.0 0.0 [kacpi_hotplug] Mar 29 0:00 kacpi_hotplug
  35. root 33 2 S 0.0 0.0 [ata_aux] Mar 29 0:00 ata_aux
  36. root 34 2 S 0.0 0.0 [ata_sff/0] Mar 29 0:00 ata_sff/0
  37. root 35 2 S 0.0 0.0 [ata_sff/1] Mar 29 0:00 ata_sff/1
  38. root 36 2 S 0.0 0.0 [ksuspend_usbd] Mar 29 0:00 ksuspend_usbd
  39. root 37 2 S 0.0 0.0 [khubd] Mar 29 0:00 khubd

2 输出指定命令的进程信息,比如nginx

  1. [root@vm ~]# ps -C nginx --headers -o user,pid,ppid,state,%cpu,%mem,args,bsdstart,bsdtime,comm
  2. USER PID PPID S %CPU %MEM COMMAND START TIME COMMAND
  3. root 863 782 S 0.0 0.0 nginx: master process /opt/ Mar 29 0:00 nginx
  4. 496 892 863 S 0.0 0.0 nginx: worker process Mar 29 0:02 nginx
  5. 496 893 863 S 0.0 0.0 nginx: worker process Mar 29 0:03 nginx
  6. 496 894 863 S 0.0 0.0 nginx: cache manager proces Mar 29 0:01 nginx

参考资料

【1】man ps

【2】What are “session leaders” in ps?

https://unix.stackexchange.com/questions/18166/what-are-session-leaders-in-ps

N天学习一个linux命令之ps的更多相关文章

  1. N天学习一个Linux命令之帮助命令:man

    前言 工作中每天都在使用常用的命令和非常用的命令,忘记了用法或者参数,都会bing一下,然后如此循环.一直没有真正的系统的深入的去了解命令的用法,我决定打破它.以前看到有人,每天学习一个linux命令 ...

  2. N天学习一个linux命令之kill

    用途 用于终止进程 用法 kill [-s signal|-p] [--] pid... kill -l [signal] 说明 1.默认发送信号15(请求终止进程,程序可以捕获,操作系统会杀死没有对 ...

  3. N天学习一个Linux命令之free

    用途 查看系统内存(物理/虚拟/缓存/共享)使用情况 用法 free [-b | -k | -m | -g | -h] [-o] [-s delay ] [-c count ] [-a] [-t] [ ...

  4. N天学习一个linux命令之ping

    用途 检测主机是否可到达,也就是说,目标主机是否可以联网,还可以用于检测网速.通过发送ICMP ECHO_REQUEST数据包检测. 用法 ping [options] destination 常用选 ...

  5. N天学习一个linux命令之du

    用途 统计文件或者目录占用硬盘空间大小 用法 du [OPTION] [FILE]du [OPTION] --files0-from=F 常用参数 -a, --all统计所有文件,不仅仅是目录 -b, ...

  6. N天学习一个linux命令之scp

    用途 通过ssh通道,不同主机之间复制文件 用法 scp [options] [user@host:]file1 [user2@host2:]file2 常用参数 -1使用 ssh 1协议 -2使用s ...

  7. 每天学习一个Linux命令-目录

    在工作中总会零零散散使用到各种Linux命令,从今天开始详细的学习一下linux常用命令,坚持每天一个命令,学习的主要参考资料为: 1.竹子-博客(https://www.cnblogs.com/pe ...

  8. 每天一个linux命令(53)--ps命令

    要毁掉一天,从早上开始. Linux中的ps命令是 process status 的缩写.ps 命令用来列出系统中当前运行的那些进程.ps 命令列出的是当前那些进程的快照,就是执行ps 命令的那个时刻 ...

  9. 每天一个linux命令:ps命令

      Linux中的ps命令是Process Status的缩写.ps命令用来列出系统中当前运行的那些进程.ps命令列出的是当前那些进程的快照,就是执行ps命令的那个时刻的那些进程,如果想要动态的显示进 ...

随机推荐

  1. Android基础整理

     1.使用Debug方式调试程序 2.使用LogCat方式调试程序  3.使用Toast动态显示信息 4.使用AlertDialog实现提示框.. 5.使用OptionsMenu实现选项菜单

  2. flux,redux,vuex状态集管理工具之间的区别

    一:redux和flux的区别 1)redux是flux中的一个实现 2))在redux中我们只能定义一个store,在flux中我们可以定义多个 3)在redux中,store和dispatch都放 ...

  3. Vue.js经典开源项目汇总-前端参考资源

    Vue.js经典开源项目汇总 原文链接:http://www.cnblogs.com/huyong/p/6517949.html Vue是什么? Vue.js(读音 /vjuː/, 类似于 view) ...

  4. 【Leetcode】115. Distinct Subsequences

    Description: Given two string S and T, you need to count the number of T's subsequences appeared in ...

  5. Java系列学习(九)-多态

    1.final关键字 (1)最终的意思, 可以修饰类,方法,变量 (2)特点: A:它修饰的类,不能被继承 B:它修饰的方法,不能被重写(覆盖) C:它修饰的变量,这个变量其实是一个常量 [扩展] ① ...

  6. iOS - UITableView 多选功能实现

    :自定义Cell中的代码 #import <UIKit/UIKit.h> @interface TestCell : UITableViewCell @property(nonatomic ...

  7. (转)在 vue-cli 脚手架中引用 jQuery、bootstrap 以及使用 sass、less 编写 css [vue-cli配置入门]

    写在前面: 本文是vue-手摸手教你使用vue-cli脚手架-详细步骤图文解析之后,又一篇关于vue-cli脚手架配置相关的文章,因为有些文章步骤不够清晰,当时我引入JQuery.bootstrap的 ...

  8. Hibernate 延迟加载剖析与代理模式应用

    本文来源于:http://www.ibm.com/developerworks/cn/java/j-lo-hibernatelazy/#icomments

  9. [Windows Server 2003] 安装IIS6.0及FTP

    ★ 欢迎来到[护卫神·V课堂],网站地址:http://v.huweishen.com★ 护卫神·V课堂 是护卫神旗下专业提供服务器教学视频的网站,每周更新视频.★ 本节我们将带领大家:安装IIS6. ...

  10. docloud后台管理项目(前端篇)

    以下内容与主题无关,如果不想看可以直接忽视 !--忽视开始--! 给大家推荐一款强大的编辑器,那就是集响应快.体验好.逼格高.功能丰富为一体的sublime text 3.它除了以上特点,还有一个最重 ...