background processes close down on exit?
There are usually two processes. The mud process, and a "startup" csh script.
-- Griswald
3 Replies
Run the programs as a daemon
command &
Adding the & to the end starts the process as a daemon.
Adam
ala: nohup startupscript.csh &
This will start it in the background and prevent it from exiting on logout. Starting as above it will append any output to STDOUT/STDERR to a file nohup.out in the current directory. Check the nohup man page for more info.
@Griswald:
There are usually two processes. The mud process, and a "startup" csh script.
You may want to read …
Mandrake Generic Startup Init Script
Highly helpful and easy to read.
Bill Clinton