使用 HDD 的 GPT 的等效项是:
# fdisk -l /dev/hda > /mnt/sda1/hda_fdisk.info
我从那里得到这个https://wiki.archlinux.org/index.php/disk_cloning(在“创建磁盘映像”下)获取额外的硬盘信息,这对于从多分区映像中恢复或提取可能很重要。
当我这样做时,我收到类似于以下内容的错误:
“警告:在‘/dev/sda’上检测到 GPT(GUID 分区表)!util fdisk 不支持 GPT。请使用 GNU Parted。”
答案1
一些 UNIX 分区程序已被弃用,并且GPT partition table
是新的,并且某些工具无法工作GPT
。GNU parted
是新的并且gparted
是GNOME Parted
例如:
root@debian:/home/mohsen# parted -l /dev/sda
Model: ATA WDC WD7500BPVT-7 (scsi)
Disk /dev/sda: 750GB
Sector size (logical/physical): 512B/4096B
Partition Table: msdos
Disk Flags:
Number Start End Size Type File system Flags
1 32.3kB 41.1MB 41.1MB primary fat16 diag
2 41.9MB 2139MB 2097MB primary fat32 boot
3 2139MB 52.1GB 50.0GB primary ext4
4 52.1GB 749GB 697GB extended
5 52.1GB 737GB 685GB logical ext4
6 737GB 749GB 12.0GB logical linux-swap(v1)
笔记: GPT 是GUID Partition Table
and much new 的缩写。
GPT
答案2
等效fdisk
项是gdisk
,通常可以gptfdisk
通过包管理器在包中使用它。我认为,使用它会更好。*parted
就我个人而言,我不相信任何东西- 任何同时分区的分区工具和格式是不是一个分区工具。
答案3
最新版本fdisk
确实支持 GPT,请参阅这里。
例如,在具有 GPT 的磁盘上,我得到以下信息:
fdisk
来自util-linux 2.23.2
RedHat / CentOS 7.2 说:
# fdisk -l /dev/sdb
WARNING: fdisk GPT support is currently new, and therefore in an experimental phase. Use at your own discretion.
Disk /dev/sdb: 1000.0 GB, 999989182464 bytes, 1953103872 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: gpt
# Start End Size Type Name
1 2048 1953103838 931,3G Linux filesyste Linux filesystem
fdisk
来自util-linux 2.27.1
Linux Mint 18 / Ubuntu 16.04 LTS (Xenial Xerus) 说:
# fdisk -l /dev/sda
Disk /dev/sda: 223,6 GiB, 240057409536 bytes, 468862128 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: gpt
Disk identifier: 36CB5C9A-A274-43A0-9EBF-A4C457FFC56F
Device Start End Sectors Size Type
/dev/sda1 2048 526335 524288 256M EFI System
/dev/sda2 526336 468862094 468335759 223,3G Linux filesystem
并且没有任何抱怨。
但我还是会用gdisk
as麦克塞夫建议。