Hi<br>
>    I have always tried below and always got funny response<br>
>   #find  / -name foo.txt<br>
Funny responses should be listed here.   You are probably getting lots<br>
of error listings about permissions if you are not running find as root.<br> This is what I got (Run as root)<br>
# find / -name *ldif<br>
/usr/share/doc/python-ldap-2.0.6/Demo/Lib/ldif<br>
find: WARNING: Hard link count is wrong for /proc: this may be a bug in
your filesystem driver.  Automatically turning on find's -noleaf
option.  Earlier results may have failed to include directories
that should have been searched.<br>
<br>
<div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">find / /home /usr /data -xdev -name foo.txt</blockquote><div><br>
Sorensen suggestion fixed it<br>
# find / -xdev -name *ldif<br>
/usr/share/doc/python-ldap-2.0.6/Demo/Lib/ldif<br>
<br>
Thank you<br>
William<br>
 </div><br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Or just install locate or slocate from the findutils and have it index<br>everything every night and just use: locate 
foo.txt<br><br>Much faster and more efficient.<br><br>Len Sorensen<br>--<br>The Toronto Linux Users Group.      Meetings: <a href="http://tlug.ss.org">http://tlug.ss.org</a><br>TLUG requests: Linux topics, No HTML, wrap text below 80 columns
<br>How to UNSUBSCRIBE: <a href="http://tlug.ss.org/subscribe.shtml">http://tlug.ss.org/subscribe.shtml</a><br></blockquote></div><br>