C.4. Linux 里面的设备名称
Linux 的磁盘和分区命名可能与其它操作系统不同。您需要知道创建和挂接分区时 Linux 所使用的设备名称。这里是基本的命名方案:
第一个软盘驱动器被命名为
/dev/fd0
。第二个软盘驱动器被命名为
/dev/fd1
。The first hard disk detected is named
/dev/sda
.The second hard disk detected is named
/dev/sdb
, and so on.第一个 SCSI 光盘驱动器被命名为
/dev/scd0
,也叫/dev/sr0
。
每个磁盘分区的表示,是通过在磁盘名称后面附加一个十进制数字:sda1
和 sda2
代表系统里的第一个 SCSI 磁盘驱动器的第一个和第二个分区。
这里有一个具体的例子。假设您有一个系统带有两个 SCSI 磁盘,一个 SCSI 地址是 2 并且另外一个地址是 4。第一个磁盘(在 2 上)会被命名为 sda
并且第二个是 sdb
。如果 sda
驱动器有 3 个分区,它们将被命名为 sda1
、sda2
和 sda3
。这同样适用于 sdb
及其分区。
注意如果您有两个 SCSI 主机总线适配器(控制器),设备的顺序可能会比较混乱。最好的解决方案是观察引导信息,如果您知道驱动器型号和/或者容量。
Linux represents the primary partitions as the drive name, plus the numbers 1 through 4. For example, the first primary partition on the first drive is /dev/sda1
. The logical partitions are numbered starting at 5, so the first logical partition on that same drive is /dev/sda5
. Remember that the extended partition, that is, the primary partition holding the logical partitions, is not usable by itself.