Subject: Re: samba
To: bsduser <bsdlist@quiz.com.br>
From: Daniel Parks <danielparks@bigfoot.com>
List: port-mac68k
Date: 08/07/2000 08:07:45
At 7:02 AM -0700 4/7/00, bsduser wrote:
>I did install samba 1.9.18p3.
>Who could tell me where is smb.conf file?
>And what is the correct command do find this file?
>Example:
>Find     ??????
>Tks
>Marco

find / -name "smb.conf"

will find all files named smb.conf.

The / means that it will search all files, if it were /usr it would only
search in /usr and it's subdirectories. The -name "smb.conf" directs it to
search by name; check man find for other options.

By including the quotes, you can use * and ?. (i.e. find /home/user -name
".*rc" finds all files in /home/user that start with a "." and end with
"rc".)

See man find for more information.

Hope this helps,
Daniel