Term
What does it mean to fork a process? |
|
Definition
Forking a process means that one process is started within another. All forked processes are running as child processes to another. |
|
|
Term
|
Definition
A process tree is formed when within one parent process several other processes are spawned within it. |
|
|
Term
|
Definition
Top is used to show system resources in use by the system processes. |
|
|
Term
|
Definition
The PID for init is always 1 because it is the parent or root process of all processes on linux. |
|
|
Term
|
Definition
PPID stands for parent process ID. A PPID is the identification number of any process that has spawned a child process. It is the ID number of the process that has spawned a process. |
|
|
Term
|
Definition
The Killall command is a command that kills all processes that have a certain name. |
|
|