What is sda sdb in linux

What is the Linux drive naming scheme?

In Windows; you have the C:\ drive. This is the primary drive upon which Windows is installed. However, Linux uses a different naming scheme: sda , sdb2 , etc. Can anyone give me a brief outline of it so I might actually understand it instead of being confused by it?

It’s worth noting that in normal use you don’t need to use the /dev/sd* names. The equivalent of your C: drive is / (aka the root directory). You can see all drives by going to ‘Computer’ in the file manager.

Also note, MS Windows has been trying to discard the notion of drive letters for 8 (?) years now. For Linux (and Ubuntu), I for one do not miss them.

5 Answers 5

In general, the letters (fd, sd, hd) refer to the device type (‘SATA, SCSI/SATA, IDE’) , the third letter is for the device order (a the first, b the second, etc) and the numbers refer to the partitions the device has, starting by zero.

  • hd refers to an IDE-type drive
  • sd refers to a SCSI drive in general, but is mostly popular for SATA drives and CD/DVD
  • fd is floppy disk
  • the first (1) partition on your first (a) SATA drive is /dev/sda1
  • The third (3) partition on your second (b) SATA drive is /dev/sdb3
  • the second partition (2) of the second (b) IDE hard disk is ‘/dev/hdb2’

This device naming is more of a background one, as the actual point to access it a directory mount point.

Читайте также:  Default linux terminal font

I think that the following three articles will help you a bit:

additionally, most modern distros allow referencing drives by uuid (a unique identifier for drives and other storage devices) if the kernel supports it there will be symlinks in /dev/disk/by-uuid/ that point to the «standard» /dev/sd** device nodes. This gives the benefit of having a stable reference to a drive even if you shuffle drives around on the system.

Just for clarity, on the Windows side you’re confusing the file system naming with the drive naming. Windows hides the drive naming from you almost completely, but you can see examples in the registry and if you edit your boot.ini file. A disk reference there might look like this:

multi(0)disk(0)rdisk(0)partition(1) 

You can also see individual disks in the disk manager tool. The reason I bring this up is that the ntfs file system allows you to play all kinds of games. You can mount a separate disk to a folder in your C: and another drive at the same time, and unmounted disks may not have a drive letter at all. So don’t confuse the file system from disk naming.

Linux is similar, here. sda1 is a common partition name, but it could be mounted anywhere on the file system.

Источник

Обозначения дисков и дисковых разделов в системах linux.

Один из основных постулатов Unix/Linux — «всё есть файл», и жесткие диски — не исключение.

Каждый найденный ядром диск, отображается в виде файла в специальном каталоге устройств «/dev»

Диски.

SATA/ SCSI HDD, а также многие переносные накопители типа USB flash:

Читайте также:  Wsus server on linux

На новых Linux-ядрах >=2.6.21 для некоторых чипсетов может действовать новая система именования IDE-дисков, при которой IDE-устройства именуются также как и SATA/ SCSI .

Приведем наглядный пример:

сохранит MBR c первого диска SATA/ SCSI в системе в обычный файл MY_SATA_MBR.BIN.

Получить список обнаруженных системой дисков можно выполнив команду fdisk -l:

v-serv:~# fdisk -l Disk /dev/sda: 200.0 GB, 200048565760 bytes 255 heads, 63 sectors/track, 24321 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Device Boot Start End Blocks Id System /dev/sda1 * 1 3824 30716248+ c W95 FAT32 (LBA) /dev/sda2 3825 4532 5687010 83 Linux /dev/sda3 4533 5140 4883760 83 Linux /dev/sda4 5141 24321 154071382+ 5 Extended /dev/sda5 5141 5991 6835626 83 Linux /dev/sda6 5992 7207 9767488+ 83 Linux /dev/sda7 7208 10854 29294496 83 Linux /dev/sda8 10855 24321 108173646 83 Linux Disk /dev/sdb: 320.0 GB, 320071851520 bytes 255 heads, 63 sectors/track, 38913 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Device Boot Start End Blocks Id System /dev/sdb1 1 365 2931831 83 Linux /dev/sdb2 366 1216 6835657+ 83 Linux /dev/sdb3 1217 1277 489982+ 82 Linux swap / Solaris /dev/sdb4 1278 38913 302311170 5 Extended /dev/sdb5 1278 4924 29294496 83 Linux /dev/sdb6 4925 5046 979933+ 83 Linux /dev/sdb7 5047 6870 14651248+ 83 Linux /dev/sdb8 6871 7478 4883728+ 83 Linux /dev/sdb9 7479 8086 4883728+ 83 Linux /dev/sdb10 8087 21553 108173646 83 Linux /dev/sdb11 21554 33711 97659103+ 83 Linux /dev/sdb12 33712 38913 41785033+ 83 Linux

Разделы.

Конкретный раздел (синонимы — том, партиция) определяется по номеру, после обозначения устройства, начиная с 1. Например: hdc5 — пятый том мастера на втором контроллере IDE, sde3 — третий том пятого SATA/ SCSI накопителя.

Читайте также:  Find text in all file in linux

Например: как быстро уничтожить форматированный раздел — заполним нулевыми байтами первые 10MB:

dd if=/dev/zero count=Разделы могут быть:

расширенными (Extended) — логические разделы (обычно только один) с которыми нельзя работать, контейнер для дополнительных разделов;

Кроме номера и размера, каждый раздел имеет свой тип, который обозначен одним байтом:

Источник

Оцените статью
Adblock
detector