On Sun, 9 Jun 2002 xhtech@163.com wrote:
> I use this to mount shared files of remote windows2000 on my local linux:
>
> smbmount //remote-host/share /mnt/tmp -o username=***,password=***
>
> It works.
> But it prints out this:
> 1339:session request to 11.100.90.10 failed(called name not present)
> 1339:session request to 11 failed(called name not present)
>
> Why? Is this because of DNS ?
The remote-host doesn't like being called "11.100.90.10". Try this
instead:
smbmount //netbiosname/share ... -o ip=11.100.90.10,username...
Where netbiosname is the netbiosname of the machine.
/Urban