我有一个覆盆子pi,我正在尝试安装远程samba共享,但我得到了许可被拒绝。在另一个安装上,使用相同命令的相同共享有效。
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
这是内核问题还是Linux版本问题?有没有办法使这项工作?
答案 0 :(得分:9)
在选项中使用sec=ntlm
内核版本post 3.8.x
已更改,mount.cifs
未明确传递此参数,因此失败
mount -t cifs //192.168.249.72/root /media/SS -o username=root,password=654321,sec=ntlm
它应该有效