Sharing Mounts
Occasionally, certain system administration tasks require access to the same file system from more than one place in the directory tree (for example, when preparing a chroot environment). To address such requirements, the mount command implements the --bind option that provides a means for duplicating certain mounts. Its usage is as follows:
mount--bindold_directorynew_directory
Although the above command allows a user to access the file system from both places, it does not apply on the file systems that are mounted within the original directory. To include these mounts as well, type:
mount--rbindold_directorynew_directory
Additionally, to provide as much flexibility as possible, Community Enterprise Operating System.8 implements the functionality known as shared subtrees. This feature allows you to use the following four mount types:
- Shared Mount
-
A shared mount allows you to create an exact replica of a given mount point. When a shared mount is created, any mount within the original mount point is reflected in it, and vice versa. To create a shared mount, type the following at a shell prompt:
mount--make-sharedmount_point
Alternatively, you can change the mount type for the selected mount point and all mount points under it:
mount--make-rsharedmount_point
See Example 2.4, "Creating a Shared Mount Point" for an example usage.
Example 2.4. Creating a Shared Mount Point
There are two places where other file systems are commonly mounted: the /media directory for removable media, and the /mnt directory for temporarily mounted file systems. By using a shared mount, you can make these two directories share the same content. To do so, as root, mark the /media directory as "shared":
~]#mount --bind /media /media~]#mount --make-shared /media
Then create its duplicate in /mnt by using the following command:
~]# mount --bind /media /mnt
You can now verify that a mount within /media also appears in /mnt. For example, if you have non-empty media in your CD-ROM drive and the /media/cdrom/ directory exists, run the following commands:
~]#mount /dev/cdrom /media/cdrom~]#ls /media/cdromEFI GPL isolinux LiveOS ~]#ls /mnt/cdromEFI GPL isolinux LiveOS
Similarly, you can verify that any file system mounted in the /mnt directory is reflected in /media. For instance, if you have a non-empty USB flash drive that uses the /dev/sdc1 device plugged in and the /mnt/flashdisk/ directory is present, type:
~]#mount /dev/sdc1 /mnt/flashdisk~]#ls /media/flashdisken-US publican.cfg ~]#ls /mnt/flashdisken-US publican.cfg
- Slave Mount
-
A slave mount allows you to create a limited duplicate of a given mount point. When a slave mount is created, any mount within the original mount point is reflected in it, but no mount within a slave mount is reflected in its original. To create a slave mount, type the following at a shell prompt:
mount--make-slavemount_pointAlternatively, you can change the mount type for the selected mount point and all mount points under it:
mount--make-rslavemount_pointSee Example 2.5, "Creating a Slave Mount Point" for an example usage.
Example 2.5. Creating a Slave Mount Point
Imagine you want the content of the
/mediadirectory to appear in/mntas well, but you do not want any mounts in the/mntdirectory to be reflected in/media. To do so, asroot, first mark the/mediadirectory as "shared":~]#
mount --bind /media /media~]#mount --make-shared /mediaThen create its duplicate in
/mnt, but mark it as "slave":~]#
mount --bind /media /mnt~]#mount --make-slave /mntYou can now verify that a mount within
/mediaalso appears in/mnt. For example, if you have non-empty media in your CD-ROM drive and the/media/cdrom/directory exists, run the following commands:~]#
mount /dev/cdrom /media/cdrom~]#ls /media/cdromEFI GPL isolinux LiveOS ~]#ls /mnt/cdromEFI GPL isolinux LiveOSYou can also verify that file systems mounted in the
/mntdirectory are not reflected in/media. For instance, if you have a non-empty USB flash drive that uses the/dev/sdc1device plugged in and the/mnt/flashdisk/directory is present, type: :~]#
mount /dev/sdc1 /mnt/flashdisk~]#ls /media/flashdisk~]#ls /mnt/flashdisken-US publican.cfg
- Private Mount
-
A private mount allows you to create an ordinary mount. When a private mount is created, no subsequent mounts within the original mount point are reflected in it, and no mount within a private mount is reflected in its original. To create a private mount, type the following at a shell prompt:
mount--make-privatemount_pointAlternatively, you can change the mount type for the selected mount point and all mount points under it:
mount--make-rprivatemount_pointSee Example 2.6, "Creating a Private Mount Point" for an example usage.
Example 2.6. Creating a Private Mount Point
Taking into account the scenario in Example 2.4, "Creating a Shared Mount Point", assume that you have previously created a shared mount point by using the following commands as
root:~]#
mount --bind /media /media~]#mount --make-shared /media~]#mount --bind /media /mntTo mark the
/mntdirectory as "private", type:~]#
mount --make-private /mntYou can now verify that none of the mounts within
/mediaappears in/mnt. For example, if you have non-empty media in your CD-ROM drive and the/media/cdrom/directory exists, run the following commands:~]#
mount /dev/cdrom /media/cdrom~]#ls /media/cdromEFI GPL isolinux LiveOS ~]#ls /mnt/cdrom~]#You can also verify that file systems mounted in the
/mntdirectory are not reflected in/media. For instance, if you have a non-empty USB flash drive that uses the/dev/sdc1device plugged in and the/mnt/flashdisk/directory is present, type:~]#
mount /dev/sdc1 /mnt/flashdisk~]#ls /media/flashdisk~]#ls /mnt/flashdisken-US publican.cfg
- Unbindable Mount
-
An unbindable mount allows you to prevent a given mount point from being duplicated whatsoever. To create an unbindable mount, type the following at a shell prompt:
mount--make-unbindablemount_pointAlternatively, you can change the mount type for the selected mount point and all mount points under it:
mount--make-runbindablemount_pointSee Example 2.7, "Creating an Unbindable Mount Point" for an example usage.
Example 2.7. Creating an Unbindable Mount Point
To prevent the
/mediadirectory from being shared, asroot, type the following at a shell prompt:~]#
mount --bind /media /media~]#mount --make-unbindable /mediaThis way, any subsequent attempt to make a duplicate of this mount will fail with an error:
~]#
mount --bind /media /mntmount: wrong fs type, bad option, bad superblock on /media/, missing code page or other error In some cases useful info is found in syslog - try dmesg | tail or so