Okay, I really can't figure it out... I just want to auto mount at starup to mount windowz fodler share into my linux box. I add this line into my /etc/fstab:
//192.168.0.4/shareit /mnt/windowz smbfs auto,guest 0 0
This is what I've got in my log file at startup:
tree connect failed: ERRDOS - ERRnoaccess (Access denied.) SMB connection failed
What should I do then? Anyway, if I manually mount with smbmount, everything works fine.
Exactly what command are you using to mount it that's working?
Remember that, when your system is booting, it's mounting filesystems with mount, not smbmount calls (probably just doing mount -a). In theory there's no difference, but you should probably be testing using mount instead of smbmount..
What should I put in fstab as a replacement of 'Shared\ Folder'? Maybe fstab can not handle long folder name?
Have you tried escaping with double quotes instead of the backslash? ie: adding "//windowzz/Shared Folder", including quote marks, instead of //windowzz/Shared\ Folder ?
-- SLUG - Sydney Linux User's Group - http://slug.org.au/ More Info: http://lists.slug.org.au/listinfo/slug
