Gpartedでは、HDDが未割り当てとしてマークされます。

Gpartedでは、HDDが未割り当てとしてマークされます。

私は持っていますWindows 8.1&インストールする予定ですカリLinuxそれを書いてください。

ただし、インストール時にgpartedハードドライブ全体が未割り当てとしてマークされ、警告が表示されます。

警告は次のとおりです。

/dev/sdaには、GPTテーブルがあることを示すGPT署名が含まれています。ただし、必要な有効な偽のmsdosパーティションテーブルはありません。おそらく、GPTパーティションテーブルを理解していないプログラムによって破損している可能性があります。または、GPTテーブルを削除して現在msdosパーティションテーブルを使用している可能性があります。 GPTパーティションテーブルですか?

gdisk私のパーティションでは読むことmbrができますがgpt

表示される内容は次のとおりです。

root@kali:~# sudo gdisk -l /dev/sda 
GPT fdisk (gdisk) version 0.8.5

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

Found valid MBR and GPT. Which do you want to use?
 1 - MBR
 2 - GPT
 3 - Create blank GPT

Your answer: 1
Disk /dev/sda: 1953525168 sectors, 931.5 GiB
Logical sector size: 512 bytes
Disk identifier (GUID): ED648B30-B2CA-4C17-875F-3BB5BE8015E5
Partition table holds up to 128 entries
First usable sector is 34, last usable sector is 1953525134
Partitions will be aligned on 2048-sector boundaries
Total free space is 205600109 sectors (98.0 GiB)

Number  Start (sector)    End (sector)  Size       Code  Name
   1            2048         2050047   1000.0 MiB  0700  Microsoft basic data
   2         2582528         4630527   1000.0 MiB  0700  Microsoft basic data
   5         4892672       982384639   466.1 GiB   0700  Microsoft basic data
   6       982386688      1748723711   365.4 GiB   0700  Microsoft basic data

root@kali:~# sudo gdisk -l /dev/sda 
GPT fdisk (gdisk) version 0.8.5

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

Found valid MBR and GPT. Which do you want to use?
 1 - MBR
 2 - GPT
 3 - Create blank GPT

Your answer: 2
Using GPT and creating fresh protective MBR.
Disk /dev/sda: 1953525168 sectors, 931.5 GiB
Logical sector size: 512 bytes
Disk identifier (GUID): F2A030D1-94C2-4592-9DFA-D227C1615693
Partition table holds up to 128 entries
First usable sector is 34, last usable sector is 1953525134
Partitions will be aligned on 2048-sector boundaries
Total free space is 1953525101 sectors (931.5 GiB)

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

ポリスチレンf -"load MBR and build fresh GPT": ""recovery/transformation optionsでgdiskオプションを試してみました。

gpartedただし、同じ内容が表示され、機能しませんでした。

ベストアンサー1

最新バージョンのGParted(現在の最新バージョンは0.23.0)を使用していますか?

GParted は、parted プロジェクトの libparted ライブラリを使用してパーティションを検出して操作します。あなたの場合、MSDOSとGUIDパーティションテーブルの両方が存在するようです。コマンドラインから直接partedを実行してみることができます。

sudo parted /dev/sda

保護MBRを持つGPTのみを使用するようにpartedに指示します。

おすすめ記事