Hey guys,
I'm sure I knew this at some point, but I don't seem to remember at the moment...
How do you start a process in UNIX or Linux and keep it running even after you logout (say I'm logging in using Telnet or SSH). In other words, I want to daemonize a process (is that the right word for this situation?). Basically I can do something like this:
$ myprogram&
to run it in the background, but that's only good while the current session's running....I want to keep it running after I logout. Thanks a lot.
I'm sure I knew this at some point, but I don't seem to remember at the moment...
How do you start a process in UNIX or Linux and keep it running even after you logout (say I'm logging in using Telnet or SSH). In other words, I want to daemonize a process (is that the right word for this situation?). Basically I can do something like this:
$ myprogram&
to run it in the background, but that's only good while the current session's running....I want to keep it running after I logout. Thanks a lot.