(5)ps详解 (每周一个linux命令系列)

linux命令 ps详解


引言:今天的命令是用来看进程状态的ps命令

ps

我们先看man ps


ps - report a snapshot of the current processes.

翻译:显示当前进程的快照。ps是 Process Status的缩写

具体的描述如下:


DESCRIPTION
ps displays information about a selection of the active processes. If you
want a repetitive update of the selection and the displayed information, use
top(1) instead.
ps展示了当前运行的程序的一些选项信息快照,如果想要查看实时更新的程序信息,请使用top命令。 This version of ps accepts several kinds of options:
ps可以接收多种不同的选项 1 UNIX options, which may be grouped and must be preceded by a dash.
2 BSD options, which may be grouped and must not be used with a dash.
2 GNU long options, which are preceded by two dashes.
1 UNIX选项,需要分组使用,并且必须以破折号开头。
2 BSD选项,需要分组使用,不得与破折号一起使用。
3 GNU长选项,前面有两个破折号。 Options of different types may be freely mixed, but conflicts can appear.
There are some synonymous options, which are functionally identical, due to
the many standards and ps implementations that this ps is compatible with.
不同类型的选项可以自由混合,但可能出现冲突。
由于ps兼容的许多标准和ps实现,有一些在功能上相同的同义选项。 Note that "ps -aux" is distinct from "ps aux". The POSIX and UNIX standards
require that "ps -aux" print all processes owned by a user named "x", as well
as printing all processes that would be selected by the -a option. If the
user named "x" does not exist, this ps may interpret the command as "ps aux"
instead and print a warning. This behavior is intended to aid in
transitioning old scripts and habits. It is fragile, subject to change, and
thus should not be relied upon.
请注意,“ps -aux”与“ps aux”不同。
POSIX和UNIX标准要求“ps -aux”打印名为“x”的用户拥有的所有进程,
以及打印将由-a选项选择的所有进程。如果名为“x”的用户不存在,则此ps可能会将
该命令解释为“ps aux”且打印警告。此行为旨在帮助转换旧脚本和习惯。
这不一定是可靠的,尽量不要这样用 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 CPU time in [DD-]hh:mm:ss format
(time=TIME), and the executable name (ucmd=CMD). Output is unsorted by
default.
默认情况下,ps选择与当前用户具有相同有效用户ID(euid = EUID)且与调用者相同的终端关联的所有进程。
它显示进程ID(pid = PID),与进程关联的终端(tname = TTY),
累计CPU时间[DD-] hh:mm:ss格式(time = TIME)和可执行文件名(ucmd) = CMD)。
默认情况下,不对输出排序。 The use of BSD-style options will add process state (stat=STAT) to the
default display and show the command args (args=COMMAND) instead of the
executable name. You can override this with the PS_FORMAT environment
variable. The use of BSD-style options will also change the process selection
to include processes on other terminals (TTYs) that are owned by you;
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.
使用BSD样式选项会将进程状态(stat = STAT)添加到默认显示,并显示命令args(args = COMMAND)
而不是可执行文件名。您可以使用PS_FORMAT环境变量覆盖它。使用BSD风格的选项也会改变进程的选择,
以包括您拥有的其他终端(TTY)上的进程;或者,这可以被描述为将选择过滤设置为排除其他用户所拥有的和
不在终端上的进程的集合。当选项在下面被描述为“相同”时,不需要考虑这些效果,因此-M将被视为与Z相同
依此类推。 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.
除以下描述外,进程选择选项是附加的。将丢弃默认选择,然后将所选进程添加到要显示的进程集。因此,如果满足任何给定的选择标准,将显示该进程。

我们再来看一下帮助文档

dev1:~$ ps --help all

Usage:
ps [options] Basic options:
-A, -e all processes
-a all with tty, except session leaders
a all with tty, including other users
-d all except session leaders
-N, --deselect negate selection
r only running processes
T all processes on this terminal
x processes without controlling ttys Selection by list:
-C <command> command name
-G, --Group <GID> real group id or name
-g, --group <group> session or effective group name
-p, p, --pid <PID> process id
--ppid <PID> parent process id
-q, q, --quick-pid <PID>
process id (quick mode)
-s, --sid <session> session id
-t, t, --tty <tty> terminal
-u, U, --user <UID> effective user id or name
-U, --User <UID> real user id or name The selection options take as their argument either:
a comma-separated list e.g. '-u root,nobody' or
a blank-separated list e.g. '-p 123 4567' Output formats:
-F extra full
-f full-format, including command lines
f, --forest ascii art process tree
-H show process hierarchy
-j jobs format
j BSD job control format
-l long format
l BSD long format
-M, Z add security data (for SELinux)
-O <format> preloaded with default columns
O <format> as -O, with BSD personality
-o, o, --format <format>
user-defined format
s signal format
u user-oriented format
v virtual memory format
X register format
-y do not show flags, show rss vs. addr (used with -l)
--context display security context (for SELinux)
--headers repeat header lines, one per page
--no-headers do not print header at all
--cols, --columns, --width <num>
set screen width
--rows, --lines <num>
set screen height Show threads:
H as if they were processes
-L possibly with LWP and NLWP columns
-m, m after processes
-T possibly with SPID column Miscellaneous options:
-c show scheduling class with -l option
c show true command name
e show the environment after command
k, --sort specify sort order as: [+|-]key[,[+|-]key[,...]]
L show format specifiers
n display numeric uid and wchan
S, --cumulative include some dead child process data
-y do not show flags, show rss (only with -l)
-V, V, --version display version information and exit
-w, w unlimited output width --help <simple|list|output|threads|misc|all>
display help and exit

