我跟着;https://warlord0blog.wordpress.com/2018/03/27/access-dfs-shares-from-linux/
通过这个我可以手动挂载 cifs 共享,但是当我尝试通过 kerberos 将它挂载到 fstab 时;
//windows/share/filepath /home/Drive cifs user,uid=me,gid=metoo,vers=3.0,rw,sec=krb5 0 0
我明白了
➜ ~ sudo mount -a
mount error(2): No such file or directory
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
然后我将其更改为:
//windows/share/filepath /home/Drive cifs _netdev,sec=krb5,noserverino,user,uid=myname,cruid=myname,gid=mygroup,rw 0 0
它现在在启动时失败,但在我运行后工作;
sudo mount -a
我找到了一种在 Ubuntu 18.04 上对我有用的方法;
将胜利添加到下面的行;从改变;
至:
保存并退出
将 cifs.spnego 行上的 -c (因为它已被弃用)选项更改为 -t :
至;
保存并退出
还必须在 cifs.upcall 中添加 -t 选项
/etc/request-key.d/
改变;
至;
保存并退出
附加它;
保存并退出安装它;
您现在可以访问了,它也应该在重新启动时保持不变