GPT / 保護 MBR での NTFS-3G マウントの問題

GPT / 保護 MBR での NTFS-3G マウントの問題

WD 10TB HDD をいくつか入手し、外付け USB3.0 アダプターを使用して Windows 10 で初期化し、NTFS / GPT としてフォーマットしました。Debian システムにマウントしたいのですが、blkid では UUID が表示されず、cat /proc/partitions では sdb のみが表示されます。

cat /proc/partitions
8       16 9766436864 sdb

blkid /dev/sdb
/dev/sdb: PTTYPE="PMBR"

gdisk -l /dev/sdb
GPT fdisk (gdisk) version 1.0.3

Partition table scan:
  MBR: protective
  BSD: not present
  APM: not present
  GPT: present

Found valid GPT with protective MBR; using GPT.
Disk /dev/sdb: 19532873728 sectors, 9.1 TiB
Model: WDC WD102KRYZ-01
Sector size (logical/physical): 512/4096 bytes
Disk identifier (GUID): 28154B70-704B-4769-A0F9-AC8FF5C0F724
Partition table holds up to 128 entries
Main partition table begins at sector 2 and ends at sector 33
First usable sector is 34, last usable sector is 19532873694
Partitions will be aligned on 2048-sector boundaries
Total free space is 19532873661 sectors (9.1 TiB)

Number  Start (sector)    End (sector)  Size       Code  Name

私の他のドライブ(sdc)はこのようになっています

Partition table scan:
  MBR: protective
  BSD: not present
  APM: not present
  GPT: not present

GPT に問題があるようです。ドライブを適切にマウントするには、どうすれば修正できますか? 1 年前に別のドライブでこの問題がすでに発生していましたが、Windows 10 の diskpart を使用してディスクをクリーンアップし、再初期化したところ、パーティションが Debian システムに表示されました。現在の主な問題は、10 TB のディスクがすでにデータでいっぱいになっていることです...

編集//

gdisk /dev/sdb

Expert command (? for help): o

Disk size is 19532873728 sectors (9.1 TiB)
MBR disk identifier: 0x00000000
MBR partitions:

Number  Boot  Start Sector   End Sector   Status      Code
   1                     1   4294967295   primary     0xEE

編集2// wmic出力

wmic partition get BlockSize, Name, Index, StartingOffset, Size

BlockSize  Index  Name
512        0      Disk #2, Partition #0  10000812474368  16777216

答え1

以下の手順に従ってください: 1. sudo gdisk /dev/sdb 2. x Enter o Enter v Enter- 出力を投稿する


私の知る限り、Windows 10 は Linux カーネルも gdisk も認識できない無効な GPT 構造を作成しました。問題を解決する方法は次のとおりです。

Windows を起動し、管理者として cmd を実行します。

wmic partition get BlockSize, Name, Index, StartingOffset, Size

関心のあるディスクのすべてのパーティションとオフセットを書き留めて保存します。

Linuxを再起動して、それらを使用fdiskまたはgdisk再作成します。その後、ディスクをマウントできるようになります。すべてのデータが失われる可能性があるプロセス中。細心の注意を払って進めてください。


ダイナミックディスクを作成している可能性があります。その場合は、https://wiki.archlinux.org/index.php/ダイナミックディスク

関連情報