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
의 약어이며 훨씬 새로운 것입니다.
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
하지만 나는 여전히 다음과 같이 사용할 것입니다 .맥사이프제안.