当检查 pstree 时
$ pstree -g 2 -p $$ | sed "s/$USER/me/g"
─┬◆ 00001 root /sbin/launchd
└─┬◆ 00277 me /Applications/Utilities/Terminal.app/Contents/MacOS/Terminal -psn_0_40970
└─┬◆ 00360 root login -pfl me /bin/bash -c exec -la bash /usr/local/bin/bash
└─┬◆ 00368 me -bash
├─┬◆ 03968 me pstree -g 2 -p 368
│ └─── 03970 root ps -axwwo user,pid,ppid,pgid,command
└─── 03969 me sed s/me/me/g
我发现root /sbin/launchd
是No.0001进程,是说/sbin/launchd
开机后立即运行吗?
答案1
是的。 PID 1 启动后立即运行并且无法退出。如果它退出,将会触发内核恐慌。