mount:无法挂载块设备

mount:无法挂载块设备

我已将 nfs 共享安装到 RedHat 服务器。

server:/NFS/Test on /test/test/nfs type nfs (ro,n......

现在我想将此共享内的每个文件夹绑定到其他地方。

sudo mount --bind /test/test/nfs/dir1 /test/test/dir1/dir1

并收到此错误:

mount:块设备 /test/test/nfs/dir1 被写保护,以只读方式挂载
mount:无法以只读方式挂载块设备 /test/test/nfs/dir1

我想以只读方式挂载,而不是 rw 方式。但是,它没有挂载,所有权限都没问题。你有什么建议吗?或者 mount --bind 有什么要求吗?谢谢

答案1

不确定你正在尝试做什么是可能的,从手册页

绑定挂载调用仅附加单个文件系统(的一部分),而不是可能的子挂载。包括子挂载在内的整个文件层次结构通过使用以下方式附加到第二个位置:

mount --rbind olddir newdir

相关内容