To find a parent process for selected PID, you can use `pstree -p -s <PID>` command. ```Bash $ pstree -p -s 4128709 systemd(1)───containerd-shim(1841348)───sleep(1841370)───ssh(4128709) ``` ### See also 1. [[What is process in Linux?]]