CIFS vs Windows Server 2012 R2 : error 13
Clash Royale CLAN TAG#URR8PPP
up vote
0
down vote
favorite
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 ?
windows cifs
add a comment |Â
up vote
0
down vote
favorite
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 ?
windows cifs
Read the man page formount.cifs
. In particular for theuser
(username
) parameter. Yours is wrong.
â roaima
Apr 20 at 8:04
see unix.stackexchange.com/questions/367884/â¦
â Rui F Ribeiro
Apr 20 at 10:30
I read that Windows 2012 uses vers=3.0.
â Gerard H. Pille
Apr 20 at 11:31
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
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 ?
windows cifs
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 ?
windows cifs
asked Apr 20 at 7:56
DragonF0rce
12
12
Read the man page formount.cifs
. In particular for theuser
(username
) parameter. Yours is wrong.
â roaima
Apr 20 at 8:04
see unix.stackexchange.com/questions/367884/â¦
â Rui F Ribeiro
Apr 20 at 10:30
I read that Windows 2012 uses vers=3.0.
â Gerard H. Pille
Apr 20 at 11:31
add a comment |Â
Read the man page formount.cifs
. In particular for theuser
(username
) parameter. Yours is wrong.
â roaima
Apr 20 at 8:04
see unix.stackexchange.com/questions/367884/â¦
â Rui F Ribeiro
Apr 20 at 10:30
I read that Windows 2012 uses vers=3.0.
â Gerard H. Pille
Apr 20 at 11:31
Read the man page for
mount.cifs
. In particular for the user
(username
) parameter. Yours is wrong.â roaima
Apr 20 at 8:04
Read the man page for
mount.cifs
. In particular for the user
(username
) parameter. Yours is wrong.â roaima
Apr 20 at 8:04
see unix.stackexchange.com/questions/367884/â¦
â Rui F Ribeiro
Apr 20 at 10:30
see unix.stackexchange.com/questions/367884/â¦
â Rui F Ribeiro
Apr 20 at 10:30
I read that Windows 2012 uses vers=3.0.
â Gerard H. Pille
Apr 20 at 11:31
I read that Windows 2012 uses vers=3.0.
â Gerard H. Pille
Apr 20 at 11:31
add a comment |Â
2 Answers
2
active
oldest
votes
up vote
0
down vote
After read Bugzilla:
bugzilla issue
Kernel 4.13 got an issue to use mount.cifs command properly.
I must boot on 4.12 kernel - I will update my post after that
add a comment |Â
up vote
0
down vote
accepted
I create another user instead of use account administrator and it works !
add a comment |Â
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
After read Bugzilla:
bugzilla issue
Kernel 4.13 got an issue to use mount.cifs command properly.
I must boot on 4.12 kernel - I will update my post after that
add a comment |Â
up vote
0
down vote
After read Bugzilla:
bugzilla issue
Kernel 4.13 got an issue to use mount.cifs command properly.
I must boot on 4.12 kernel - I will update my post after that
add a comment |Â
up vote
0
down vote
up vote
0
down vote
After read Bugzilla:
bugzilla issue
Kernel 4.13 got an issue to use mount.cifs command properly.
I must boot on 4.12 kernel - I will update my post after that
After read Bugzilla:
bugzilla issue
Kernel 4.13 got an issue to use mount.cifs command properly.
I must boot on 4.12 kernel - I will update my post after that
answered Apr 20 at 8:48
DragonF0rce
12
12
add a comment |Â
add a comment |Â
up vote
0
down vote
accepted
I create another user instead of use account administrator and it works !
add a comment |Â
up vote
0
down vote
accepted
I create another user instead of use account administrator and it works !
add a comment |Â
up vote
0
down vote
accepted
up vote
0
down vote
accepted
I create another user instead of use account administrator and it works !
I create another user instead of use account administrator and it works !
answered Apr 20 at 14:33
DragonF0rce
12
12
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f438884%2fcifs-vs-windows-server-2012-r2-error-13%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Read the man page for
mount.cifs
. In particular for theuser
(username
) parameter. Yours is wrong.â roaima
Apr 20 at 8:04
see unix.stackexchange.com/questions/367884/â¦
â Rui F Ribeiro
Apr 20 at 10:30
I read that Windows 2012 uses vers=3.0.
â Gerard H. Pille
Apr 20 at 11:31