情况:
我们使用 Nexenta 设备进行 NFS 文件服务 (nfs v3)。我们正在共享一条匿名读/写访问的路径。
我们有一个 Linux 主机,我们想挂载导出的读/写共享,并允许匿名读/写访问该客户端机器上的挂载共享。不幸的是,最终发生的是 root 可以写入共享,但非特权用户不能。
使用以下方法挂载共享:
# mount -t nfs -o rw 10:10:xx:xx:/path/to/share /mnt/mounted_path
# mount -t nfs -o rw,users 10:10:xx:xx:/path/to/share /mnt/mounted_path
# mount.nfs 10:10:xx:xx:/path/to/share /mnt/mounted_path -o rw
我们有特定用户打算用于共享上的匿名使用。所以我尝试以该用户身份安装卷:
# su - shared_user
$ sudo mount.nfs 10:10:xx:xx:/path/to/share /mnt/mounted_path -w -o user=shared_user,rw
mount.nfs: an incorrect mount option was specified
去读了一些:http: //nfs.sourceforge.net/nfs-howto/ar01s06.html。
决定尝试以下方法,尝试安装时会出现以下错误:
# mount -t nfs -orw,no_root_squash 10:10:xx:xx:/path/to/share /mnt/mounted_path
mount.nfs: an incorrect mount option was specified
# mount -t nfs -orw,nroot_squash 10:10:xx:xx:/path/to/share /mnt/mounted_path # for grins and giggles.
mount.nfs: an incorrect mount option was specified
$ sudo mount.nfs 10:10:xx:xx:/path/to/share /mnt/mounted_path -w -o user=shared_user,rw,no_root_squash
mount.nfs: an incorrect mount option was specified
我只是 SOL 还是我在这里根本缺少什么?这是我试图寻找的圣杯吗?我从来没有大量使用过 NFS,所以现在我有点不知所措。蒂亚!