打印所有用户的运行进程

a 显示所有用户的进程
u 显示进程的所有者
x 显示非终端启用的进程
注意之前介绍了 aux和-au的区别 输出:
USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 28726 0.0 0.0 0 0 ? S 10:42 0:00 [kworker/3:0]
root 28889 0.0 0.0 0 0 ? S 10:44 0:00 [kworker/0:2]
root 28979 0.0 0.0 0 0 ? S 10:45 0:00 [kworker/2:2]
root 29014 0.0 0.0 0 0 ? S 10:45 0:00 [kworker/1:0]

列属性说明 其他的列参考man ps吧

 - USER:该进程属于那个使用者账号的
- PID :该进程的号码
- %CPU:该进程所使用的CPU时间百分比。
- %MEM:该进程所使用的CPU时间百分比
- VSZ :该进程占用的虚拟内存量 (Kbytes)
- RSS :该进程占用的固定的内存量 (Kbytes)
- TTY :该进程是在那个终端机上面运作,若与终端机无关,则显示 ?,
另外, tty1-tty6 是本机上面的登入者程序,若为 pts/0等等的,则表示为由网络连接进主机的程序。
- STAT:Process Status 该程序目前的状态,主要的状态有
D :不可中断的睡眠. 通常是处于I/O之中
R :该程序目前正处于运行队列中.运行中/可运行.
S :该程序目前正在睡眠当中,但可被某些事件或讯号 (signal) 触发唤醒。
T :已停止. 可能是因为shell作业控制或进程正被调试.
Z :该程序应该已经终止,但是其父程序没有终止他,造成 zombie (疆尸) 程序的状态
注:进程状态还有其他的几种但是一般不常用
- START :该 process 被触发启动的时间
- TIME :该 process 实际使用 CPU 运作的时间
- COMMAND :该程序的实际指令

接下来说一些常用命令

最常用的就是和grep配合 查找特定的进程了

ps -ef | grep ssh

输出

root      1026     1  0 10月02 ?      00:00:08 /usr/sbin/sshd -D
root 1534 1026 0 10月08 ? 00:00:00 sshd: xxx [priv]
xxx 1536 1534 0 10月08 ? 00:00:01 sshd: xxx@pts/1,pts/2,pts/3

定制输出的列属性

我们可以使用-o来定制列属性

ps -o uid,%cpu,%mem,pid,ppid,pgrp,session,tpgid,comm

查看特定用户的进程

在需要查看特定用户进程的情况下,我们可以使用 -u 参数。比如查看vinter用户的进程

ps -u vinter

对输出结果进行排序

升序和降序是通过在字段前面增加负号来设置的 有负号‘-’代表降序

ps --sort ppid 升序

ps --sort -ppid 降序

查看某个名称的进程

例如查看名为ps的进程

ps -C ps

查看某个PID的进程

ps -P 23178

把ps的结果输出到文件或分页查看

可以用 | 管道和 more 连接起来分页查看。

ps aux |more

把ps结果输出到ps.txt文本。

ps aux > ./ps.txt

