Тестовый стенд: OpenBSD 5.0
Эта операция состоит из 3-ох частей:
– инициализация
#fdisk -i wd1
– создание/просмотр разделов
#disklabel -e wd1
# /dev/rwd1c: type: ESDI disk: ESDI/IDE disk label: SAMSUNG HD502IJ duid: c6bcefcc1d58fb10 flags: bytes/sector: 512 sectors/track: 63 tracks/cylinder: 255 sectors/cylinder: 16065 cylinders: 60801 total sectors: 976773168 boundstart: 0 boundend: 976773168 drivedata: 0 16 partitions: # size offset fstype [fsize bsize cpg] с: 312581808 0 4.2BSD 2048 16384 1 # /mnt/docs # Notes: # Up to 16 partitions are valid, named from 'a' to 'p'. Partition 'a' is # your root filesystem, 'b' is your swap, and 'c' should cover your whole
Видим, доступен 1 раздел, но это раздел c – раздел означающий весь диск. А нам нужно создать хотя бы один раздел не c! Приводим содержимое к такому виду:
# /dev/rwd1c: type: ESDI disk: ESDI/IDE disk label: SAMSUNG HD502IJ duid: c6bcefcc1d58fb10 flags: bytes/sector: 512 sectors/track: 63 tracks/cylinder: 255 sectors/cylinder: 16065 cylinders: 60801 total sectors: 976773168 boundstart: 0 boundend: 976773168 drivedata: 0 16 partitions: # size offset fstype [fsize bsize cpg] a: 312581808 0 4.2BSD 2048 16384 1 # /mnt/docs c: 312581808 0 4.2BSD 2048 16384 1 # Notes: # Up to 16 partitions are valid, named from 'a' to 'p'. Partition 'a' is # your root filesystem, 'b' is your swap, and 'c' should cover your whole
если всё устраивает – выходим (выход как из редактора vi)
– создание файловой системы:
#newfs wd1c
Обратите внимание, на именование раздела: в конце буква ‘c’, как раз имя раздела, которое берётся из предыдущего пункта.