CAD CAM EDM DRO - Yahoo Group Archive

Re: EMC - now getting desperate!

Posted by psp@x...
on 1999-08-02 05:29:21 UTC
>How do I make this thing stop, instead of scrolling out of sight, it is
>impossible to read, the way it is.

If you have a disk file (say, file.txt) that you want to view that is more
than a page, "cat file.txt" will cause the whole thing to scoll by at once
with no pauses. Not good. You can "pipe" the output of the cat command to
the "more" program, which will batch the output into screenfuls and wait for
you to hit enter or space before going on. The command for that would be
"cat file.txt | more"

But you may not have a disk file, as when you are executing a big bad script
which generates screenfuls of mostly useless information which scrolls by,
interspersed with the one line error message that will tell you what's
really going wrong. So how do I capture all that info to a disk file, so I
can use the "cat file.txt | more" technique?

Here's how: If you have a script file (say, "script.file" that you want to
execute, and you want to capture all of its output to a logfile, use this:
./script.file 2>&1 | tee logfile

After it has run, you can "cat logfile | more" at your leisure and see just
what happened.

>I think I saw it saw "no config file found."
>FX86setup did not work with any form of caps and non caps when typed in.

It's not FX86setup, its XF86setup. (Stands for X-Free). (Or possibly
XF86Setup, capital S. I'm going from memory here).

Don't get too discouraged, Bill, you're not alone in this frustating
endeavor. Everyone who has ever set up a linux box has gone through this the
first few dozen times. It's such a tedious experience that there is a
tendency to repress all memory of it quickly. ;->

Keep on hammerin'

Phil Plumbo
St. Paul, MN

>--------------------------- ONElist Sponsor ----------------------------
>
>How do you enter ONElist's WEEKLY DRAWING for $100?
>By joining the FRIENDS & FAMILY program. For details, go to
>http://www.onelist.com/info/onereachsplash3.html
>
>------------------------------------------------------------------------
>Welcome to CAD_CAM_EDM_DRO@...,an unmodulated list for the
discussion of shop built systems in the above catagories.
>To Unsubscribe, read archives, change to or from digest.
>Go to: http://www.onelist.com/isregistered.cgi
>Log on, and you will go to Member Center, and you can make changes there.
>bill,
>List Manager
>

Discussion Thread

Ian W. Wright 1999-08-01 12:38:58 UTC EMC - now getting desperate! WAnliker@x... 1999-08-01 16:17:32 UTC Re: EMC - now getting desperate! Bob Bachman 1999-08-01 19:43:27 UTC Re: EMC - now getting desperate! Charles Gallo 1999-08-01 16:59:09 UTC Re: EMC - now getting desperate! WAnliker@x... 1999-08-01 16:59:49 UTC Re: EMC - now getting desperate! WAnliker@x... 1999-08-01 17:05:34 UTC Re: EMC - now getting desperate! Bob Bachman 1999-08-01 20:27:07 UTC Re: EMC - now getting desperate! Jon Elson 1999-08-01 22:23:30 UTC Re: EMC - now getting desperate! Jon Elson 1999-08-01 22:28:01 UTC Re: EMC - now getting desperate! Matt Shaver 1999-08-01 22:21:02 UTC Re: EMC - now getting desperate! Jon Elson 1999-08-01 22:33:13 UTC Re: EMC - now getting desperate! Tim Goldstein 1999-08-01 23:25:25 UTC RE: EMC - now getting desperate! WAnliker@x... 1999-08-01 23:49:18 UTC Re: EMC - now getting desperate! WAnliker@x... 1999-08-01 23:51:51 UTC Re: EMC - now getting desperate! bobach@x... 1999-08-02 05:19:39 UTC Re: EMC - now getting desperate! psp@x... 1999-08-02 05:29:21 UTC Re: EMC - now getting desperate! Bob Bachman 1999-08-02 09:08:12 UTC Re: EMC - now getting desperate! Jon Elson 1999-08-02 13:32:28 UTC Re: EMC - now getting desperate! Ian W. Wright 1999-08-02 12:55:46 UTC Re: EMC - now getting desperate! Ron Ginger 1999-08-03 16:17:11 UTC Re: EMC - now getting desperate!