RE: FIND command Locks up Redhat System

2002-09-23 Thread Rechenberg, Andrew
PROTECTED]] Sent: Friday, September 20, 2002 2:30 PM To: [EMAIL PROTECTED] Subject: Re: FIND command Locks up Redhat System On Fri, 2002-09-20 at 07:46, Brice Hamilton wrote: > > I need to run the standard LINUX/UNIX 'FIND" command to locate > a particular file and when I r

Re: FIND command Locks up Redhat System

2002-09-20 Thread Gordon Messmer
On Fri, 2002-09-20 at 07:46, Brice Hamilton wrote: > > I need to run the standard LINUX/UNIX 'FIND" command to locate > a particular file and when I ran the command, the entire system just > locked up ! Dead as a doornail. Best advice you've been given is to bring the system down and run fsck

Re: FIND command Locks up Redhat System

2002-09-20 Thread Paul DiMarco
cc: redhat-list-admin Subject: Re: FIND command Locks up Redhat System

RE: FIND command Locks up Redhat System

2002-09-20 Thread Mike Burger
he problem having determined that's whats >wrong. FDisk isn't any help > > -Original Message- > From: Brenden Walker [mailto:[EMAIL PROTECTED]] > Sent: 20 September 2002 15:57 > To: '[EMAIL PROTECTED]' > Subject: RE: FIND command Locks up Redhat System

Re: FIND command Locks up Redhat System

2002-09-20 Thread Jack Bowling
> Bruce Hamilton wrote - > Hello, > > I ran into a problem yesterday with one of my production REDHAT Linux > servers. This particular server is running Oracle DB and is mainly a > Database server. I need to run the standard LINUX/UNIX 'FIND" command to > locate a particular file and when I

Re: FIND command Locks up Redhat System

2002-09-20 Thread Brian Ashe
Brice Hamilton, On Friday September 20, 2002 10:46, Brice Hamilton wrote: > Hello, > > I ran into a problem yesterday with one of my production REDHAT Linux > servers. This particular server is running Oracle DB and is mainly a > Database server. I need to run the standard LINUX/UNIX 'FIND" com

RE: FIND command Locks up Redhat System

2002-09-20 Thread Edward Wildgoose
--From: Brenden Walker [mailto:[EMAIL PROTECTED]]Sent: 20 September 2002 15:57To: '[EMAIL PROTECTED]'Subject: RE: FIND command Locks up Redhat System Hmm, never seen that myself..but.. Is is possible you've got a directory link that causes directer

Re: FIND command Locks up Redhat System

2002-09-20 Thread Sam . Sexton
What was the argument? I've seen problems on Solaris when (I think) find encounters pipes, so you might try specifying <-type f -a -name >. /Sam Sam Sexton Reuters Coventry Reuters Treasury Solutions (Internal) Reuters Treasury Solutions (public) Phone: +44 24 7625 6562 Fax:   +44 24 7655

RE: FIND command Locks up Redhat System

2002-09-20 Thread Brenden Walker
Title: Message Hmm, never seen that myself..but.. Is is possible you've got a directory link that causes directery traversal to recurse forever? -Original Message-From: Brice Hamilton [mailto:[EMAIL PROTECTED]] Sent: Friday, September 20, 2002 10:47 AMTo: [EMAIL PROTECTED]S

Re: find-command

1999-11-04 Thread Marek Antozi
On Wed, 3 Nov 1999, Mike Friedrichs wrote: > I have a executable file called jstar in /usr/bin, but when I enter 'find > / -iname j*' I receive the message 'not found'. try find / -name "j*" PAVUK LiNUX - Live free or die ___

Re: find-command

1999-11-03 Thread Darryl Harvey
You could also use the locate command locate j | grep jstar will find the exact file for you. Darryl At 04:59 PM 11/4/99 , you wrote: >try this: find / -iname 'j*' > >Simons > >- Original Message - >±H¥óªÌ: Mike Friedrichs <[EMAIL PROTECTED]> >¦¬¥óªÌ: Redhat Mail-List <[EMAIL PROTECT

Re: find-command

1999-11-03 Thread Simons
try this: find / -iname 'j*' Simons - Original Message - ±H¥óªÌ: Mike Friedrichs <[EMAIL PROTECTED]> ¦¬¥óªÌ: Redhat Mail-List <[EMAIL PROTECTED]> ¶Ç°e¤é´Á: 1999¦~11¤ë4¤é PM 01:20 ¥D¦®: find-command > I have a executable file called jstar in /usr/bin, but when I enter 'find > / -iname j

Re: find-command

1999-01-03 Thread Thomas Ribbrock \(Design/DEG\)
On Thu, Nov 04, 1999 at 05:18:32PM +1100, Darryl Harvey wrote: > You could also use the locate command > > locate j | grep jstar will find the exact file for you. [...] Of course, this will only work if the locate database is up to date, i.e. updatedb got run either by cron or manually. On mos

Re: find-command

1999-01-02 Thread Steve Borho
On Wed, Nov 03, 1999 at 11:20:16PM -0600, Mike Friedrichs wrote: > I have a executable file called jstar in /usr/bin, but when I enter 'find > / -iname j*' I receive the message 'not found'. > > Is there any obvious reasons why this command doesn't function as > prescribed. This is on Redhat 5.2.

Re: find-command

1999-01-02 Thread Vidiot
>The error message is saying the find command isn't found? No it isn't. >Even if it didn't find your file, there should be plenty of others >matching that pattern. No, it won't. >I can only assume the message read the command wasn't found, which case it >is a path problem or library problem. >

Re: find-command

1999-01-02 Thread fred smith
On Wed, Nov 03, 1999 at 11:20:16PM -0600, Mike Friedrichs wrote: > I have a executable file called jstar in /usr/bin, but when I enter 'find > / -iname j*' I receive the message 'not found'. > > Is there any obvious reasons why this command doesn't function as > prescribed. This is on Redhat 5.2.

Re: find-command

1999-01-02 Thread Larry Creech
Try: find . -name 'j*' On Thu, 4 Nov 1999, jwalsh wrote: > The error message is saying the find command isn't found? > Even if it didn't find your file, there should be plenty of others > matching that pattern. > I can only assume the message read the command wasn't found, which case i

Re: find-command

1999-01-02 Thread jwalsh
The error message is saying the find command isn't found? Even if it didn't find your file, there should be plenty of others matching that pattern. I can only assume the message read the command wasn't found, which case it is a path problem or library problem. J. On Wed, 3 Nov 1999, Mike Friedric

Re: find-command

1999-01-02 Thread Aaron Konstam
> > I have a executable file called jstar in /usr/bin, but when I enter 'find > / -iname j*' I receive the message 'not found'. > > Is there any obvious reasons why this command doesn't function as > prescribed. This is on Redhat 5.2. > > > > > -- > To unsubscribe: mail [EMAIL PROTECTED] wi