当前位置:Linux教程 - Linux综合 - 使用Mount bind时需要注意的权限问题

使用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

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

更多内容请看Windows权限设置专题,或

(出处:http://www.sheup.com)