Re: Subject: RE: log-reader

2002-11-21 Thread pll
In a message dated: Thu, 21 Nov 2002 14:22:49 EST Michael O'Donnell said: >Doesn't Emacs have a client-server mode (or version) >wherein one heavyweight Emacs process remains >resident in memory and then a bunch of lightweight >Emacs processes can connect to it? Yes, gnuserver and gnuclient. If

Re: Subject: RE: log-reader

2002-11-21 Thread Kevin D. Clark
[EMAIL PROTECTED] (Michael O'Donnell) writes: > Doesn't Emacs have a client-server mode (or version) > wherein one heavyweight Emacs process remains > resident in memory and then a bunch of lightweight > Emacs processes can connect to it? Yes. Add this to your .emacs: (gnuserv-start) and yo

RE: Subject: RE: log-reader

2002-11-21 Thread Price, Erik
> -Original Message- > From: Kevin D. Clark [mailto:[EMAIL PROTECTED]] > Sent: Thursday, November 21, 2002 1:58 PM > To: [EMAIL PROTECTED] > Cc: [EMAIL PROTECTED] > Subject: Re: Subject: RE: log-reader > > > The Emacs process that I'm typing this in has

Re: Subject: RE: log-reader

2002-11-21 Thread Michael O'Donnell
> Thanks for the clarification, as I generally invoke an editor > ad hoc for editing specific documents, and then dissolve it when > I'm done. If you (and other emacs users) fire it up as part of > your initial window invocations and leave it up during your entire > working session then, yes, I

Re: Subject: RE: log-reader

2002-11-21 Thread Bayard R. Coolidge
Kevin - Thanks for the clarification, as I generally invoke an editor ad hoc for editing specific documents, and then dissolve it when I'm done. If you (and other emacs users) fire it up as part of your initial window invocations and leave it up during your entire working session then, yes, I can

Re: Subject: RE: log-reader

2002-11-21 Thread Kevin D. Clark
"Bayard R. Coolidge" <[EMAIL PROTECTED]> writes: > I submit > that firing up an entire editor (e.g. emacs, as suggested by > Kevin Clark) is an unworthy consumption of valuable system > resources, however fun it might be. I never suggested firing up an editor to do this. I merely suggested that

Re: Subject: RE: log-reader

2002-11-21 Thread Tom Buskey
"Bayard R. Coolidge" said: >system crash vector would close a relay contact and set off >an audible alarm. In their case, it was a tape recording of >a human death scream. Rather unnerving for service personnel >on their first service calls to this particular facility, >but at least everyone knew

Re: Subject: RE: log-reader

2002-11-21 Thread Bayard R. Coolidge
OK great - Both Tom and Ben Boulanger nominated 'swatch', which goes to show that you can teach an old dog like me new tricks. The capability of triggering a sound event is fairly routine nowadays, both under Linux as well as under certain MS products. Back when I started with DEC in '78, I was

Re: Subject: RE: log-reader

2002-11-21 Thread Tom Buskey
"Bayard R. Coolidge" said: >Be that as it may, it then becomes an interesting problem of >what to do about the information as it rolls in. In my case, >I do a 'tail -f /var/log/messages' as part of my ppp startup, >and I can monitor "real time" any attempts to hit my system. >But, realistically,

Re: Subject: RE: log-reader

2002-11-21 Thread Ben Boulanger
On Thu, 21 Nov 2002, Bayard R. Coolidge wrote: > So, I'd love to have an audible beep and/or (*gasp*) a pop-up > window telling me when I'm being, er, groped over the network. > > Any ideas? Use swatch: http://www.oit.ucsb.edu/~eta/swatch/ You can set a number of actions upon receiving a regex -

Re: Subject: RE: log-reader

2002-11-21 Thread Bayard R. Coolidge
I was amused by this whole discussion, since the trick of using 'tail -f ' is fairly universal amongst the various UNIX implementations. I used it for years on Tru64 UNIX and its antecedants while monitoring my testing (I did TruCluster software QC for several years before my retirement). It is a

Re: Subject: RE: log-reader

2002-11-21 Thread Kevin D. Clark
As an alternate solution, if the original poster is an Emacs user, he could have used "live-find-file". --kevin -- Kevin D. Clark / Cetacean Networks / Portsmouth, N.H. (USA) cetaceannetworks.com!kclark (GnuPG ID: B280F24E) alumni.unh.edu!kdc ___ gnhl

Re: Subject: RE: log-reader

2002-11-21 Thread Michael O'Donnell
FYI, another way to monitor changing events is via the "watch" command, though it's used in slightly different circumstances than the OP asked about; it's prepared to repeatedly execute some command and keep the screen updated with the results. Example: watch ifconfig ...will show the chang

RE: Subject: RE: log-reader

2002-11-21 Thread Price, Erik
> -Original Message- > From: Michael O'Donnell [mailto:[EMAIL PROTECTED]] > Sent: Thursday, November 21, 2002 10:45 AM > To: [EMAIL PROTECTED] > Subject: Re: Subject: RE: log-reader > > > > > I wrote: > > prettyMuchEverybody wrote: > &g

Re: Subject: RE: log-reader

2002-11-21 Thread Michael O'Donnell
I wrote: > prettyMuchEverybody wrote: > > tail -f logfile > > Sheesh. I hereby certify us all as Linux Professionals. Erik wrote: >Fine by me. It makes me look less stupid for not knowing. ;) >That would at least make me a Linux User, as opposed to a Linux Luser. Since I'm not sure how you

