按照如下方式安装 cifs 时,出现“mount.cifs:bad UNC”
mount -t cifs 192.168.56.24:/cifsnetapp_share /cifs -o credentials=/root/secrets/secrets,gid=5103,_netdev,vers=3.0,cifsac
你们能帮帮我吗
答案1
更正确的语法是(注意要避免//
使用 IP 地址之前的 和)::
sudo mount -t cifs //192.168.56.24/cifsnetapp_share /mnt -o credentials=/root/secrets/secrets,gid=5103,_netdev,vers=3.0,cifsac
我也没碰到过cifsac
。