Linux Tutorials: Types of Process in Linux


There are five types of Process in Linux

1. Parent process: The process created by the user on the terminal. All processes have a parent process, If it was created directly by user then the parent process will be the kernel process.

2. Child process: The process created by another process (by its parent process). All child processes have a parent process.

The example is given above, the process having PID 28500(last row) is a child process of the process having PID 26544.

3. Orphan process: Sometimes when the parent gets executed before its own child process then the child process becomes an orphan process. The orphan process have “Init” process (PID 0) as their PPID (parent process ID)

4. Zombie process: The processes which are already dead but shows up in process status is called Zombie process. Zombie processes have Zero CPU consumption.

5. Daemon process: These are system-related processes that run in the background. A Daemon process can be recognized if it has “?” in its TTY field (6th column)

Rajesh Kumar
Follow me
Subscribe
Notify of
guest
1 Comment
Newest
Oldest Most Voted
Inline Feedbacks
View all comments
Rakesh
Rakesh
1 year ago

Practical example is missing

1
0
Would love your thoughts, please comment.x
()
x