mount -t cifs + 安装错误(13):权限被拒绝

mount -t cifs + 安装错误(13):权限被拒绝

我们有带有 IP 地址的 Windows 服务器 -98.12.23.34以及文件夹max_stage

从 Windows 浏览器来看,它看起来像:

   This PC > max_stage(K)

我们希望将 WIN 文件夹挂载max_stage/mnt/target 我们的 Linux 服务器 - RHEL 7.6 服务器上。

我们已经安装了 cifs rpm

rpm -qa | grep cifs
cifs-utils-6.2-7.el7.x86_64

我们做了以下事情:

 mount -t cifs -o vers=2.0 -v //98.12.23.34/max_stage  /mnt/target -o username=papa,pass='japeto'

我们得到以下异常:

mount.cifs kernel mount options: ip=98.12.23.34,unc=\\98.12.23.34\max_stage,vers=2.0,user=papa,passs,pass=********
mount error(13): Permission denied   <-------------
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)

如何知道为什么我们会得到异常Permission denied (13),以及我们需要做哪些额外的配置?

或者

如何在 WIN 机器上检查 papa/japeto 的用户/密码是否正确?

参考 -https://phoenixnap.com/kb/linux-mount-cifs

相关内容