xref: /freebsd/bin/ps/ps.1 (revision db612abe8df3355d1eb23bb3b50fdd97bc21e979)
1.\"-
2.\" Copyright (c) 1980, 1990, 1991, 1993, 1994
3.\"	The Regents of the University of California.  All rights reserved.
4.\"
5.\" Redistribution and use in source and binary forms, with or without
6.\" modification, are permitted provided that the following conditions
7.\" are met:
8.\" 1. Redistributions of source code must retain the above copyright
9.\"    notice, this list of conditions and the following disclaimer.
10.\" 2. Redistributions in binary form must reproduce the above copyright
11.\"    notice, this list of conditions and the following disclaimer in the
12.\"    documentation and/or other materials provided with the distribution.
13.\" 4. Neither the name of the University nor the names of its contributors
14.\"    may be used to endorse or promote products derived from this software
15.\"    without specific prior written permission.
16.\"
17.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27.\" SUCH DAMAGE.
28.\"
29.\"     @(#)ps.1	8.3 (Berkeley) 4/18/94
30.\" $FreeBSD$
31.\"
32.Dd August 21, 2006
33.Dt PS 1
34.Os
35.Sh NAME
36.Nm ps
37.Nd process status
38.Sh SYNOPSIS
39.Nm
40.Op Fl aCcefHhjlmrSTuvwXxZ
41.Op Fl O Ar fmt | Fl o Ar fmt
42.Op Fl G Ar gid Ns Op , Ns Ar gid Ns Ar ...
43.Op Fl M Ar core
44.Op Fl N Ar system
45.Op Fl p Ar pid Ns Op , Ns Ar pid Ns Ar ...
46.Op Fl t Ar tty Ns Op , Ns Ar tty Ns Ar ...
47.Op Fl U Ar user Ns Op , Ns Ar user Ns Ar ...
48.Nm
49.Op Fl L
50.Sh DESCRIPTION
51The
52.Nm
53utility
54displays a header line, followed by lines containing information about
55all of your
56processes that have controlling terminals.
57.Pp
58A different set of processes can be selected for display by using any
59combination of the
60.Fl a , G , p , T , t ,
61and
62.Fl U
63options.
64If more than one of these options are given, then
65.Nm
66will select all processes which are matched by at least one of the
67given options.
68.Pp
69For the processes which have been selected for display,
70.Nm
71will usually display one line per process.
72The
73.Fl H
74option may result in multiple output lines (one line per thread) for
75some processes.
76By default all of these output lines are sorted first by controlling
77terminal, then by process ID.
78The
79.Fl m , r , u ,
80and
81.Fl v
82options will change the sort order.
83If more than one sorting option was given, then the selected processes
84will be sorted by the last sorting option which was specified.
85.Pp
86For the processes which have been selected for display, the information
87to display is selected based on a set of keywords (see the
88.Fl L , O ,
89and
90.Fl o
91options).
92The default output format includes, for each process, the process' ID,
93controlling terminal, CPU time (including both user and system time),
94state, and associated command.
95.Pp
96The process file system (see
97.Xr procfs 5 )
98should be mounted when
99.Nm
100is executed, otherwise not all information will be available.
101.Pp
102The options are as follows:
103.Bl -tag -width indent
104.It Fl a
105Display information about other users' processes as well as your own.
106This will skip any processes which do not have a controlling terminal,
107unless the
108.Fl x
109option is also specified.
110This can be disabled by setting the
111.Va security.bsd.see_other_uids
112sysctl to zero.
113.It Fl c
114Change the
115.Dq command
116column output to just contain the executable name,
117rather than the full command line.
118.It Fl C
119Change the way the CPU percentage is calculated by using a
120.Dq raw
121CPU calculation that ignores
122.Dq resident
123time (this normally has
124no effect).
125.It Fl e
126Display the environment as well.
127.It Fl f
128Show commandline and environment information about swapped out processes.
129This option is honored only if the UID of the user is 0.
130.It Fl G
131Display information about processes which are running with the specified
132real group IDs.
133.It Fl H
134Show all of the
135.Em kernel visible
136threads associated with each process.
137Depending on the threading package that
138is in use, this may show only the process, only the kernel scheduled entities,
139or all of the process threads.
140.It Fl h
141Repeat the information header as often as necessary to guarantee one
142header per page of information.
143.It Fl j
144Print information associated with the following keywords:
145.Cm user , pid , ppid , pgid , sid , jobc , state , tt , time ,
146and
147.Cm command .
148.It Fl L
149List the set of keywords available for the
150.Fl O
151and
152.Fl o
153options.
154.It Fl l
155Display information associated with the following keywords:
156.Cm uid , pid , ppid , cpu , pri , nice , vsz , rss , mwchan , state ,
157.Cm tt , time ,
158and
159.Cm command .
160.It Fl M
161Extract values associated with the name list from the specified core
162instead of the currently running system.
163.It Fl m
164Sort by memory usage, instead of the combination of controlling
165terminal and process ID.
166.It Fl N
167Extract the name list from the specified system instead of the default,
168which is the kernel image the system has booted from.
169.It Fl O
170Add the information associated with the space or comma separated list
171of keywords specified, after the process ID,
172in the default information
173display.
174Keywords may be appended with an equals
175.Pq Ql =
176sign and a string.
177This causes the printed header to use the specified string instead of
178the standard header.
179.It Fl o
180Display information associated with the space or comma separated
181list of keywords specified.
182The last keyword in the list may be appended with an equals
183.Pq Ql =
184sign and a string that spans the rest of the argument, and can contain
185space and comma characters.
186This causes the printed header to use the specified string instead of
187the standard header.
188Multiple keywords may also be given in the form of more than one
189.Fl o
190option.
191So the header texts for multiple keywords can be changed.
192If all keywords have empty header texts, no header line is written.
193.It Fl p
194Display information about processes which match the specified process IDs.
195.It Fl r
196Sort by current CPU usage, instead of the combination of controlling
197terminal and process ID.
198.It Fl S
199Change the way the process time is calculated by summing all exited
200children to their parent process.
201.It Fl T
202Display information about processes attached to the device associated
203with the standard input.
204.It Fl t
205Display information about processes attached to the specified terminal
206devices.
207.It Fl U
208Display the processes belonging to the specified usernames.
209.It Fl u
210Display information associated with the following keywords:
211.Cm user , pid , %cpu , %mem , vsz , rss , tt , state , start , time ,
212and
213.Cm command .
214The
215.Fl u
216option implies the
217.Fl r
218option.
219.It Fl v
220Display information associated with the following keywords:
221.Cm pid , state , time , sl , re , pagein , vsz , rss , lim , tsiz ,
222.Cm %cpu , %mem ,
223and
224.Cm command .
225The
226.Fl v
227option implies the
228.Fl m
229option.
230.It Fl w
231Use 132 columns to display information, instead of the default which
232is your window size.
233If the
234.Fl w
235option is specified more than once,
236.Nm
237will use as many columns as necessary without regard for your window size.
238.It Fl X
239When displaying processes matched by other options, skip any processes
240which do not have a controlling terminal.
241.It Fl x
242When displaying processes matched by other options, include processes
243which do not have a controlling terminal.
244This is the opposite of the
245.Fl X
246option.
247If both
248.Fl X
249and
250.Fl x
251are specified in the same command, then
252.Nm
253will use the one which was specified last.
254.It Fl Z
255Add
256.Xr mac 4
257label to the list of keywords for which
258.Nm
259will display information.
260.El
261.Pp
262A complete list of the available keywords are listed below.
263Some of these keywords are further specified as follows:
264.Bl -tag -width lockname
265.It Cm %cpu
266The CPU utilization of the process; this is a decaying average over up to
267a minute of previous (real) time.
268Since the time base over which this is computed varies (since processes may
269be very young) it is possible for the sum of all
270.Cm %cpu
271fields to exceed 100%.
272.It Cm %mem
273The percentage of real memory used by this process.
274.It Cm flags
275The flags associated with the process as in
276the include file
277.In sys/proc.h :
278.Bl -column P_STOPPED_SINGLE 0x4000000
279.It Dv "P_ADVLOCK" Ta No "0x00001	Process may hold a POSIX advisory lock"
280.It Dv "P_CONTROLT" Ta No "0x00002	Has a controlling terminal"
281.It Dv "P_KTHREAD" Ta No "0x00004	Kernel thread"
282.It Dv "P_NOLOAD" Ta No "0x00008	Ignore during load avg calculations"
283.It Dv "P_PPWAIT" Ta No "0x00010	Parent is waiting for child to exec/exit"
284.It Dv "P_PROFIL" Ta No "0x00020	Has started profiling"
285.It Dv "P_STOPPROF" Ta No "0x00040	Has thread in requesting to stop prof"
286.It Dv "P_SUGID" Ta No "0x00100		Had set id privileges since last exec"
287.It Dv "P_SYSTEM" Ta No "0x00200	System proc: no sigs, stats or swapping"
288.It Dv "P_SINGLE_EXIT" Ta No "0x00400	Threads suspending should exit, not wait"
289.It Dv "P_TRACED" Ta No "0x00800	Debugged process being traced"
290.It Dv "P_WAITED" Ta No "0x01000	Someone is waiting for us"
291.It Dv "P_WEXIT" Ta No "0x02000		Working on exiting"
292.It Dv "P_EXEC" Ta No "0x04000		Process called exec"
293.It Dv "P_CONTINUED" Ta No "0x10000	Proc has continued from a stopped state"
294.It Dv "P_STOPPED_SIG" Ta No "0x20000	Stopped due to SIGSTOP/SIGTSTP"
295.It Dv "P_STOPPED_TRACE" Ta No "0x40000	Stopped because of tracing"
296.It Dv "P_STOPPED_SINGLE" Ta No "0x80000	Only one thread can continue"
297.It Dv "P_PROTECTED" Ta No "0x100000	Do not kill on memory overcommit"
298.It Dv "P_SIGEVENT" Ta No "0x200000	Process pending signals changed"
299.It Dv "P_JAILED" Ta No "0x1000000	Process is in jail"
300.It Dv "P_INEXEC" Ta No "0x4000000	Process is in execve()"
301.El
302.It Cm label
303The MAC label of the process.
304.It Cm lim
305The soft limit on memory used, specified via a call to
306.Xr setrlimit 2 .
307.It Cm lstart
308The exact time the command started, using the
309.Ql %c
310format described in
311.Xr strftime 3 .
312.It Cm lockname
313The name of the lock that the process is currently blocked on.
314If the name is invalid or unknown, then
315.Dq ???\&
316is displayed.
317.It Cm logname
318The login name associated with the session the process is in (see
319.Xr getlogin 2 ) .
320.It Cm mwchan
321The event name if the process is blocked normally, or the lock name if
322the process is blocked on a lock.
323See the wchan and lockname keywords
324for details.
325.It Cm nice
326The process scheduling increment (see
327.Xr setpriority 2 ) .
328.It Cm rss
329the real memory (resident set) size of the process (in 1024 byte units).
330.It Cm start
331The time the command started.
332If the command started less than 24 hours ago, the start time is
333displayed using the
334.Dq Li %l:ps.1p
335format described in
336.Xr strftime 3 .
337If the command started less than 7 days ago, the start time is
338displayed using the
339.Dq Li %a6.15p
340format.
341Otherwise, the start time is displayed using the
342.Dq Li %e%b%y
343format.
344.It Cm state
345The state is given by a sequence of characters, for example,
346.Dq Li RWNA .
347The first character indicates the run state of the process:
348.Pp
349.Bl -tag -width indent -compact
350.It Li D
351Marks a process in disk (or other short term, uninterruptible) wait.
352.It Li I
353Marks a process that is idle (sleeping for longer than about 20 seconds).
354.It Li L
355Marks a process that is waiting to acquire a lock.
356.It Li R
357Marks a runnable process.
358.It Li S
359Marks a process that is sleeping for less than about 20 seconds.
360.It Li T
361Marks a stopped process.
362.It Li W
363Marks an idle interrupt thread.
364.It Li Z
365Marks a dead process (a
366.Dq zombie ) .
367.El
368.Pp
369Additional characters after these, if any, indicate additional state
370information:
371.Pp
372.Bl -tag -width indent -compact
373.It Li +
374The process is in the foreground process group of its control terminal.
375.It Li <
376The process has raised CPU scheduling priority.
377.It Li E
378The process is trying to exit.
379.It Li J
380Marks a process which is in
381.Xr jail 2 .
382The hostname of the prison can be found in
383.Pa /proc/ Ns Ao Ar pid Ac Ns Pa /status .
384.It Li L
385The process has pages locked in core (for example, for raw
386.Tn I/O ) .
387.It Li N
388The process has reduced CPU scheduling priority (see
389.Xr setpriority 2 ) .
390.It Li s
391The process is a session leader.
392.It Li V
393The process is suspended during a
394.Xr vfork 2 .
395.It Li W
396The process is swapped out.
397.It Li X
398The process is being traced or debugged.
399.El
400.It Cm tt
401An abbreviation for the pathname of the controlling terminal, if any.
402The abbreviation consists of the three letters following
403.Pa /dev/tty ,
404or, for the console,
405.Dq Li con .
406This is followed by a
407.Ql -
408if the process can no longer reach that
409controlling terminal (i.e., it has been revoked).
410.It Cm wchan
411The event (an address in the system) on which a process waits.
412When printed numerically, the initial part of the address is
413trimmed off and the result is printed in hex, for example, 0x80324000 prints
414as 324000.
415.El
416.Pp
417When printing using the command keyword, a process that has exited and
418has a parent that has not yet waited for the process (in other words, a zombie)
419is listed as
420.Dq Li <defunct> ,
421and a process which is blocked while trying
422to exit is listed as
423.Dq Li <exiting> .
424If the arguments cannot be located (usually because it has not been set, as is
425the case of system processes and/or kernel threads) the command name is printed
426within square brackets.
427The
428.Nm
429utility first tries to obtain the arguments cached by the kernel (if they were
430shorter than the value of the
431.Va kern.ps_arg_cache_limit
432sysctl).
433The process can change the arguments shown with
434.Xr setproctitle 3 .
435Otherwise,
436.Nm
437makes an educated guess as to the file name and arguments given when the
438process was created by examining memory or the swap area.
439The method is inherently somewhat unreliable and in any event a process
440is entitled to destroy this information.
441The ucomm (accounting) keyword can, however, be depended on.
442If the arguments are unavailable or do not agree with the ucomm keyword,
443the value for the ucomm keyword is appended to the arguments in parentheses.
444.Sh KEYWORDS
445The following is a complete list of the available keywords and their
446meanings.
447Several of them have aliases (keywords which are synonyms).
448.Pp
449.Bl -tag -width ".Cm sigignore" -compact
450.It Cm %cpu
451percentage CPU usage (alias
452.Cm pcpu )
453.It Cm %mem
454percentage memory usage (alias
455.Cm pmem )
456.It Cm acflag
457accounting flag (alias
458.Cm acflg )
459.It Cm args
460command and arguments
461.It Cm comm
462command
463.It Cm command
464command and arguments
465.It Cm cpu
466short-term CPU usage factor (for scheduling)
467.It Cm etime
468elapsed running time
469.It Cm flags
470the process flags, in hexadecimal (alias
471.Cm f )
472.It Cm inblk
473total blocks read (alias
474.Cm inblock )
475.It Cm jid
476jail ID
477.It Cm jobc
478job control count
479.It Cm ktrace
480tracing flags
481.It Cm label
482MAC label
483.It Cm lim
484memoryuse limit
485.It Cm lockname
486lock currently blocked on (as a symbolic name)
487.It Cm logname
488login name of user who started the session
489.It Cm lstart
490time started
491.It Cm majflt
492total page faults
493.It Cm minflt
494total page reclaims
495.It Cm msgrcv
496total messages received (reads from pipes/sockets)
497.It Cm msgsnd
498total messages sent (writes on pipes/sockets)
499.It Cm mwchan
500wait channel or lock currently blocked on
501.It Cm nice
502nice value (alias
503.Cm ni )
504.It Cm nivcsw
505total involuntary context switches
506.It Cm nsigs
507total signals taken (alias
508.Cm nsignals )
509.It Cm nswap
510total swaps in/out
511.It Cm nvcsw
512total voluntary context switches
513.It Cm nwchan
514wait channel (as an address)
515.It Cm oublk
516total blocks written (alias
517.Cm oublock )
518.It Cm paddr
519swap address
520.It Cm pagein
521pageins (same as majflt)
522.It Cm pgid
523process group number
524.It Cm pid
525process ID
526.It Cm poip
527pageouts in progress
528.It Cm ppid
529parent process ID
530.It Cm pri
531scheduling priority
532.It Cm re
533core residency time (in seconds; 127 = infinity)
534.It Cm rgid
535real group ID
536.It Cm rgroup
537group name (from rgid)
538.It Cm rlink
539reverse link on run queue, or 0
540.It Cm rss
541resident set size
542.It Cm rtprio
543realtime priority (101 = not a realtime process)
544.It Cm ruid
545real user ID
546.It Cm ruser
547user name (from ruid)
548.It Cm sid
549session ID
550.It Cm sig
551pending signals (alias
552.Cm pending )
553.It Cm sigcatch
554caught signals (alias
555.Cm caught )
556.It Cm sigignore
557ignored signals (alias
558.Cm ignored )
559.It Cm sigmask
560blocked signals (alias
561.Cm blocked )
562.It Cm sl
563sleep time (in seconds; 127 = infinity)
564.It Cm start
565time started
566.It Cm state
567symbolic process state (alias
568.Cm stat )
569.It Cm svgid
570saved gid from a setgid executable
571.It Cm svuid
572saved UID from a setuid executable
573.It Cm tdev
574control terminal device number
575.It Cm time
576accumulated CPU time, user + system (alias
577.Cm cputime )
578.It Cm tpgid
579control terminal process group ID
580.\".It Cm trss
581.\"text resident set size (in Kbytes)
582.It Cm tsid
583control terminal session ID
584.It Cm tsiz
585text size (in Kbytes)
586.It Cm tt
587control terminal name (two letter abbreviation)
588.It Cm tty
589full name of control terminal
590.It Cm uprocp
591process pointer
592.It Cm ucomm
593name to be used for accounting
594.It Cm uid
595effective user ID
596.It Cm upr
597scheduling priority on return from system call (alias
598.Cm usrpri )
599.It Cm user
600user name (from UID)
601.It Cm vsz
602virtual size in Kbytes (alias
603.Cm vsize )
604.It Cm wchan
605wait channel (as a symbolic name)
606.It Cm xstat
607exit or stop status (valid only for stopped or zombie process)
608.El
609.Sh ENVIRONMENT
610The following environment variables affect the execution of
611.Nm :
612.Bl -tag -width ".Ev COLUMNS"
613.It Ev COLUMNS
614If set, specifies the user's preferred output width in column positions.
615By default,
616.Nm
617attempts to automatically determine the terminal width.
618.El
619.Sh FILES
620.Bl -tag -width ".Pa /boot/kernel/kernel" -compact
621.It Pa /boot/kernel/kernel
622default system namelist
623.It Pa /proc
624the mount point of
625.Xr procfs 5
626.El
627.Sh SEE ALSO
628.Xr kill 1 ,
629.Xr pgrep 1 ,
630.Xr pkill 1 ,
631.Xr w 1 ,
632.Xr kvm 3 ,
633.Xr strftime 3 ,
634.Xr mac 4 ,
635.Xr procfs 5 ,
636.Xr pstat 8 ,
637.Xr sysctl 8 ,
638.Xr mutex 9
639.Sh STANDARDS
640For historical reasons, the
641.Nm
642utility under
643.Fx
644supports a different set of options from what is described by
645.St -p1003.2 ,
646and what is supported on
647.No non- Ns Bx
648operating systems.
649.Sh HISTORY
650The
651.Nm
652command appeared in
653.At v4 .
654.Sh BUGS
655Since
656.Nm
657cannot run faster than the system and is run as any other scheduled
658process, the information it displays can never be exact.
659.Pp
660The
661.Nm
662utility does not correctly display argument lists containing multibyte
663characters.
664