Filesystems

A filesystem is composed of files and directories, all under a single root directory. The root directory and the directories below it may contain any number of files and subdirectories. A filesystem often looks like an inverted tree with the directories as branches and the files as leaves. Filesystems reside on mass storage devices such as diskette drives, hard drives, and CD-ROMs.

For example, a diskette drive on DOS and Windows machines is typically referenced by A:\. This describes both the device (A:), and the root directory on that device (\). The primary hard drive on the same systems is typically referred to as the "C" drive because the device specification for the first hard drive is C:. To specify the root directory on the C drive, you would use C:\.

Under this arrangement, there are two filesystems — the one on A:, and the one on C:. In order to specify any file on a DOS/Windows filesystem, you must either explicitly specify the device on which the file resides, or it must be on the system's default drive (which is where DOS' C prompt comes from — that's the default drive on a system with a single hard drive).

Under Linux, it is possible to link the filesystems on several mass storage devices together into a single, larger filesystem. This is done by placing one device's filesystem "under" a directory on another device's filesystem. So while the root directory of a diskette drive on a DOS machine may be referred to as A:\, the same drive on a Linux system may be accessible as /mnt/floppy.

The process of merging filesystems in this way is called mounting. When a device is mounted, it is then accessible to the system's users. The directory under which a mounted device's filesystem is accessible is known as the mount point. In the previous paragraph's example, /mnt/floppy was the diskette drive's mount point. Note that there are no restrictions (other than common conventions) on the naming of mount points. We could have just as easily mounted the floppy to /long/path/to/the/floppy/drive.

One thing to keep in mind is that all of a device's files and directories are relative to its mount point. Consider the following example:

So, if the above describes the individual filesystems, and you mount the CD-ROM at /foo, the new operating system directory structure would be:

To mount a filesystem make sure to be logged in as root, or become root using the su command. For the latter, type su at the shell prompt and then enter the root password. Once you are root, type mount followed by the device and then the mount point. For example, to mount the first diskette drive on /mnt/floppy, you would type the command mount /dev/fd0 /mnt/floppy.

At installation, Red Hat Linux will create /etc/fstab. This file contains information on devices and associated mount points. The advantage to this file is that it allows you to shorten your mount commands and it controls which filesystems are automatically mounted when the system is booted.

Using the information in /etc/fstab, you can type mount and then either the mount point or the device. The mount command will look for the rest of the information in /etc/fstab. It's possible to modify this file by hand, or by using Linuxconf.

Reviewing Your Current Filesystem

We'll start by looking at your current directory structure.

Figure 14-9. Local Volume Screen

The fields, as shown in Figure 14-9, are:

Filesystems from other machines on a network may also be available. These can range from one small directory to entire volumes. No information on Size or Partition type is available for these partitions. Additional information on NFS filesystems (if any are available) will be contained under:

Config => File systems => Access nfs volume

The screen is similar to the Local Volume screen (see Figure 14-9), with some notable differences in the information provided for each entry:

Adding NFS Mounts

NFS (Network File System) is a way for computers to share sections of their local filesystem across a network. These sections may be as small as a single directory, or include thousands of files in a vast hierarchy of directories. For example, many companies will have a single mail server with individuals' mail files served as an NFS mount to each users' local systems.

To add an NFS mount:

Figure 14-10. Volume Specification Screen

You will need to fill in the three fields on the Base tab next (see Figure 14-10).

This is all you need to get the mount created. Linuxconf will update your /etc/fstab file accordingly. If you are aware of additional requirements, please read the help file on the Volume specification screen and see the mount man page for more information.

Once you have entered the information, select Accept.