gdisk -l [設(shè)備]
gdisk又叫GPT fdisk,算是fdisk的延伸吧,主要使用的是GPT分區(qū)類型,用來劃分容量大于2T的硬盤。
擴(kuò)展1:分區(qū)類型GPT和MBR。GPT最大支持18EB(1EB=1024PB,1PB=1024TB)linux命令,MBR最大支持2TB。
擴(kuò)展2(了解):GPT,全局唯一標(biāo)識分區(qū)表(GUID Partition Table),它使用128位GUID來唯一標(biāo)識每個(gè)磁盤和分區(qū)。與MBR存在單一故障點(diǎn)不同,GPT提供分區(qū)表信息的冗余,一個(gè)在磁盤頭部linux命令,一個(gè)在磁盤尾部;它通過CRC校驗(yàn)來檢測GPT頭和分區(qū)表中錯誤與損壞。默認(rèn)一個(gè)硬盤支持128個(gè)分區(qū)(可以更多)。
(1).選項(xiàng)
只有一個(gè)-l選項(xiàng),列出一個(gè)磁盤的所有分區(qū)表
(2).操作菜單說明
主要用到的幾個(gè)和fdisk差不多:n、p、q、w。
完整的菜單如下:
b 將GPT數(shù)據(jù)備份到一個(gè)文件 c 更改分區(qū)名稱 d 刪除一個(gè)分區(qū) i 顯示分區(qū)詳細(xì)信息 l 列出已知分區(qū)類型。此處8200是Linux swap,8300是Linux filesystem(對應(yīng)fdisk的82和83)。還有一個(gè)8e00是Linux LVM n 增加一個(gè)新的分區(qū) o 創(chuàng)建一個(gè)新的空白的GPT分區(qū)表 p 顯示當(dāng)前磁盤的分區(qū)表 q 退出gdisk程序,不保存任何修改 r 恢復(fù)和轉(zhuǎn)換選項(xiàng)(僅限專家) s 排序分區(qū) t 改變分區(qū)的類型 v 驗(yàn)證磁盤分區(qū)表 w 將分區(qū)表寫入裁判并退出(保存并退出) x 額外功能(僅限專家) ? 顯示幫助信息
擴(kuò)展:Liunx LVM(Linux邏輯卷管理),將多個(gè)硬盤(物理盤)和硬盤分區(qū)(物理分區(qū))做成一個(gè)邏輯卷,并把這個(gè)邏輯卷作為一個(gè)整體來統(tǒng)一管理,動態(tài)對分區(qū)進(jìn)行擴(kuò)縮空間大小,安全快捷方便管理。
(3).實(shí)例
[root@xuexi ~]# gdisk /dev/sdb GPT fdisk (gdisk) version 0.8.10 Partition table scan: MBR: MBR only BSD: not present APM: not present GPT: not present *************************************************************** Found invalid GPT and valid MBR; converting MBR to GPT format in memory. THIS OPERATION IS POTENTIALLY DESTRUCTIVE! Exit by typing 'q' if you don't want to convert your MBR partitions to GPT format! *************************************************************** Command (? for help): p //顯示當(dāng)前磁盤的分區(qū)表 Disk /dev/sdb: 4194304 sectors, 2.0 GiB Logical sector size: 512 bytes Disk identifier (GUID): 4E50861F-8360-4B97-986E-51F4080BF678 Partition table holds up to 128 entries First usable sector is 34, last usable sector is 4194270 Partitions will be aligned on 2048-sector boundaries Total free space is 2097085 sectors (1024.0 MiB) Number Start (sector) End (sector) Size Code Name 1 2048 2099199 1024.0 MiB 8300 Linux filesystem Command (? for help): d //刪除一個(gè)分區(qū) Using 1 Command (? for help): n //新建一個(gè)分區(qū) Partition number (1-128, default 1): First sector (34-4194270, default = 2048) or {+-}size{KMGTP}: //開始扇區(qū) Last sector (2048-4194270, default = 4194270) or {+-}size{KMGTP}: +1G //終止扇區(qū) Current type is 'Linux filesystem' Hex code or GUID (L to show codes, Enter = 8300): //分區(qū)類型 Changed type of partition to 'Linux filesystem' Command (? for help): w //保存并退出 Final checks complete. About to write GPT data. THIS WILL OVERWRITE EXISTING PARTITIONS!! Do you want to proceed? (Y/N): y //確認(rèn)覆蓋 OK; writing new GUID partition table (GPT) to /dev/sdb. Warning: The kernel is still using the old partition table. The new table will be used at the next reboot. //提示在下次重啟后生效 The operation has completed successfully.
額,好像并不需要。后面該格式化的格式化(mkfs.xfs,在此之前注意有沒有掛載,掛載的需要卸載再格式化),該掛載的掛載。
上一個(gè)教程:Linux常用命令大全(四)
下一個(gè)教程:Linux命令大全.chm版下載