What & How & Why

这是本文档旧的修订版!


Partition in Liunx

Hardrive format in Linux

For SATA, USB, SAS, these type of devices are showing in Linux like:

/dev/sd[a-]
the a after sd indicates the currently number of harddisk. The order of these number is only associate with the computer checking sequence for harddrives. First is a , then b… For older IDE, the old version of Linux call them:
/dev/hd[a-]
Since IDE harddrives is no longer used in new generation computers, some new version Linux just put them into sd aslo.

Other devices format

Devices Name in Liunx
SCSI / SAS / USB / SATA /dev/sd[a-p]
IDE /dev/hd[a-p](Only in older Liunx)
Virtual I/O(included in Liunx /dev/vd[a-p]
Floppy Disk /dev/fd[a-p]
Printer /dev/lp[0-2](25pin) # /dev/lp[0-15](USB)
Mouse /dev/mouse(currently in use) # /dev/psaux(PS/2) # /dev/input/mouse[0-15](general)
CD/DVD ROM /dev/scd[0-1](general) # /dev/sr[0-1](CentOS) # /dev/cdrom(currently in use)


For more devices name: Link

MBR

MBR: Master boot record
A master boot record (MBR) is a special type of boot sector at the very beginning of partitioned computer mass storage devices like fixed disks or removable drives intended for use with IBM PC-compatible systems and beyond. The concept of MBRs was publicly introduced in 1983 with PC DOS 2.0.
MBR infos are usually stored at the first sector of hardrive. It take space of one sector(usually 512Bytes). In this space, there are two mainly data are stored in it:

  • MBR (446Bytes in classic MBR)
  • Partition Table(64 Bytes, Divided into 4 parts)

So partition in Liunx usually is shown like:

/dev/sd[hardrive number][partition number]

Primary Partition

A primary partition contains one file system. In DOS and all early versions of Microsoft Windows systems, Microsoft required what it called the system partition to be the first partition.

Extended Partition

Partition is used for keeping data safe by separating sectors into different range. Because Partition table only supports 4 partitions, for getting more partitions, people use a record called extended boot record (EBR) to create a new partition that we called Extended partition.In Extended Partition, the space could be divided into 4 or more pieces. Each pieces is called Logical partition.

Devices Numbers

In MBR, the frist 4 numbers are reserved by primary partition and extended partition. Thus, the devices for partition should be like this:

/dev/sda[1-4] // primary partition and extended partition
/dev/sda[5-]  // logical partition

sda[1-4] are fully reserved by primary partition and extended partition even they don't exist. Thus the number of logical partition has to start from number 5. Only one extended partition could exist at the same time.