A.3. Partition Naming Schemes and Mount Points
			A common source of confusion for users unfamiliar with Linux is the matter of how partitions are used and accessed by the Linux operating system. In DOS/Windows, it is relatively simple: Each partition gets a "drive letter." You then use the correct drive letter to refer to files and directories on its corresponding partition. This is entirely different from how Linux deals with partitions and, for that matter, with disk storage in general. This section describes the main principles of partition naming scheme and the way how partitions are accessed in Red Hat Enterprise Linux.
		
A.3.1. Partition Naming Scheme
Copy linkLink copied to clipboard!
				Red Hat Enterprise Linux uses a naming scheme that is file-based, with file names in the form of 
/dev/xxyN.
			
				Device and partition names consist of the following:
			
- /dev/
- This is the name of the directory in which all device files reside. Because partitions reside on hard disks, and hard disks are devices, the files representing all possible partitions reside in/dev/.
- xx
- The first two letters of the partition name indicate the type of device on which the partition resides, usuallysd.
- y
- This letter indicates which device the partition is on. For example,/dev/sdafor the first hard disk,/dev/sdbfor the second, and so on.
- N
- The final number denotes the partition. The first four (primary or extended) partitions are numbered1through4. Logical partitions start at5. So, for example,/dev/sda3is the third primary or extended partition on the first hard disk, and/dev/sdb6is the second logical partition on the second hard disk.
Note
					Even if Red Hat Enterprise Linux can identify and refer to all types of disk partitions, it might not be able to read the file system and therefore access stored data on every partition type. However, in many cases, it is possible to successfully access data on a partition dedicated to another operating system.
				
A.3.2. Disk Partitions and Mount Points
Copy linkLink copied to clipboard!
				In Red Hat Enterprise Linux each partition is used to form part of the storage necessary to support a single set of files and directories. This is done by associating a partition with a directory through a process known as mounting. Mounting a partition makes its storage available starting at the specified directory (known as a mount point).
			
				For example, if partition 
/dev/sda5 is mounted on /usr/, that would mean that all files and directories under /usr/ physically reside on /dev/sda5. So the file /usr/share/doc/FAQ/txt/Linux-FAQ would be stored on /dev/sda5, while the file /etc/gdm/custom.conf would not.
			
				Continuing the example, it is also possible that one or more directories below 
/usr/ would be mount points for other partitions. For instance, a partition (say, /dev/sda7) could be mounted on /usr/local/, meaning that /usr/local/man/whatis would then reside on /dev/sda7 rather than /dev/sda5.
			A.3.3. How Many Partitions?
Copy linkLink copied to clipboard!
				At this point in the process of preparing to install Red Hat Enterprise Linux, you must give some consideration to the number and size of the partitions to be used by your new operating system. However, there is no one right answer to this question. It depends on your needs and requirements.
			
				Keeping this in mind, Red Hat recommends that, unless you have a reason for doing otherwise, you should at least create the following partitions: 
swap, /boot/, and / (root).
			
				For more information, see Section 8.14.4.4, “Recommended Partitioning Scheme” for AMD64 and Intel 64 systems, Section 13.15.4.4, “Recommended Partitioning Scheme” for IBM Power Systems servers, and Section 18.15.3.4, “Recommended Partitioning Scheme” for IBM Z.