추가 읽기

추가 읽기

방금 새로 파티션을 나누고 완전히 채워진 디스크에서 gdisk를 실행했는데 다음과 같은 오류 메시지가 나타납니다.

방금 이 하나의 단일 파티션을 만들었기 때문에 상황이 어떻게 겹칠 수 있는지 잘 모르겠습니다.

걱정해야 할까요?

merc@merc-All-Series:~$ sudo gdisk
GPT fdisk (gdisk) version 1.0.1

Type device filename, or press <Enter> to exit: ^C
merc@merc-All-Series:~$ sudo gdisk /dev/sda
GPT fdisk (gdisk) version 1.0.1

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


***************************************************************
Found invalid GPT and valid MBR; converting MBR to GPT format
in memory. THIS OPERATION IS POTENTIALLY DESTRUCTIVE! Exit by
typing 'q' if you don't want to convert your MBR partitions
to GPT format!
***************************************************************


Warning! Secondary partition table overlaps the last partition by
33 blocks!
You will need to delete this partition or resize it in another utility.

Command (? for help): p
Disk /dev/sda: 1953523055 sectors, 931.5 GiB
Logical sector size: 512 bytes
Disk identifier (GUID): 7F03D27C-4FD8-4A31-A027-8F438F676805
Partition table holds up to 128 entries
First usable sector is 34, last usable sector is 1953523021
Partitions will be aligned on 2048-sector boundaries
Total free space is 2014 sectors (1007.0 KiB)

Number  Start (sector)    End (sector)  Size       Code  Name
   1            2048      1953523054   931.5 GiB   8300  Linux filesystem

Command (? for help): 

답변1

gdisk주로 GPT 파티셔닝의 관점에서 디스크를 처리합니다. 보시다시피 시작 시 MBR 스타일 파티션 테이블을 GPT 파티션 테이블로 자동 변환합니다. EFI 파티션 테이블을 작성합니다.

GPT 파티션 테이블을 쓸 수 없는 방식으로 디스크를 파티션했습니다. 전체 디스크를 단일 파티션으로 채웠고 GPT 파티셔닝이 배치할 백업 GPT 파티션 테이블을 위한 공간을 마지막에 남기지 않았습니다. 아이러니하게도 너도 떠났어너무 많이사용한 도구가 1MiB 정렬을 사용했기 때문에 처음에는 기본 GPT 파티션 테이블을 위한 공간이 있었습니다.

디스크의 GPT 파티션을 시도하는 도구를 사용하려면 백업 GPT 파티션 테이블이 디스크 끝에 배치될 수 있을 만큼 해당 파티션을 축소하십시오. 메시지에서 알 수 있듯이.

추가 읽기

관련 정보