Lloyd Lowe wrote: > > Hi All, > > I would like to to know how to, using rc.local in the /etc/rc.d > directory, automate a smbmount with a specific username upon bootup. > The command for mounting a share is: mount -t smbfs -o username=USER,password=PASS //server/share /mnt/point
Or you can add an entry in /etc/fstab like this: //server/share /mnt/point smbfs username=USER,password=PASS 0 0 type this to test: # mount /mnt/point hope this helps. You can type man mount for the full help. -- frankie -- To unsubscribe from this list go to the following URL and read the instructions: http://lists.samba.org/mailman/listinfo/samba
