Contents: [slideshow]

The Command Line

Filing System, File and Directory Handling

Processes

BASH: More and Scripts

Installation

More

Practical Session




About this document

Basic Linux Stuff

Backgrounding Jobs

Use an ampersand:

  prompt> gedit &
Or, if you forget, issue a Ctrl-Z and then enter bg (background):
  prompt> gedit
  ^Z
  [1]+  Stopped                 gedit
  prompt> bg
  [1]+ gedit &


Why?


...previousup (conts)next...