Path: utzoo!utgpu!news-server.csri.toronto.edu!bonnie.concordia.ca!thunder.mcrcim.mcgill.edu!snorkelwacker.mit.edu!spool.mu.edu!sdd.hp.com!elroy.jpl.nasa.gov!ames!vsi1!daver!kcdev!genco!rad From: rad@genco.bungi.com (Bob Daniel) Newsgroups: comp.unix.questions Subject: Re: Background processes on logout Message-ID: <534@genco.bungi.com> Date: 25 Feb 91 17:38:28 GMT References: <91051.180110F66204@BARILVM.BITNET> Reply-To: rad@genco.bungi.com (Bob Daniel) Organization: Gentry & Assoc. Excelsior Springs, MO Lines: 11 In article <91051.180110F66204@BARILVM.BITNET> F66204@BARILVM.BITNET (Shaul Wallach) writes: > > Please excuse this beginner's question. Is there any way for a >user to log out of a UNIX system (say AIX/6000) while leaving >background processes active? My experience seems to be that the >logout command kills all background processes, something I want >to prevent. Use 'nohup' (no hangup) before starting up the process. The process will continue after logging off. There are limitations. Check your manual on this command. This is basically what you want though.