我在 Windows Server 2016 上创建了一个 NFS 文件共享,配置如下:
然后我更新了安全性,以确保目录 e:\docker\volumes 中的每个文件都可以被匿名用户修改:
在我的 ubuntu 机器上我正在按如下方式安装文件共享:
sudo mount 192.168.1.10:/dockervolumes /mnt/dockervolumes -o rw
运行正常。我可以毫无问题地查看其中的文档,并且所有文件都具有以下权限
但是创建文件会出现以下情况:
ross@dar-docker-02:/mnt/dockervolumes/travis$ sudo touch test.txt touch: cannot touch 'test.txt': Permission denied
并创建目录:
ross@dar-docker-02:/mnt/dockervolumes/travis$ sudo mkdir test mkdir: cannot create directory ‘test’: Input/output error
为什么共享是只读的?!