Part 3 of The Linux Newbie Administrator Guide
3.3.1 How do I execute a command in the "background"?
(continued after the ads...)
|
licq & The
process identification number, job_number, is printed on the screen,
so you can use it with related commands. The related commands are fg
job_number (="foreground", bring the background process back
to my immediate view/control, restart it if it was stopped), bg job_number
(="background", send the process to the background, restart if it was
stopped, exactly as if it was started using &), To make a background process keep running after you disconnect, you may use the nohup (="no hungup"), for example: nohup make & that maybe compiling a large program. Next > 3.3.2 How do I execute a command at specified time (using "at" or "batch")?
|
||

