ERRDOS - ERRnoaccess (Access denied.) - Samba
This is a discussion on ERRDOS - ERRnoaccess (Access denied.) - Samba ; I've looked around different forums and could come up with nothing..
This is what happens:
I mount the drive okay, with no problems.
I unmount, again, with no problems, using umount /mnt/win
I try mounting again by:
mount -t smbfs ...
-
ERRDOS - ERRnoaccess (Access denied.)
I've looked around different forums and could come up with nothing..
This is what happens:
I mount the drive okay, with no problems.
I unmount, again, with no problems, using umount /mnt/win
I try mounting again by:
mount -t smbfs -o user=usr,password=pass //192.168.168.172/c /mnt/win
And I get the error
8380: session setup failed: ERRDOS - ERRnoaccess (Access denied.)
SMB connection failed
Any ideas of what could be causing this?
-
Re: ERRDOS - ERRnoaccess (Access denied.)
The option should be "username", not "user"
Try this:
mount -t smbfs -o username=usr,password=pass //192.168.168.172/c
/mnt/win
or
smbmount //192.168.168.172/c /mnt/win -o username=usr,password=pass
If you have any domain, remember to add to password as:
mount -t smbfs -o username=usr/domain,password=pass //192.168.168.172/c
/mnt/win