LINFO

Mount Point Definition



A mount point is a directory (typically an empty one) in the currently accessible filesystem on which an additional filesystem is mounted (i.e., logically attached).

A filesystem is a hierarchy of directories (also referred to as a directory tree) that is used to organize files on a computer system. On Linux and other Unix-like operating systems, at the very top of this hierarchy is the root directory, which contains all other directories on the system, inclusive of their subdirectories, etc. A variant of this definition is the part of the entire hierarchy of directories (i.e., of the directory tree) that is located on a single partition or disk. A partition is a logically independent section of a hard disk drive (HDD).

The mount point becomes the root directory of the newly added filesystem, and that filesystem becomes accessible from that directory. Any original contents of that directory become invisible and inaccessible until the filesystem is unmounted (i.e., detached from the main filesystem).

The default mount points for a system are the directories in which filesystems will be automatically mounted unless told by the user to do otherwise. They are listed in /etc/fstab, which is a plain text configuration file that contains information about the major filesystems on a computer. The first column in /etc/fstab shows the device (i.e., the partition or disk), and the second column shows its default mount point. The contents of /etc/fstab can easily, and safely, be viewed with a command such as cat as follows:

cat /etc/fstab

The mount points for devices listed in /etc/fstab can easily be changed with a text editor such as gedit or vi. Root (i.e., administrative) permission is required, and it can be conveniently acquired on a home computer (or other computer over which the user has complete control) by using the su (i.e., substitute user) command and entering the root password. As it is easy to damage /etc/fstab so that a system will not boot (i.e., start up) properly, it is important to make a backup copy before attempting to edit it.

For example, external storage media (e.g., CDROMs and floppy disks) are usually mounted in subdirectories of the /mnt directory (i.e., /mnt/cdrom and /mnt/floppy), but they could instead be mounted by default in any other directory created by the user (e.g., /cdrom or /mnt/disk) and recorded into the mount point column.

After a computer has completed booting, devices other than those that are mounted automatically can be mounted either at existing mount points or at new mount points. For example, if it is desired to mount a partition named /dev/hda5 (which is the fifth partition on the first HDD), a new directory could be created for it, such as /par5 or /home/p5, and then that partition could be mounted using the mount command, i.e.,

mount /dev/hda5 /par5

If it is desired to have devices mounted at such new mount points automatically at boot time, the corresponding data can be added to /etc/fstab.

The concept of mount points can seem confusing to new users because they have not had to be concerned with mounting when using the Microsoft Windows operating systems. Those systems have avoided user mounting at the cost of a loss of flexibility of system configuration.

Another reason that it can seem confusing is that the term implies a point, whereas it is actually a directory. Directories are usually thought of as being containers (i.e., for holding other directories and files) rather than as points. However, the concept can become clearer if directories are instead visualized as nodes, i.e., as points, on a tree diagram of a filesystem from which other directories and files can branch off rather than as containers.






Created March 4, 2006.
Copyright © 2006 The Linux Information Project. All Rights Reserved.