On Apr 7, 2005 9:11 AM, vinai <[EMAIL PROTECTED]> wrote: > Is there a way to track > the output of the kernel compilation process, other than redirection > using the ">" or ">&" constructs ?
Depends what you're trying to do. One thing that can be helpful is to redirect the output to both the screen and to a logfile: $ make whatever 2>&1 | tee name-of-log-file If you want to start compiling on another machine, then log back in later, you can log into the remote machine, run "screen", and start the build. Then you "detach" from screen (control-A D, if memory serves), and the compilation process keeps going. You can reattach later. -- - Charles Lepple -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]