(5)ps详解 (每周一个linux命令系列)的更多相关文章

  1. (4)top详解 (每周一个linux命令系列)

    (4)top详解 (每周一个linux命令系列) linux命令 top详解 引言:今天的命令是用来看cpu信息的top top 我们先看man top top - display Linux pro ...

  2. (3)lscpu详解 (每周一个linux命令系列)

    (3)lscpu详解 (每周一个linux命令系列) linux命令 lscpu详解 引言:今天的命令是用来看cpu信息的lscpu lscpu 我们先看man lscpu display infor ...

  3. (2)free详解 (每周一个linux命令系列)

    (2)free详解 (每周一个linux命令系列) linux命令 free详解 引言:今天的命令是用来看内存的free free 换一个套路,我们先看man free中对free的描述: Displ ...

  4. (6)sudo命令详解(每周一个linux命令系列)

    首先说句抱歉,最近事情比较复杂,停更了一阵子.我又回来啦 多用户管理 我们常用的windows个人系统虽然可以设置多用户,但是实际上是不可以多用户同时登陆的(这个我实验过,我以前用windows服务器 ...

  5. (7)awk命令(每周一个linux命令系列)

    简介 awk是一个强大的文本分析工具,尤其是在应对格式化比较好的日志文件时,简单来说awk就是把文件逐行的读入,以空格为默认分隔符(也可以指定分隔符)将每行切片处理. 语法 awk [选项参数] 's ...

  6. 每周一个linux命令之---uptime详解

    每周一个linux命令之---uptime详解 linux命令 uptime详解 引言:从今天开始,每周更新一个对程序员有用的linux命令,我真的没敢写每天一个,我怕我坚持不下去,每周一个还是可以的 ...

  7. 企业sudo权限规划详解 (实测一个堆命令搞定)

    简述问题:         随着公司的服务器越来越多,人员流动性也开始与日俱增,以往管理服务器的陈旧思想应当摒弃,公司需要有 更好更完善的权限体系,经过多轮沟通和协商,公司一致决定重新整理规划权限体系 ...

  8. (11)nc命令(每周一个linux命令)

    nc(netcat)实用程序几乎可用于所有涉及TCP或UDP的事情.它可以打开TCP连接,发送UDP数据包,监听任意TCP和UDP端口,进行端口扫描,处理IPv4和IPv6.与telnet不同,nc可 ...

  9. 【转载】每天一个Linux命令

    目  录 每天一个linux命令(1)  : ls 命令 每天一个linux命令(2)  : cd 命令 每天一个linux命令(3)  : pwd 命令 每天一个linux命令(4)  : mkdi ...

随机推荐

  1. asp.net mvc5轻松实现插件式开发

    在研究Nopcommece项目代码的时候,发现Nop.Admin是作为独立项目开发的,但是部署的时候却是合在一起的,感觉挺好 这里把他这个部分单独抽离出来, 主要关键点: 确保你的项目是MVC5 而不 ...

  2. Vue 动态加载组件

    为什么要动态加载呢?而不是一次性加载呢? 一次性?你能保证你拿的内容不多,那从性能方面说还是OK的.否则,就该什么时候用,就什么时候取. 得出这想法,源于前几天上班赶产品的故事: A组件是父亲,B组件 ...

  3. Flask在Pycharm开启调试模式

       一.Flask在Pycharm2018前的版本只需设置(两种方法之一): 1. 直接设置app的debug为true: app.debug=true 2. 把debug=true作为参数,传入到 ...

  4. webpack4 系列教程: 前言

    1. 什么是webpack? 前端目前最主流的javascript打包工具,在它的帮助下,开发者可以轻松地实现加密代码.多平台兼容.而最重要的是,它为前端工程化提供了最好支持.vue.react等大型 ...

  5. Python 练习: 简单角色游戏程序

    要求: 1.创建三个游戏人物,分别是: 苍井井,女,18,初始战斗力1000 东尼木木,男,20,初始战斗力1800 波多多,女,19,初始战斗力2500 2.游戏场景,分别: 草丛战斗,消耗200战 ...

  6. 51Nod 最小公倍数之和V3

    这题公式真tm难推……为了这题费了我一个草稿本…… woc……在51Nod上码LaTeX码了两个多小时…… 一开始码完了前半段,刚码完后半段突然被51Nod吃了,重新码完后半段之后前半段又被吃了,吓得 ...

  7. 【读书笔记】iOS-发布你的应用

    一,添加图标 你的应用在iPhone主屏幕上的标准图标(Icon.png)是57像素*57像素的正方形,PNG格式,不能有透明效果或者图层,72DPI.除些之外,你还可以提供一个同样格式的114像素* ...

  8. NopCommerce 根据手机浏览器和桌面浏览器切换 Theme

    自从 NopCommerce 升级到 3.x 以来,默认的 ViewName.Mobile.cshtml 方式就被响应式的默认 Theme 取代了. 但是在今天各种手机专用前端库大行其道的情况下,响应 ...

  9. Angular基础(五) 内建指令和表单

    ​ Angular提供了一些内建的指令,可以作为属性添加给HTML元素,以动态控制其行为. 一.内建指令 a) *ngIf,可以根据条件来显示或隐藏HTML元素. <div *ngIf='a&g ...

  10. Web API 方法的返回类型、格式器、过滤器

    一.Action方法的返回类型 a) 操作方法的返回类型有四种:void.简单或复杂类型.HttpResponseMessage类型.IHttpActionResult类型. b) 如果返回类型为vo ...