RE: Subject: RE: log-reader

2002-11-21 Thread Price, Erik
> -Original Message- > From: Michael O'Donnell [mailto:[EMAIL PROTECTED]] > Sent: Thursday, November 21, 2002 10:21 AM > To: [EMAIL PROTECTED] > Subject: Subject: RE: log-reader > > > > prettyMuchEverybody wrote: > > tail -f logfile > &g

Subject: RE: log-reader

2002-11-21 Thread Michael O'Donnell
prettyMuchEverybody wrote: > tail -f logfile Sheesh. I hereby certify us all as Linux Professionals. . ___ gnhlug-discuss mailing list [EMAIL PROTECTED] http://mail.gnhlug.org/mailman/listinfo/gnhlug-discuss

RE: log-reader

2002-11-21 Thread Price, Erik
> -Original Message- > From: Tilly, Lawrence [mailto:[EMAIL PROTECTED]] > Sent: Thursday, November 21, 2002 10:04 AM > To: Price, Erik; [EMAIL PROTECTED] > Subject: RE: log-reader > > > Try this: tail -f someapp.log > I knew it was some commonly-use

RE: log-reader

2002-11-21 Thread Tilly, Lawrence
Try this: tail -f someapp.log -Original Message- From: Price, Erik [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 21, 2002 9:59 AM To: [EMAIL PROTECTED] Subject: log-reader Folks, I seem to recall that there is a way to interactively read logfiles (as they are being generated

Re: log-reader

2002-11-21 Thread Kenneth E. Lussier
tail -f /var/log/whatever. C-Ya, Kenny On Thu, 2002-11-21 at 09:59, Price, Erik wrote: > Folks, > > I seem to recall that there is a way to interactively read logfiles > (as they are being generated) from the command line, but I completely > forget what utility that is. A quick reminder, anyone

Re: log-reader

2002-11-21 Thread Michael O'Donnell
tail -f yourLogFileHere ___ gnhlug-discuss mailing list [EMAIL PROTECTED] http://mail.gnhlug.org/mailman/listinfo/gnhlug-discuss

Re: log-reader

2002-11-21 Thread bscott
On Thu, 21 Nov 2002, at 9:59am, [EMAIL PROTECTED] wrote: > I seem to recall that there is a way to interactively read logfiles > (as they are being generated) from the command line, but I completely > forget what utility that is. A quick reminder, anyone? tail -f filename -- Ben Scott <[EMAIL

log-reader

2002-11-21 Thread Price, Erik
Folks, I seem to recall that there is a way to interactively read logfiles (as they are being generated) from the command line, but I completely forget what utility that is. A quick reminder, anyone? (Right now I'm just "less"ing the files after the expected error is generated.) (on Gentoo Linu