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
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 t
cc:
redhat-list-admin Subject: Re: FIND command Locks up
Redhat System
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
> 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
> loca
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 L
--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
x: +44 24 7655 5203
Brice Hamilton <[EMAIL PROTECTED]>
Sent by: [EMAIL PROTECTED]
20/09/02 15:46
Please respond to redhat-list
To: [EMAIL PROTECTED]
cc:
Subject: FIND command Locks up Redhat System
Header: Internal Use
ECTED]Subject: FIND command Locks
up Redhat System
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" comm
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 ran the command, t
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
___
>¦¬¥óªÌ: 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*' I receive the message 'not found'.
> >
>
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 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] with "unsubscribe"
as the S
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
t you are seeing, but find *does* cross filesystems
Yes, I'm suprised 'find' would need to support the -xdev argument to make
it NOT cross filesystem boundaries if that was the default behaviour to
start with.
Every find command I've used crosses fs boundaries without blinking.
-
find crosses partition/filesystem boundries just fine, on both a 5.1 and
6.0 system - even nfs mounted drives and smbmounted drives :)
RH51findutils-4.1-24
RH6.0 findutils-4.1-31
not sure what you are seeing, but find *does* cross filesystems
escaping the arguments applies to all commands
t the quotation
marks or the escape characters.
Mike
-Original Message-
From: Larry Creech <[EMAIL PROTECTED]>
To: Redhat Mail-List <[EMAIL PROTECTED]>
Date: Thursday, November 04, 1999 10:46 AM
Subject: Re: find-command
>Try:
>
> find . -name 'j*'
>
>
>
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.
>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
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.
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
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
>
> 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
24 matches
Mail list logo