can someone send me an example of a fstab entry for a samba mount-point? Also, how can I use the user option so that any user(and not just root) can mount and umount? Thanks! please reply to all __________________________________________________ Do You Yahoo!? Try FREE Yahoo! Mail - the world's greatest free email! http://mail.yahoo.com/
Here is what works in my REDHAT 7.2 box. //JHAMMER6/public /mnt/NetWork/JHAMMER6 smbfs defaults,guest You might try these options: defaults,user,guest if a regular user cannot mount this share. YYMV. Joel On Thu, Mar 07, 2002 at 10:15:51AM -0800, K J wrote:> can someone send me an example of a fstab entry for a > samba mount-point? Also, how can I use the user option > so that any user(and not just root) can mount and > umount? > > Thanks! > please reply to all > > > > __________________________________________________ > Do You Yahoo!? > Try FREE Yahoo! Mail - the world's greatest free email! > http://mail.yahoo.com/ > > -- > To unsubscribe from this list go to the following URL and read the > instructions: http://lists.samba.org/mailman/listinfo/samba
On Thu, 7 Mar 2002, K J wrote:> can someone send me an example of a fstab entry for a > samba mount-point? Also, how can I use the user option > so that any user(and not just root) can mount and > umount?The 'user' fstab option isn't working to well with smbfs. It causes other options to be lost and probably does not work at all on some setups. /etc/fstab: //localhost/tmp /mnt/smb smbfs defaults,user,credentials=/etc/.smb_auth But you must also make smbmnt setuid root for this to work (man chmod). /Urban