mount --bind

感情迁移 提交于 2020-02-20 04:46:18

 

       The bind mounts.
              Since Linux 2.4.0 it is possible to remount part of the  file  hierarchy  somewhere
              else. The call is
                     mount --bind olddir newdir
              or shortoption
                     mount -B olddir newdir
              or fstab entry is:
                     /olddir /newdir none bind

              After  this  call  the  same  contents  is  accessible in two places.  One can also
              remount a single file (on a single file).

              This call attaches only (part of) a single filesystem, not possible submounts.  The
              entire file hierarchy including submounts is attached a second place using
                     mount --rbind olddir newdir
              or shortoption
                     mount -R olddir newdir

              Note  that the filesystem mount options will remain the same as those on the origi-
              nal mount point, and cannot  be  changed  by  passing  the  -o  option  along  with
              --bind/--rbind. The mount options can be changed by a separate remount command, for
              example:

                     mount --bind olddir newdir
                     mount -o remount,ro newdir
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!