On Mon, Feb 18, 2002 at 04:29:47 -0800, Rodney Agha wrote: > I am having troubles mounting a NT work station > It can ping this station perfectly, > but is not mounted for backups, how would be the correct way to mount an > NT workstation on a unix box??
smbclient -L //boxname , to check if there are shares available and basic NBT (name resolution and basic connect as IPC$) does work. mount -t smbfs //boxname/share /dosc -o username=user,password="password" > would it be a samba config? nope, not only. many SMB tools refer to the samba config for their configuration, but this can be overriden. you should have configured the name resolution and authentification stuff already there. enter the above information into /etc/fstab: //boxname/share /dosc smbfs username=user,password=password 0 0

