What is the difference between a job and a process?

What is the difference between a “job” and a “process”?

Asked By: Olivier Lalonde

||

A process is any running program with its own address space.

A job is a concept used by the shell – any program you interactively start that doesn’t detach (ie, not a daemon) is a job. If you’re running an interactive program, you can press CtrlZ to suspend it. Then you can start it back in the foreground (using fg) or in the background (using bg).

While the program is suspended or running in the background, you can start another program – you would then have two jobs running. You can also start a program running in the background by appending an “&” like this: program &. That program would become a background job. To list all the jobs you are running, you can use jobs.

For more information on jobs, see this section of the bash man page.

Answered By: Shawn J. Goff

UNIX has separate concepts “process”, “process group”, and “session”.

Each shell you get at login becomes the leader of its own new session and process group, and sets the controlling process group of the terminal to itself.

The shell creates a process group within the current session for each “job” it launches, and places each process it starts into the appropriate process group. For example, ls | head is a pipeline of two processes, which the shell considers a single job, and will belong to a single, new process group.

A process is a (collection of) thread of execution and other context, such as address space and file descriptor table. A process may start other processes; these new processes will belong to the same process group as the parent unless other action is taken. Each process may also have a “controlling terminal”, which starts off the same as its parent.

The shell has the concept of “foreground” jobs and “background” jobs. Foreground jobs are process groups with control of the terminal, and background jobs are process groups without control of the terminal.

Each terminal has a foreground process group. When bringing a job to the foreground, the shell sets it as the terminal’s foreground process group; when putting a job to the background, the shell sets the terminal’s foreground process group to another process group or itself.

Processes may read from and write to their controlling terminal if they are in the foreground process group. Otherwise they receive SIGTTIN and SIGTTOU signals on attempts to read from and write to the terminal respectively. By default these signals suspend the process, although most shells mask SIGTTOU so that a background job can write to the terminal uninterrupted.

Answered By: ephemient

Above definitions are very technical but maybe the op wanted a more day to day clarification. I think that a job is a scheduled process. When we deal with processes in general there is not necessarily the notion of schedule, but when we use the word “job” we always mean that it is scheduled, or repetitive like a loop, it’s like a worker.

Answered By: eloone

A job and a process are related but distinct concepts.

  • A process is an instance of a program that is currently running on the system. It has its own memory space, file descriptor, and a unique process ID (PID).

  • A job is a unit of work that the user wants to perform, it can be composed of one or more processes, and it can be managed by job control commands’. Jobs also have their own job ID (JID).

Answered By: Premraj
Categories: Answers Tags: , ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.