Linux: Job Control

By Xah Lee. Date: . Last updated: .

What is Job Control

Job Control means managing which process runs in foreground, which runs in background.

Job Control Commands

cmd &
Start a program in background. e.g. python process_log.py &
Ctrl+c
Stop the current program tied to the terminal. (sending SIGINT to it)
Ctrl+z
Suspend the current program tied to the terminal. (sending SIGTSTP to it)
jobs
List background processes
bg %number
Run the suspended command in background.
fg %number
Resume a background process to foreground.
disown %number
Separate a job ID number from jobs table.

unix process signal is a integer send to programs to tell it something. To see a list of all signals, type man kill.

Example of Using Job Control

Here's a common scenario of using job control:

  1. Start xlock with a second hand by xclock -update 1, it'll hog the terminal.
  2. Now, in terminal, press Ctrl+z to pause the program and returns you the prompt. (when the program is paused, it can't be used. You'll see that the second-hand stopped moving.)
  3. Type jobs to list all jobs and their ID in job table. Here's a sample output: [1]+ Stopped xclock -update 1
  4. Type bg %1 to start the process with job ID 1 in background.
  5. Now, it is as if you started xclock by xclock &.

the “xlock” example above can be any shell command.

Here's some other commands that are very useful. Note, many GUI apps these days will detach itself from terminal, even if you didn't start it with &.

setsid command
Run a program in a new session.
nohup command
Run a command immune to SIGHUP signal , and redirect stdout to a normal file.

Closing Terminal Kills My Program?

Tips:

To run a server, you can do: nohup myserver > out.txt 2> err.txt < /dev/null &.

This will set stdout to out.txt, and stderr to err.txt, and stdin from /dev/null, and not receive signal SIGHUP signal, and remove this process from jobs table.

Linux, Bash and Terminal