Re: Ahoy Pie R8s! New Win11
Lawrence D’Oliveiro <[email protected]>
| Newsgroups | comp.os.linux.misc |
|---|---|
| Organization | A noiseless patient Spider |
| Message-ID | <[email protected]> |
On Mon, 17 Aug 2026 14:34:47 -0400, Paul wrote: > On Windows, you can use Sysinternals Process Explorer, to identify > which process is the parent. Task Manager does not seem to have a > column for PPID (Parent Process ID). Sysinternals has the parent and > children with indented display, which shows the child-relationship > as expected. On Linux, we have command-line tools that can display a whole range of information for you to choose from <https://manpages.debian.org/ps(1)>. (Yes, the backward-compatibility machinery being carried around in that particular piece of software is at once horrifying and impressive.) And most of this info comes from Linux APIs that can be accessed just by reading from virtual files in places like /proc and /sys. So it’s easy to write something as simple as a shell script to show some similar information.