The ppid field is the parent's process id. This is the process that 'owns' the current process.
The 'ps' command may differ slightly in different versions of unix operating systems. It is usually better to use the 'man ps' command or the 'info ps' command to see the options that are available for your distribution.
Use the command: ps -u jtaylor
Process ID and Parent Process ID
The ps command in Unix/Linux systems is used to display information about running processes. It provides details such as the process ID (PID), terminal associated with the process, CPU and memory usage, and the command that initiated the process. Common options include ps aux for a comprehensive view of all processes or ps -ef for a full-format listing. This command is useful for monitoring system activity and managing processes.
0 is used as a Valid Process identifier. It is used as the PPID for /etc/init that starts everything on the server. The PPID Is the Parent Process Identifier. The Parent Process is Process 0, or the System Startup Process. All processes spawn from this PPID. PID 1 is /etc/init which starts up everything else.
Use the 'PS' (process status) command to find out the name of the executable file for a process. If you use the long form and you know the process id, try: PS -p process-id -l or PS -p process-id -f
PS -eaf|grep defunct
Linux OS is : PS -ef
ps aux
This number is located on the label on the back of the battery.
Both the ps command and the jobs command will do this, though in somewhat different ways.
It depends on what information you are looking for, and the exact Unix system you are using. Take a look at the 'man ps' command on your system to find out the switches that give the information you are most interested in looking at.