Osx

00001 根 /sbin/launchd

  • November 10, 2018

當檢查 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開機後立即執行?

是的。PID 1 在啟動後立即執行並且無法退出。如果它退出,它將觸發核心恐慌。

引用自:https://unix.stackexchange.com/questions/480880