I have the following shell script to map a drive to a windows machine:
Code:
echo Enter password:
stty -echo
read passwd
stty echo
mount -t smbfs -ousername=myusername,password=$passwd //192.168.2.5/sharename /mnt/mountname
It works fine and the share mounts, but for some reason I get this error:
4615: session request to 192.168.2.5 failed (Called name not present)
4615: session request to 192 failed (Called name not present)
Anyone have any clues?