在尝试使用 win 7 双启动安装 CentOS 6.4 时,出现此错误“sda 必须具有 gpt 标签”。我不知道如何修复它,我也不想重新分区我的硬盘。
答案1
在 BIOS 中禁用 UEFI (手动的)或创建 GPT 分区表(gparted
或gdisk
)。
创建一个的示例拱门维基:
# gdisk /dev/sdX o # create new empty GUID partition table n # partition 1 [enter], from beginning [enter], to 100GiB [+100GiB], linux fs type [enter] n # partition 2 [enter], from beginning [enter], to 108GiB [+8GiB], linux swap [8200] w # write table to disk and exit
另一种选择是在安装过程中使用parted
实用程序。在安装过程中注入“CTRL+ALT+F2”以使用“parted”实用程序进入命令行。
parted
(分手)print /dev/sda
(分手)select /dev/sda
(分手)mklabel gpt
(分手)yes
(分手)print /dev/sda
(分手)quit
然后使用 CTRL+ALT+F1 返回安装过程。