[EMAIL PROTECTED] wrote: > > ----- Begin Hush Signed Message from [EMAIL PROTECTED] ----- > > This is not a debian question, but it's so generic I'm not sure where else > to ask it. > > How do you free a process from your login? I want to start a commandline > program, then logoff and have the program continue to execute. Currently > I'm using at as a work around, but it seems like you should be able to > interactively "spin" the process off on its own. Thanks.
nohup, I think you can also set up the shell not to kill children when it exits (start command in background (append & at the end of command line) or background it while it works, usually ctrl-z to stop it, bg to make it continue in background) erik