shell 在进程层次中处于什么位置?

shell 在进程层次中处于什么位置?

当您打开一个新终端时,它将成为其中分叉的所有进程的父进程。但是,例如,bash shell 属于这个进程链的哪个阶段?它的父进程是终端吗?shell 中分叉的所有进程都是该 shell 的子进程吗?如果是这样,那么当我更换 shell 时,为什么进程仍然在运行?简而言之,shell 在进程层次结构中处于哪个阶段?

答案1

实际上,bash 进程的父进程是终端。你可以使用以下ps -aef命令查看进程层次结构:

$ ps -aef
UID        PID  PPID  C STIME TTY          TIME CMD
[...]
sylvain   3510  1862  2 22:02 ?        00:00:01 gnome-terminal
[...]
sylvain   3520  3510  0 22:02 pts/1    00:00:00 bash
sylvain   3587  3520  0 22:03 pts/1    00:00:00 sh
  • PID:进程 ID
  • PPID:父进程 ID

在这个例子中,我从shell (3520)启动了一个sh进程 (3587)bash

答案2

这里有一些很好的命令可以帮助您理解事物:pstree

显示当前进程的进程树(在 shell 中,$$用 shell 的 PID 替换):

(0)samsung-rmano:~% pstree -s $$
init───gdm───gdm-simple-slav───gdm-session-wor───init───gnome-terminal-───zsh───pstree

显示 PID:

(0)samsung-rmano:~% pstree -s -p $$
init(1)───gdm(1128)───gdm-simple-slav(1203)───gdm-session-wor(1933)───init(1955)───gnome-terminal-(2340)───zsh(23005)───pstree(23044)

整个系统进程树,当前 shell 突出显示(打开一个非常大的终端!---这里看不到突出显示):

 (0)samsung-rmano:~% pstree -h 
 ...
 ├─gdm─┬─gdm-simple-slav─┬─Xorg───4*[{Xorg}]
 │     │                 ├─gdm-session-wor─┬─init─┬─Notifications_h
 │     │                 │                 │      ├─Translator
 │     │                 │                 │      ├─at-spi-bus-laun─┬─dbus-daemon
 │     │                 │                 │      │                 └─3*[{at-spi-bus-laun}]
 │     │                 │                 │      ├─at-spi2-registr───{at-spi2-registr}
 │     │                 │                 │      ├─darktable───47*[{darktable}]
 │     │                 │                 │      ├─dbus-daemon
 │     │                 │                 │      ├─dconf-service───2*[{dconf-service}]
 │     │                 │                 │      ├─dropbox───30*[{dropbox}]
 │     │                 │                 │      ├─evolution-calen───4*[{evolution-calen}]
 │     │                 │                 │      ├─evolution-sourc───2*[{evolution-sourc}]
 │     │                 │                 │      ├─firefox─┬─plugin-containe───10*[{plugin-containe}]
 │     │                 │                 │      │         └─43*[{firefox}]
 │     │                 │                 │      ├─gconfd-2
 │     │                 │                 │      ├─gnome-session─┬─deja-dup-monito───2*[{deja-dup-monito}]
 │     │                 │                 │      │               ├─gnome-shell─┬─alarmclock───3*[{alarmclock}]
 │     │                 │                 │      │               │             ├─cairo-dock───3*[{cairo-dock}]
 │     │                 │                 │      │               │             └─6*[{gnome-shell}]
 │     │                 │                 │      │               ├─tracker-miner-f───3*[{tracker-miner-f}]
 │     │                 │                 │      │               ├─tracker-store───7*[{tracker-store}]
 │     │                 │                 │      │               ├─update-notifier───3*[{update-notifier}]
 │     │                 │                 │      │               ├─vino-server───2*[{vino-server}]
 │     │                 │                 │      │               ├─zeitgeist-datah───10*[{zeitgeist-datah}]
 │     │                 │                 │      │               └─3*[{gnome-session}]
 │     │                 │                 │      ├─gnome-settings-─┬─syndaemon
 │     │                 │                 │      │                 └─4*[{gnome-settings-}]
 │     │                 │                 │      ├─gnome-shell-cal───4*[{gnome-shell-cal}]
 │     │                 │                 │      ├─gnome-terminal-─┬─gnome-pty-helpe
 │     │                 │                 │      │                 ├─slogger
 │     │                 │                 │      │                 ├─3*[zsh]
 │     │                 │                 │      │                 ├─zsh───man───pager
 │     │                 │                 │      │                 ├─zsh───python3
 │     │                 │                 │      │                 ├─zsh───pstree
 │     │                 │                 │      │                 └─3*[{gnome-terminal-}]
...

相关内容