Table of Contents

Ubuntu - Processes - Run a process in the background


Launch a program from the shell

Example program

htop

Place a process into the background

Press CTRL + z keys.

CTRL z

returns:

[1]+  Stopped                 htop

This places htop into the background.

Other commands can not be run from the shell.


Return a process to the foreground

fg

This returns htop to be showing its usual output on the screen.