我知道很多人都在这个问题上发帖,在我尝试发布这个问题之前我已经阅读了很多人的帖子。我已经尝试了许多提供的解决方案,到目前为止没有一个对我有用,请帮助!
背景:我正在尝试通过以下命令挂载我的 samba 共享:
sudo mount -v -t cifs -o username=white,password=123,vers=2.0,sec=ntlmssp \
//192.168.72.129/myshare /mnt/share
CIFS VFS: cifs_mount failed w/return code = -13
CIFS: Attempting to mount //192.168.72.129/myshare
CIFS VFS: cifs_mount failed w/return code = -13
[root@localhost mnt]# sudo mount -v -t cifs \
-o username=white,password=123,vers=2.0,sec=ntlmssp \
//192.168.72.129/myshare /mnt/share
mount.cifs kernel mount options: ip=192.168.72.129,unc=\\192.168.72.129\myshare,vers=2.0,sec=ntlmssp,user=white,pass=********
mount error(13): Permission denied
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs) and kernel log messages (dmesg)
上面是来自命令和 dmesg 的错误消息,我尝试了其他几个秒选项,同样的错误。
以下是我在 smb.conf 中的共享路径配置:
[myshare2]
comment = My share 2
path = root/share2
read only = No
我也尝试过使用凭据文件来安装,同样的错误。
请各位大佬指导和指教,谢谢!