pstree-显示子进程的父进程

安装pstree:yum install psmisc -y

作用:用于追踪子进程的父进程

使用场景:需要知道某个子进程的父进程时;

常用选项:

 -a:显示命令行选项(即显示启动进程所使用的命令)

    -p:打印出父进程的pid号

    -s:显示子进程所有的父进程(默认只显示子进程的第一个父进程)

    注:aps常组合在一起使用

用法示例:

只显示某个进程的父进程
[root@localhost ~]# pstree 1004
qmgr
显示出父进程并且同时显示父进程的pid
[root@localhost ~]# pstree -s 1004
systemd───master───qmgr
显示出所有父进程并且显示它们的PID
[root@localhost ~]# pstree -sp 1004
systemd(1)───master(1002)───qmgr(1004)
显示出所有父进程、显示它们的PID、显示它们启动时所使用的命令
[root@localhost ~]# pstree -asp 1004
systemd,1 --switched-root --system --deserialize 21
  └─master,1002 -w
      └─qmgr,1004 -l -t unix -u

 

posted @ 2020-02-01 11:48  星火撩原  阅读(929)  评论(0编辑  收藏  举报