Gparted에서는 HDD가 할당되지 않은 것으로 표시됩니다.

Gparted에서는 HDD가 할당되지 않은 것으로 표시됩니다.

나는 가지고있다윈도우 8.1&설치할 계획입니다칼리리눅스그걸 써.

그러나 설치 시 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에 지시합니다.

관련 정보