I have Samba working fine and can mount drives on my 9x/NT boxes from
Linux using smbmount. However, it would be nice if it could be done
using ordinary 'mount', using the normal mount syntax - and,
eventually, to be done via entries in the /etc/fstab file.
Is this possible?
"man mount" says this on the subject:
Mount options for smbfs
Just like nfs, the smb implementation expects a binary
argument (a struct smb_mount_data) to the mount system
call. This argument is constructed by smbmount(8) and the
current version of mount (2.6c) does not know anything
about smb.
.... which seems to say, "You're on your own in getting this to work".
I can do: smbmount //machine/service /mnt -U someuser -I machine
but when I do: mount -t smbfs //machine/service /mnt
it doesn't work. The question is: How to pass those other args to
mount that smbmount needs?
Please help...