1. 程式人生 > >fdisk創立主分割槽過程

fdisk創立主分割槽過程


[[email protected] ~]# fdisk /dev/sdb
…省略部分輸出…
Command (m for help): p
#顯示當前硬碟的分割槽列表
Disk /dev/sdb: 21.5 GB, 21474836480 bytes 255 heads, 63 sectors/track, 2610 cylinders
Units = cylinders of 16065 *512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0xb4b0720c
De

vice Boot Start End Blocks id System
#目前一個分割槽都沒有
Command (m for help): n
#那麼我們新建一個分割槽
Command action
#指定分割槽型別
e extended
#擴充套件分割槽
p primary partition (1-4)
#主分割槽
p
#這裡選擇p,建立一個主分割槽
Partition number (1-4): 1
#選擇分割槽號,範圍為1~4,這裡選擇1
First cylinder (1 -2610, default 1):
#分割槽的起始柱面,預設從1開始。因為要從硬碟頭開始分割槽,所以直接回車
Using default value 1
#提示使用的是預設值1

Last cylinder, +cylinders or +size{K, M, G}(1-2610, default 2610): +5G
#指定硬碟大小。可以按照柱面指定(1-2610)。我們對柱面不熟悉,那麼可以使用size{K, M, G}的方式指定硬碟大小。這裡指定+5G,建立一個5GB大小的分割槽
Command (m for help):
#主分割槽就建立了,又回到了fdisk互動介面的提示符
Command (m for help): p
#查詢一下新建立的分割槽
Disk /dev/sdb: 21.5GB, 21474836480 bytes
255 heads,63 sectors/track, 2610 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes 1512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0xb4b0720c
Device Boot Start End Blocks id System
/dev/sdb1 1 654 5253223+ 83

Linux
#dev/sdb1已經建立了吧

總結,建立主分割槽的過程:"fdisk 硬碟名 -> n(新建)->p(建立主分割槽) -> 1(指定分割槽號) -> 回車(預設從 1 柱面開始建立分割槽)-> +5G(指定分割槽大小)"。當然,分割槽還沒有格式化和掛載,所以還不能使用。