Convert an MBR disk into a GPT disk
Converting using the Windows interface
- Back up or move the data on the basic MBR disk you want to convert into a GPT disk.
- If the disk contains any partitions or volumes, right-click each and then click Delete Partition or Delete Volume.
- Right-click the MBR disk that you want to change into a GPT disk, and then click Convert to GPT Disk.
有的界面没有这个
所以需要用命令行
记得 备份!备份!!备份!!!
管理员打开cmd
输入 diskpart
然后输入: list disk
出现磁盘信息之后
选择磁盘信息
比如: select disk 3
然后格式化,清除数据
clean
转化格式
convert gpt
## Converting using a command line
Use the following steps to convert an empty MBR disk to a GPT disk. There's also a MBR2GPT.EXE tool that you can use, but it's a little complicated - see [Convert MBR partition to GPT](https://docs.microsoft.com/en-us/windows/deployment/mbr-to-gpt) for more details.
1. Back up or move the data on the basic MBR disk you want to convert into a GPT disk.
2. Open an elevated command prompt by right-clicking **Command Prompt** and then choosing **Run as Administrator**.
3. Type `diskpart`. If the disk does not contain any partitions or volumes, skip to step 6.
4. At the **DISKPART** prompt, type `list disk`. Note the disk number you want to convert.
5. At the **DISKPART** prompt, type `select disk <disknumber>`.
6. At the **DISKPART** prompt, type `clean`.
7. At the DISKPART prompt, type `convert gpt`.
为什么要将硬盘驱动器转换为 GPT?
GPT (GUID 分区表)利用 UEFI BIOS 来支持容量大于 2 TB 的存储设备,并使您能够轻松地根据需要设置多个分区(在 GPT 驱动器上 Microsoft Windows 最多支持128分区)。Windows 10 和 Windows 8 或8.1 能够使用 UEFI BIOS,这可以加快引导和关机时间并提供更多的安全优势。要在 UEFI 模式下引导您的 PC,您需要使用采用 GPT 驱动器格式格式化的驱动器。
MBR GPT的区别
2T以下的硬盘可以选MBR
2T以上的硬盘只能选GPT
MBR只能支持4个主分区,再多就要用逻辑分区,而GPT则本身无限制,但受限于操作系统(Windows为128个);
MBR不支持2TB以上的硬盘,GPT则最多支持到18EB。
GPT只能用在64位操作系统。
Windows 10 64bit默认就是GPT。
https://www.zhihu.com/question/50718686
3T及以上硬盘格式化
加装了一块3T的机械硬盘 格式化后还多出700 多G未分配 应该怎样设置才可以用
因为你采用了MBR分区表,你的硬盘将只能使用2.2TB左右的空间。如果你想利用完全的3TB空间,请将分区表格式改为GPT。
http://ask.zol.com.cn/x/1733857.html