On Tue, Nov 20, 2001 at 09:34:51AM -0600, Simeon Johnston wrote: > I have been wondering about something lately and can't figure it out. > How do I background a process, say a kernel compile, so I don't have > to sit there and watch it i.e. log in - start process - log out - log > in later - find process done and everyones happy. > > How is this done? bash$ nohup make bzImage & Alternatively, if all you want is a log of the compile, but you want to also watch what's going on (and colorize it)... bash$ make bzImage 2>&1 | tee /tmp/make.out | grcat conf.gcc You can do lots of stuff. ;-) -- Chad Walstrom <chewie at wookimus.net> | a.k.a. ^chewie http://www.wookimus.net/ | s.k.a. gunnarr Key fingerprint = B4AB D627 9CBD 687E 7A31 1950 0CC7 0B18 206C 5AFD -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 232 bytes Desc: not available Url : http://shadowknight.real-time.com/pipermail/tclug-list/attachments/20011120/301788d9/attachment.pgp