MBR(마스터 부팅 레코드) 디스크는 레거시 BIOS 분할 체계(파티션 스타일이라고도 함)를 사용하며 디스크당 최대 4개의 기본 파티션을 지원합니다. MBR은 2TB 이하의 디스크로 제한되며 더 큰 드라이브에는 권장되지 않습니다. GPT(GUID 파티션 테이블) 디스크는 최신 UEFI(Unified Extensible Firmware Interface)를 사용하고, 4개 이상의 파티션을 지원하며, 2TB보다 큰 디스크를 관리할 수 있습니다.
파티션 또는 볼륨이 없는 경우에만 디스크의 파티션 스타일을 변환할 수 있습니다. 디스크의 형식을 변경하기 전에 모든 기존 파티션 또는 볼륨을 삭제해야 합니다.
Prerequisites
You must be a member of the Administrators group (or have equivalent privileges) to convert a disk.
Important
디스크를 변환하기 전에 디스크의 데이터를 백업하고 디스크에 액세스하는 모든 프로그램을 닫습니다.
디스크 변환
디스크 관리 도구 또는 명령줄을 사용하여 디스크를 변환할 수 있습니다. 선택한 방법에 대해 다음 단계를 수행합니다.
파티션 스타일을 변환하기 전에 디스크에서 데이터를 백업하거나 이동합니다.
Select Start, type diskmgmt.msc, then select Enter.
디스크와 관련된 볼륨을 마우스 오른쪽 단추로 클릭합니다.
Select Delete Volume, then select Yes. 디스크의 모든 볼륨에 대해 이 단계를 반복합니다.
디스크를 마우스 오른쪽 단추로 클릭한 다음 MBR 디스크로 변환 또는 GPT 디스크로 변환을 선택합니다.
To verify the conversion process, right-click on your disk, select Properties, select the Volumes tab, and check the partition style information.
파티션 스타일을 변환하기 전에 디스크에서 데이터를 백업하거나 이동합니다.
Open an elevated command prompt window, type diskpart, then hit Enter.
파티션 또는 볼륨을 정리(삭제)하여 변환할 디스크를 준비합니다.
Note
If your disk doesn't have any partitions or volumes, skip to step 3 to convert your disk.
Type list disk and hit Enter. 변환할 디스크 번호를 기록해 둡다.
Type select disk, provide the disk number you want to convert, then hit Enter.
Type clean to delete all partitions and volumes on the disk.
To convert GPT to MBR, type convert mbr, then hit Enter.
To convert MBR to GPT, type convert gpt, then hit Enter.
변환 프로세스가 완료되면 알림이 표시됩니다. To learn more, see the diskpart commands reference.
파티션 스타일을 변환하기 전에 디스크에서 데이터를 백업하거나 이동합니다.
관리자 권한으로 PowerShell 창을 엽니다.
파티션 또는 볼륨을 정리(삭제)하여 변환할 디스크를 준비합니다.
Note
If your disk doesn't have any partitions or volumes, skip to step 3 to convert your disk.
모든 디스크를 나열하려면 다음 명령을 실행합니다.
Get-Disk
변환할 디스크 번호를 확인합니다.
디스크에서 모든 파티션 및 볼륨을 제거하려면 다음 명령을 실행합니다. 앞에서 적어둔 디스크 번호로 <Disk Number>
을/를 바꾸십시오.
Clear-Disk -Number <Disk Number> -RemoveData -Confirm:$false
분할 스타일을 변환하려면 다음 명령을 실행합니다.
MBR에서 GPT로 변환하는 경우:
Initialize-Disk -Number <Disk Number> -PartitionStyle GPT
GPT에서 MBR로 변환하는 경우:
Initialize-Disk -Number <Disk Number> -PartitionStyle MBR
Note
디스크가 초기화되면 먼저 cmdlet을 다시 실행 Clear-Disk
하지 않고는 다른 파티션 스타일로 변환할 수 없습니다.
To verify the conversion process, run the following command and check the Partition Style column:
Get-Disk
See also