tiwi islandaxsagcor c是什么意思

Linux and Unix ps command help and examples
You are here:
Linux and Unix ps command
Quick links
Reports a snapshot of the status of currently running .
ps [options]
Description
On every -like , the process status command (ps) displays information about active processes. Every operating system's version of ps is slightly different, so consult your own documentation for specific options.
This documentation describes a version of ps common to many distributions of . It accepts several kinds of options:
UNIX options, which may be grouped and must be preceded by a dash ("-").
options, which may be grouped and must not be used with a dash.
long options, which are preceded by two dashes ("--").
Options of different types may be freely mixed, but might cause conflicts. There are some synonymous options, which are functionally identical, due to the many standards and ps implementations that ps is compatible with.
Note that "ps -aux" is different than "ps aux". The
and UNIX standards require that "ps -aux" print all processes
named "x", as well as printing all processes that would be selected by the -a option. If the user named "x" does not exist, ps may interpret the command as "ps aux" instead and print a warning. This behavior is intended to aid in the transitioning of legacy scripts, but it is subject to change, and thus should not be relied upon.
By default, ps selects all processes with the same effective user ID (euid=EUID) as the current user and associated with the same terminal as the invoker. It displays the process ID (pid=PID), the terminal associated with the process (tname=TTY), the cumulated
time in [DD-]hh:mm:ss format (time=TIME), and the
name (ucmd=CMD). Output is unsorted by default.
The use of BSD-style options will add process state (stat=STAT) to the default display and show the command
(args=COMMAND) instead of the executable name. You can override this with the PS_FORMAT . The use of BSD-style options will also change the process selection to include processes on other terminals (TTYs) t alternately, this may be described as setting the selection to be the set of all processes filtered to exclude processes owned by other users or not on a terminal. These effects are not considered when options are described as being "identical" below, so -M will be considered identical to Z and so on.
Except as described below, process selection options are additive. The default selection is discarded, and then the selected processes are added to the set of processes to be displayed. A process will thus be shown if it meets any of the given selection criteria.
Options: Simple Process Selection
Lift the BSD-style "only yourself" restriction, which is imposed upon the set of all processes when some BSD-style (without "-") options are used or when the ps personality setting is BSD-like. The set of processes selected in this manner is in addition to the set of processes selected by other means. An alternate description is that this option causes ps to list all processes with a
(), or to list all processes when used together with the x option.
Select all processes. Identical to -e.
Select all processes except both session leaders and processes not associated with a terminal.
Select all processes except session leaders.
--deselect
Select all processes except those that fulfill the specified conditions (negates the selection). Identical to -N.
Select all processes. Identical to -A.
Really all processes, even session leaders. This flag is obsolete and may be discontinued in a future release. It is normally implied by the a flag, and is only useful when operating in the
personality.
Select all processes except those that fulfill the specified conditions (negates the selection). Identical to --deselect.
Select all processes associated with this terminal. Identical to the t option without any argument.
Restrict the selection to only running processes.
Lift the BSD-style "must have a tty" restriction, which is imposed upon the set of all processes when some BSD-style (without "-") options are used or when the ps personality setting is BSD-like. The set of processes selected in this manner is in addition to the set of processes selected by other means. An alternate description is that this option causes ps to list all processes owned by you (same EUID as ps), or to list all processes when used together with the a option.
Options: Process Selection By List
These options accept a single argument in the form of a blank-separated or comma-separated list, and they can be used multiple times. For example:
ps -p "1 2" -p 3,4
...is a valid command.
Options which select processes by list are as follows:
Identical to "--pid 123".
Identical to "--pid 123".
-C cmdlist
Select by command name. This selects the processes whose executable name is given in cmdlist.
-G grplist
Select by real group ID (RGID) or name. This selects the processes whose real group name or ID is in the grplist list. The real group ID identifies the group of the user who created the process.
-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. This ps will select by session when the list is completely numeric (as sessions are). Group ID numbers will work only when some group names are also specified. See the -s and --group options.
--Group grplist
Select by real group ID (RGID) or name. Identical to -G.
--group grplist
Select by effective group ID (EGID) or name. This selects the processes whose effective group name or ID is in grouplist. The effective group ID describes the group whose file access
are used by the process. The -g option is often an alternative to --group.
Select by process ID. Identical to -p and --pid.
-p pidlist
Select by PID. This selects the processes whose process ID numbers appear in pidlist. Identical to p and --pid.
--pid pidlist
Select by process ID. Identical to -p and p.
--ppid pidlist
process ID. This selects the processes with a parent process ID in pidlist. That is, it selects processes that are children of those listed in pidlist.
-s sesslist
Select by session ID. This selects the processes with a session ID specified in sesslist.
--sid sesslist
Select by session ID. Identical to -s.
Select by tty. Nearly identical to -t and --tty, but can also be used with an empty ttylist to indicate the terminal associated with ps. Using the T option is considered cleaner than using t with an empty ttylist.
-t ttylist
Select by tty. This selects the processes associated with the terminals given in ttylist. Terminals (ttys, or screens for text output) can be specified in several forms: /dev/ttyS1, ttyS1, S1. A plain "-" may be used to select processes not attached to any terminal.
--tty ttylist
Select by terminal. Identical to -t and t.
U userlist
Select by effective user ID (EUID) or name. This selects the processes whose effective user name or ID is in userlist. The effective user ID describes the user whose file access permissions are used by the process. Identical to -u and --user.
-U userlist
Select by real user ID (RUID) or name. It selects the processes whose real user name or ID is in the userlist list. The real user ID identifies the user who created the process.
-u userlist
Select by effective user ID (EUID) or name. This selects the processes whose effective user name or ID is in userlist.
The effective user ID describes the user whose file access permissions are used by the process. Identical to U and --user.
--User userlist
Select by real user ID (RUID) or name. Identical to -U.
--user userlist
Select by effective user ID (EUID) or name. Identical to -u and U.
Options: Output Format Control
These options are used to choose the information displayed by ps. The output may differ from version to version.
Show different scheduler information for the -l option.
Display security context format (when using SE Linux).
Do 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 ) and LWP (thread ID) columns will be added. See the c option, the format keyword args, and the format keyword comm.
Extra full format. See the -f option, which -F implies.
--format format
user-defined format. Identical to -o and o.
BSD job control format.
Jobs format.
Display BSD long format.
Long format. The -y option is often useful with this.
Add a column of security data. Identical to Z (for SE Linux).
is preloaded o (overloaded). The BSD O option can act like -O (user-defined output format with some common fields predefined) or can be used to specify
are used to determine the behavior of this option. To ensure that the desired behavior is obtained (sorting or formatting), specify the option in some other way (e.g. with -O or --sort). When used as a formatting option, it is identical to -O, with the BSD personality.
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.
Specify user-defined format. Identical to -o and --format.
User-defined format. format is a single argument in the form of a blank-separated or comma-separated list, which offers a way to specify individual output columns. The recognized keywords are described in the
section below. Headers may be renamed ("ps -o pid,ruser=RealUser -o comm=Command") as desired. If all column headers are empty ("ps -o pid= -o comm=") then the header line will not be output. Column width will increase as nee this may be used to widen up columns such as WCHAN ("ps -o pid,wchan=WIDE- WCHAN-COLUMN -o comm"). Explicit width control ("ps opid,wchan:42,cmd") is offered too. The behavior of "ps -o pid=X,comm=Y" var output may be one column named "X,comm=Y" or two columns named "X" and "Y". Use multiple -o options when in doubt. Use the PS_FORMAT environment variable to specify
DefSysV and DefBSD are macros that may be used to choose the default UNIX or BSD columns.
Display signal format.
Display user-oriented format.
D show rss in place of addr. This option can only be used with -l.
Add a column of security data. Identical to -M (for SE Linux).
Options: Output Modifiers
Show the true command name. This is derived from the name of the executable file, rather than from the argv value. Command arguments and any modifications to them are thus not shown. This option effectively turns the args format keyword into the comm it is useful with the -f format option and with the various BSD-style format options, which all normally display the command arguments. See the -f option, the format keyword args, and the format keyword comm.
Set screen width.
--columns n
Set screen width.
--cumulative
Include some dead child process data (as a sum with the parent).
Show the environment after the command.
process hierarchy (as many trees, also referred to as a "forest").
ASCII art process tree.
No header. (or, one header per screen in the BSD personality). The h option is problematic. Standard BSD ps uses this option to print a header on each page of output, but older Linux ps uses this option to totally disable the header. Linux ps follows the standard usage of not printing the header unless the BSD personality has been selected, in which case it prints a header on each page of output. Regardless of the current personality, you can use the long options --headers and --no-headers to enable printing headers each page or disable headers entirely, respectively.
Show process hierarchy (forest).
Repeat header lines, one per page of output.
Specify sorting order. Sorting syntax is "[+|-]key[,[+|-]key[,...]]". Choose a multi-letter key from the
section. The "+" is optional since default direction is increasing numerical or lexicographic order. Identical to --sort.
ps jaxkuid,-ppid,+pid
ps axk comm o comm,args
ps kstart_time -ef
Set screen height.
-n namelist
Set namelist file. Identical to N. The namelist file is needed for a proper WCHAN display, and must match the current Linux
exactly for correct output. Without this option, the default search
for the namelist is:
$PS_SYSMAP
$PS_SYSTEM_MAP
/proc/*/wchan
/boot/System.map-$(uname -r)
/boot/System.map
/lib/modules/$(uname -r)/System.map
/usr/src/linux/System.map
/System.map
Numeric output for WCHAN and USER (including all types of UID and GID).
N namelist
Specify namelist file. Identical to -n; see -n, above.
--no-headers
Print no header line at all. --no-heading is an alias for this option.
Sorting order (overloaded). The BSD O option can act like -O (user-defined output format with some common fields predefined) or can be used to specify sort order. Heuristics are used to determine the behavior of this option. To ensure that the desired behavior is obtained (sorting or formatting), specify the option in some other way (e.g. with -O or --sort).
For sorting, obsolete BSD O option syntax is "O[+|-]k1[,[+|-]k2[,...]]". It orders the processes listing according to the multilevel sort specified by the sequence of one-letter short keys k1,k2, ... described in the
section below. The "+" is currently optional, merely re-iterating the default direction on a key, but may help to distinguish an O sort from an O format. The "-" reverses direction only on the key it precedes.
Set screen height.
Sum up some information, such as CPU usage, from dead child processes into their parent. This is useful for examining a system where a parent process repeatedly
off short-lived children to do work.
--sort spec
Specify sorting order. Sorting syntax is "[+|-]key[,[+|-]key[,...]]". Choose a multi-letter key from the
section. The "+" is optional since default direction is increasing numerical or lexicographic order. Identical to k. For example: "ps jax --sort=uid, -ppid,+pid"
Wide output. Use this option twice for unlimited width.
Wide output. Use this option twice for unlimited width.
Set screen width.
Options: Thread Display
Show threads as if they were processes.
Show threads, possibly with LWP and NLWP columns.
Show threads after processes.
Show threads after processes.
Show threads, possibly with SPID column.
Options: Displaying Other Information
--help section
Print a help message. The section argument can be one of simple, list, output, threads, misc or all. The argument can be shortened to one of the underlined letters as in: s|l|o|t|m|a.
List all format specifiers.
Print the procps-ng version.
Print the procps-ng version.
Print the procps-ng version.
ps works by reading the virtual files in /proc. ps does not need to be
kmem or have any
to run. Do not give this ps any special permissions.
This ps needs access to namelist data for proper WCHAN display. For kernels prior to 2.6, the System.map file must be installed.
CPU usage is currently expressed as the percentage of time spent running during the entire lifetime of a process. This is not ideal, and it does not conform to the standards that ps otherwise conforms to. CPU usage is unlikely to add up to exactly 100%.
The SIZE and RSS fields don't count some parts of a process including the page tables, kernel stack, struct thread_info, and struct task_struct. This is usually at least 20 KiB of
that is always resident. SIZE is the virtual size of the process (code+data+stack).
Processes marked &defunct& are dead processes (so-called "zombies") that remain because their parent has not destroyed them properly. These processes will be destroyed by
if the parent process exits.
If the length of the username is greater than the length of the display column, the numeric user ID is displayed instead.
Process Flags
The sum of these values is displayed in the "F" column, which is provided by the flags output specifier:
forked but didn't exec
privileges
Process State Codes
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:
uninterruptible sleep (usually IO)
running or runnable (on run queue)
interruptible sleep (waiting for an event to complete)
stopped, either by a job control signal or because it is being traced
paging (not valid since the 2.6.xx kernel)
dead (should never be seen)
defunct ("zombie") process, terminated but not reaped by its parent
For BSD formats and when the stat keyword is used, additional characters may be displayed:
high-priority (not nice to other users)
low-priority (nice to other users)
has pages locked into memory (for real-time and custom IO)
is a session leader
is multi-threaded (using CLONE_THREAD, like NPTL pthreads do)
is in the foreground process group
Obsolete Sort Keys
These keys are used by the BSD O option (when it is used for sorting). The GNU --sort option doesn't use these keys, but the specifiers described below in the
section. Note that the values used in sorting are the internal values ps uses and not the "cooked" values used in some of the output format fields (e.g. sorting on tty will sort into device number, not according to the terminal name displayed). Pipe ps output into the
command if you want to sort the cooked values.
description
simple name of executable
CPU utilization
flags as in long format F field
process group ID
controlling tty process group ID
cumulative user time
cumulative system time
number of minor page faults
number of major page faults
cumulative minor page faults
cumulative major page faults
session ID
process ID
parent process ID
resident set size
resident pages
memory size in
amount of shared pages
the device number of the controlling tty
start_time
time process was started
user ID number
total VM size in KiB
kernel scheduling priority
AIX Format Descriptors
ps supports AIX format descriptors, which work somewhat like the formatting codes of . For example, the normal default output can be produced with this:
ps -eo "%p %y %x %c"
AIX Format Descriptors are as follows:
Standard Format Specifiers
Here are the different keywords that may be used to control the output format (e.g. with option -o) or to sort the selected processes with the GNU-style --sort option.
For example: "ps -eo pid,user,args --sort user".
ps tries to recognize most of the keywords used in other implementations of ps.
The following user-defined format specifiers may contain spaces:
Some keywords may not be available for sorting.
description
CPU utilization of the process in "##.#" format. Currently, it is the CPU time used divided by the time the process has been running (cputime/realtime ratio), expressed as a percentage. It will not add up to 100% unless you are lucky. (alias: pcpu).
ratio of the process's resident set size to the physical memory on the machine, expressed as a percentage. (alias: pmem).
command with all its arguments as a string. Modifications to the arguments may be shown. The output in this column may contain spaces. A process marked &defunct& is partly dead, waiting to be fully destroyed by its parent. Sometimes the process arguments when this happens, ps will instead print the executable name in brackets. (alias: cmd, command). See also the comm format keyword, the -f option, and the c option. When specified last, this column will extend to the edge of the display. If ps can not determine display width, as when output is redirected (piped) into a file or another command, the output width is undefined (it may be 80, unlimited, determined by the TERM variable, and so on). The COLUMNS environment variable or --cols option may be used to exactly determine the width in this case. The w or -w option may be also be used to adjust width.
mask of the blocked signals, see . According to the width of the field, a 32 or 64-bit mask in hexadecimal format is displayed. (alias: sig_block, sigmask).
time the command started. If the process was started less than 24 hours ago, the output format is " HH:MM", else it is " Mmm:SS" (where Mmm is the three letters of the month). See also lstart, start, start_time, and stime.
accumulated CPU time, user + system. The display format is usually "MMM:SS", but can be shifted to the right if the process used more than 999 minutes of CPU time.
processor utilization. Currently, this is the integer value of the percent usage over the lifetime of the process. (see %cpu).
mask of the caught signals, see . According to the width of the field, a 32 or 64 bits mask in hexadecimal format is displayed. (alias: sig_catch, sigcatch).
display control groups to which the process belongs.
scheduling class of the process. (alias: policy, cls). Field's possible values are:
not reported
SCHED_OTHER
SCHED_FIFO
SCHED_BATCH
SCHED_IDLE
unknown value
scheduling class of the process. (alias: policy, class). Field's possible values are the same as for class, listed above.
see args. (alias: args, command).
command name (only the executable name). Modifications to the command name will not be shown. A process marked &defunct& is partly dead, waiting to be fully destroyed by its parent. The output in this column may contain spaces. (alias: ucmd, ucomm). See also the args format keyword, the -f option, and the c option.
When specified last, this column will extend to the edge of the display. If ps can not determine display width, as when output is redirected (piped) into a file or another command, the output width is undefined (it may be 80, unlimited, determined by the TERM variable, and so on). The COLUMNS environment variable or --cols option may be used to exactly determine the width in this case. The w or -w option may be also be used to adjust width.
See args. (alias: args, command).
per-mill (tenths of a percent) CPU usage. (see %cpu).
cumulative CPU time, "[DD-]hh:mm:ss" format. (alias: time).
effective group ID number of the process as a decimal integer. (alias: &bgid&).
effective group ID of the process. This will be the textual group ID, if it can be obtained and the field width permits, or a decimal representation otherwise. (alias: group).
instruction pointer.
stack pointer.
elapsed time since the process was started, in the form "[[DD-]hh:]mm:ss".
elapsed time since the process was started, in seconds.
effective user ID (alias: uid).
effective user name. This will be the textual user ID, if it can be obtained and the field width permits, or a decimal representation otherwise. The n option can be used to force the decimal representation. (alias: uname, user).
flags associated with the process, see the
section. (alias: flag, flags).
filesystem access group ID. (alias: fsgid).
filesystem access group ID. This will be the textual group ID, if it can be obtained and the field width permits, or a decimal representation otherwise. (alias: fsgroup).
see f. (alias: f, flags).
see f. (alias: f, flag).
first 8 bytes of the base name of the process's executable file. The output in this column may contain spaces.
filesystem access user ID. (alias: fsuid).
filesystem access user ID. This will be the textual user ID, if it can be obtained and the field width permits, or a decimal representation otherwise.
see egid. (alias: egid).
see egroup. (alias: egroup).
mask of the ignored signals, see . According to the width of the field, a 32 or 64 bits mask in hexadecimal format is displayed. (alias: sig_ignore, sigignore).
security label, most commonly used for SE Linux context data. This is for the Mandatory Access Control ("MAC") found on high-security systems.
time the command started. See also bsdstart, start, start_time, and stime.
light weight process (thread) ID of the dispatchable entity (alias: spid, tid). See tid for additional information.
The number of major page faults that have occurred with this process.
The number of minor page faults that have occurred with this process.
value. This ranges from 19 (nicest) to -20 (not nice to others). (alias: nice).
see ni. (alias: ni).
number of lwps (threads) in the process. (alias: thcount).
address of the kernel function where the process is sleeping (use wchan if you want the kernel function name). Running tasks will display a dash ('-') in this column.
see %cpu. (alias: %cpu).
mask of the pending signals. See . Signals pending on the process are distinct from signals pending on individual threads. Use the m option or the -m option to see both. According to the width of the field, a 32 or 64 bits mask in hexadecimal format is displayed. (alias: sig).
process group ID or, equivalently, the process ID of the process group leader. (alias: pgrp).
see pgid. (alias: pgid).
a number representing the process ID (alias: tgid).
see %mem. (alias: %mem).
scheduling class of the process. (alias: class, cls). Possible values are:
not reported
SCHED_OTHER
SCHED_FIFO
SCHED_BATCH
SCHED_IDLE
unknown value
parent process ID.
priority of the process. Higher number means lower priority.
processor that process is currently assigned to.
real group ID.
real group name. This will be the textual group ID, if it can be obtained and the field width permits, or a decimal representation otherwise.
resident set size, the non-swapped physical memory that a task has used (in kilobytes). (alias: rssize, rsz).
see rss. (alias: rss, rsz).
see rss. (alias: rss, rssize).
realtime priority.
real user ID.
real user ID. This will be the textual user ID, if it can be obtained and the field width permits, or a decimal representation otherwise.
minimal state display (one character). See section PROCESS STATE CODES for the different values. See also stat if you want additional information displayed. (alias: state).
scheduling policy of the process. The policies SCHED_OTHER (SCHED_NORMAL), SCHED_FIFO, SCHED_RR, SCHED_BATCH, SCHED_ISO, and SCHED_IDLE are respectively displayed as 0, 1, 2, 3, 4, and 5.
session ID or, equivalently, the process ID of the session leader. (alias: session, sid).
processor that the process is currently executing on. Displays "*" if the process is not currently running or runnable.
saved group ID. (alias: svgid).
saved group name. This will be the textual group ID, if it can be obtained and the field width permits, or a decimal representation otherwise.
see sess. (alias: sess, session).
see pending. (alias: pending, sig_pend).
see caught. (alias: caught, sig_catch).
see ignored. (alias: ignored, sig_ignore).
see blocked. (alias: blocked, sig_block).
approximate amount of swap space that would be required if the process were to dirty all writable pages and then be swapped out. This approximation is very rough.
see lwp. (alias: lwp, tid).
address of the bottom (start) of stack for the process.
time the command started. If the process was started less than 24 hours ago, the output format is "HH:MM:SS", else it is " Mmm dd" (where Mmm is a three-letter month name). See also lstart, bsdstart, start_time, and stime.
start_time
starting time or date of the process. Only the year will be displayed if the process was not started the same year ps was invoked, or "MmmDD" if it was not started the same day, or "HH:MM" otherwise. See also bsdstart, start, lstart, and stime.
multi-character process state. See section PROCESS STATE CODES for the different values meaning. See also s and state if you just want the first character displayed.
see s. (alias: s).
saved user ID. (alias: svuid).
group ids of supplementary groups, if any.
group names of supplementary groups, if any.
saved user name. This will be the textual user ID, if it can be obtained and the field width permits, or a decimal representation otherwise. (alias: svuser).
see sgid. (alias: sgid).
see suid. (alias: suid).
size in physical pages of the core image of the process. This includes text, data, and stack space. Device mappings ar this is subject to change. See vsz and rss.
a number representing the thread group to which a task belongs (alias: pid). It is the process ID of the thread group leader.
see nlwp. (alias: nlwp). number of kernel threads owned by the process.
the unique number representing a dispatacable entity (alias: lwp, spid). This value may also appear as: a process ID (pid); a process group ID (pgrp); a session ID for the session leader (sid); a thread group ID for the thread group leader (tgid); and a tty process group ID for the process group leader (tpgid).
cumulative CPU time, "[DD-]HH:MM:SS" format. (alias: cputime).
controlling tty (terminal). (alias: tt, tty).
ID of the foreground process group on the tty (terminal) that the process is connected to, or -1 if the process is not connected to a tty.
controlling tty (terminal). (alias: tname, tty).
controlling tty (terminal). (alias: tname, tt).
see comm. (alias: comm, ucomm).
see comm. (alias: comm, ucmd).
see euid. (alias: euid).
see euser. (alias: euser, user).
see euser. (alias: euser, uname).
see vsz. (alias: vsz).
virtual memory size of the process in KiB (1024-byte units). Device mappings ar this is subject to change. (alias: vsize).
name of the kernel function in which the process is sleeping, a "-" if the process is running, or a "*" if the process is multi-threaded and ps is not displaying threads.
Environment Variables
The following environment variables could affect ps:
Override default display width.
Override default display height.
PS_PERSONALITY
Set to one of posix, old, linux, bsd, sun, digital... (see section
Set to one of posix, old, linux, bsd, sun, digital... (see section
I_WANT_A_BROKEN_PS
Force obsolete command line interpretation.
Date format.
Not currently supported.
Default output format override. You may set this to a format string of the type used for the -o option. The DefSysV and DefBSD values are particularly useful.
Default namelist (System.map) location.
PS_SYSTEM_MAP
Default namelist (System.map) location.
POSIXLY_CORRECT
Don't find excuses to ignore bad "features".
When set to "on", acts as POSIXLY_CORRECT.
Don't find excuses to ignore bad "features".
Cancel CMD_ENV=irix non-standard behavior.
In general, it is a bad idea to set these variables. The one exception is CMD_ENV or PS_PERSONALITY, which could be set to Linux for normal systems. Without that setting, ps follows the useless and bad parts of the Unix98 standard.
Personality
The following "personalities" affect the output of ps:
like the OS/390 OpenEdition ps
like FreeBSD ps (totally non-standard)
like the old
like Tru64 (was Digital Unix, was OSF/1) ps
like the old Debian ps
like HP-UX ps
like HP-UX ps
like Irix ps
This is the recommended personality for ps.
like the original Linux ps (totally non-standard)
like OS/390 Open Edition ps
The personality which conforms to the
like OS/390 Open Edition ps.
like Irix ps.
like Solaris 2+ (SunOS 5) ps.
like SunOS 4 (Solaris 1) ps (totally non-standard).
like Tru64 (was Digital Unix, was OSF/1) ps.
To see every process running on the system, using the standard syntax:
To see every process on the system, using BSD syntax:
To display a process tree:
To get info about threads:
To get security info:
ps -eo euser,ruser,suser,fuser,f,comm,label
To see every process running as root (real and effective ID) in user format:
ps -U root -u root u
To see every process with a user-defined format:
ps -eo pid,tid,class,rtprio,ni,pri,psr,pcpu,stat,wchan:14,comm
ps axo stat,euid,ruid,tty,tpgid,sess,pgrp,ppid,pid,pcpu,comm
ps -Ao pid,tt,user,fname,tmout,f,wchan
Print only the process IDs of syslogd, the
ps -C syslogd -o pid=
Print only the name of process ID 15:
ps -p 15 -o comm=
Related commands
& Resume a suspended program without bringing it to the foreground.
& Display the amount of free and used memory.
& Identify processes using files or sockets.
& Send a signal to a process, affecting its behavior or killing it.
& Kill processes by name.
& Invoke a command with an altered scheduling priority.
& Display the size of a page of memory in bytes.
& Look up processes based on the name or other attributes.
& Display or set scheduling parameters of a processes under Solaris.
& Display processes in a tree format.
& Display a sortable, continually-updated list of processes.
& Print the file name of the terminal connected to standard input.
& Display information about how long the system has been running.
& Display information about how long the system has been running.
Was this page useful?
Recently added pages
Useful links}

我要回帖

更多关于 do or die什么意思 的文章

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信