Hi Scott,
Can you re-state your problem?
Do you have a windows domain controller and want to map home directories on the domain controller to linux workstations?
Linux workstations generally mount a network share from a windows machine using the following format:
Code:
mount -t smbfs -o username=<domain>\<username>,password=<domainpassword> //<servername>/<sharename$> /path/to/mount/on
The line to add to the /etc/fstab file to do the same thing on boot would be:
Code:
//<servername>/<sharename$> /path/to/mount/on smbfs auto,username=<domain>\<username>,password=<domainpassword> 0 0