访问手机版  

Linux常用命令|Linux培训学习|考试认证|工资待遇与招聘,认准超级网工!

招聘|合作 登陆|注册

网络工程师培训

当前位置:网络工程师 > 技术课程 > linux > 热点关注 > linux常用命令

Linux 下 ps 命令

时间:2019-08-10

linux解压命令_linux 命令_linux命令

Linux中的ps命令是Process Status的缩写。ps命令用来列出系统中当前运行的那些进程。ps命令列出的是当前那些进程的快照linux命令,就是执行ps命令的那个时刻的那些进程,动态的显示进程信息,要使用top命令。

该命令可确定有哪些进程正在运行和运行的状态、进程是否结束、进程有没有僵死、哪些进程占用了过多的资源等等。

ps提供进程的一次性的查看,提供的查看结果并不动态连续。如果想对进程时间监控linux命令,应该用top工具。

kill命令用于杀死进程。

linux上进程有5种状态:

linux命令_linux 命令_linux解压命令

运行(正在运行或在运行队列中等待)

中断(休眠中,受阻,在等待某个条件的形成或接受到信号)

不可中断(收到信号不唤醒和不可运行,进程必须等待直到有中断发生)

僵死(进程已终止,但进程描述符存在,直到父进程调用wait4()系统调用后释放)

停止(进程收到SIGSTOP,SIGSTP,SIGTIN,SIGTOU信号后停止运行运行)

linux命令_linux解压命令_linux 命令

ps [参数]

用来显示当前进程的状态

复制代码+ View code

$ ps --help
********* simple selection *********  ********* selection by list *********
-A all processes                      -C by command name
-N negate selection                   -G by real group ID (supports names)
-a all w/ tty except session leaders  -U by real user ID (supports names)
-d all except session leaders         -g by session OR by effective group name
-e all processes                      -p by process ID
T  all processes on this terminal     -s processes in the sessions given
a  all w/ tty, including other users  -t by tty
g  OBSOLETE -- DO NOT USE             -u by effective user ID (supports names)
r  only running processes             U  processes for specified users
x  processes w/o controlling ttys     t  by tty
*********** output format **********  *********** long options ***********
-o,o user-defined  -f full            --Group --User --pid --cols --ppid
-j,j job control   s  signal          --group --user --sid --rows --info
-O,O preloaded -o  v  virtual memory  --cumulative --format --deselect
-l,l long          u  user-oriented   --sort --tty --forest --version
-F   extra full    X  registers       --heading --no-heading --context
                    ********* misc options *********
-V,V  show version      L  list format codes  f  ASCII art forest
-m,m,-L,-T,H  threads   S  children in sum    -y change -l format
-M,Z  security data     c  true command name  -c scheduling class
-w,w  wide output       n  numeric WCHAN,UID  -H process hierarchy

复制代码

linux 命令_linux解压命令_linux命令

a显示所有进程

-a显示同一终端下的所有程序

-A显示所有进程

c显示进程的真实名称

-N反向选择

linux解压命令_linux命令_linux 命令

-e等于“-A”

e显示环境变量

f显示程序间的关系

-H显示树状结构

r显示当前终端的进程

T显示当前终端的所有程序

u指定用户的所有进程