web-dev-qa-db-ja.com

追加のGPT情報を取得します。 「fdisk -l」と同等

以下のHDDを使用するGPTに相当するものは何ですか?

# fdisk -l /dev/hda > /mnt/sda1/hda_fdisk.info

これを https://wiki.archlinux.org/index.php/disk_cloning (「ディスクイメージの作成」の下)から取得しました。マルチからの復元または抽出に重要な可能性がある追加のhdd情報を取得します-パーティション画像。

これを行うと、次のようなエラーが発生します。

「警告:GPT(GUIDパーティションテーブル)が '/ dev/sda'で検出されました!util fdiskはGPTをサポートしていません。GNU Partedを使用してください。 "

8
ConfusedStack

一部のunixパーティショナーは廃止され、GPT partition tableは新しく、一部のツールは機能しませんGPTGNU partedは新しく、gpartedGNOME 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 [〜#〜]

6
PersianGulf

fdiskに相当するものはgdiskであり、パッケージマネージャーを介してgptfdiskパッケージで一般的に利用できます。私の意見では、あなたはそれを使うほうがずっと良いでしょう。何も信用しない*parted、個人的に-同時にパーティション分割するパーティションツールandフォーマットはnotパーティションツールです。

6
mikeserv

fdiskの最近のバージョンはGPTをサポートしています。 ここ を参照してください。

たとえば、GPTのあるディスクでは、次のようになります。

fdisk from 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 from 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

と文句を言うものではありません。

しかし、それでも、mikeservが示唆するように、gdiskを使用します。

2
Pavel Tankov