I tried to mount manually on my Linux shared folders from windows server 2012 R2.
The syntaxe is right but Im stuck on the same issue error 13:
#mount.cifs //ip/division /mnt/division -o username=bob@dude-uk,password=myscretpass,vers=2.1
dmesg:
Status code returned 0xc000006d STATUS_LOGON_FAILURE
CIFS VFS: Send error in SessSetup = -13
CIFS VFS: cifs_mount failed w/return code = -13
If I tried other vers= options I got the same issue. If I remove the option vers= then syslog claim :
No dialect specified on mount. Default has changed to a more secure dialect, SMB2.1 or later (e.g. SMB3), from CIFS (SMB1). To use the less secure SMB1 dialect to access old servers which do not support SMB3 (or SMB2.1) specify vers=1.0 on mount.
If I use option sec= then I specify this option then I got error 126
#mount.cifs //ip/division /mnt/division -o username=bob@dude-uk,password=myscretpass,vers=2.1,sec=krb5
mount error(126): Required key not available
Package Keyutils is installed.
If I tried other sec= options I got error 22 or error 13
if I tried to prompt the password:
#mount.cifs //ip/division /mnt/division -o username=bob@dude-uk
Password for bob@dude-uk@//ip/division:
mount error(13): Permission denied
Nemo (file explorer in Linux Mint) can mount the shared folders. MacOsx can mount shared folders.
My kernel is 4.13 Mount.cifs is 6.4 I tried to mount manually before setup my fstab.
Do you have any idea ?