当前位置导航:炫浪网>>网络学院>>操作系统>>Linux教程

使用Mount bind时需要注意的权限问题

在使用mount --bind olderdir newerdir命令来挂载一个目录到另一个目录后,newerdir的权限和所有者等所有信息会发生变化。如下所示:

挂载前:

drwxr-xr-x 2 root root 4096 Mar 12 12:01 pub

drwx------ 3 staffs staffs 4096 Mar 15 14:08 staffs

挂载:

# mount --bind staffs/ pub/

挂载后:

drwx------ 3 staffs staffs 4096 Mar 15 14:08 pub

drwx------ 3 staffs staffs 4096 Mar 15 14:08 staffs

从上可以看出,挂载后的目录继承了被挂载目录的所有属性,除了名称。

相关内容
赞助商链接