Hi Jody,

On Wed, 25 Aug 2004 16:19:52 -0400 (EDT),
[EMAIL PROTECTED] <[EMAIL PROTECTED]>
wrote:
> Can anyone tell me what I need to do to get write access to the mount
> bellow as a regulare user.  Its a windows 2003 server with signing off.
> Everything seems to works well as root.
> smbmount //downtown/sysback /mnt/smb/downtown/ -o
> username=username/servername%'!password' gid=100 uid=1000

You can specify a umask in mount, from the manpage of mount:
       umask=value
              Set  the  umask  (the  bitmask  of  the permissions that are not
              present). The default is the umask of the current process.   The
              value is given in octal.

It's not allways that easy to set since it's the reverse mask, eg the
permissions you end up with are an AND of the value you give and
either 0666 or 0777 (depending on whether it's a directory or a normal
file if I recall correctly). So in your case you would probably want
something like umask=000 to allow everyone rw, or umask=002 to allow
owner and group rw. (and others read and on directories execute)

I hope this works with smbmount though. :-)

greets,
Wim


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to