I have a raspberry pi that I am trying to mount a remote samba share on, but I get permission denied. On another mounting the same share with th same command works.
Raspberry pi:
root@xbian:~# mount -t cifs //192.168.249.72/root /media/SS -o username=root,password=654321
mount error(13): Permission denied
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
root@xbian:~# uname -a
Linux xbian 3.9.8+ #2 PREEMPT Tue Jul 2 17:38:12 CEST 2013 armv6l GNU/Linux
Ubuntu:
root@dakLinux:~# mount -t cifs //192.168.249.72/root /media/SS -o username=root,password=654321
root@dakLinux:~# uname -a
Linux dakLinux 2.6.31-17-generic #54-Ubuntu SMP Thu Dec 10 16:20:31 UTC 2009 i686 i686 i686 GNU/Linux
Is this a kernel issue or a linux version issue? Is there a way to make this work?
use sec=ntlm
in the options
Kernel versions post 3.8.x
have this changed, and mount.cifs
doesn't pass this argument, explicitly, Hence fails
mount -t cifs //192.168.249.72/root /media/SS -o username=root,password=654321,sec=ntlm
and it should work
来源:https://stackoverflow.com/questions/19412617/mount-t-cifs-works-on-one-version-of-linux-but-not-another