PS:服务器型号Dell R720,此机器之前安装的Win 2008R2时采用了GPT分区,导致CentOS 无法读取(但CentOS 6.x默认就支持GPT),解决过程如下:
问题:图形界面安装到分区时
Your boot partition is on a disk using the GPT partitioning Scheme but this machines cannot boot using GPT.
处理步骤:
1种
parted -s /dev/sda mklabel msdos
2种
Ctrl+Alt+F2 #进入字符界面 parted /dev/sda mklabel gpt quit Ctrl+Alt+F6 #进入图形界面
补充:
MBR,主引导记录 (Master Boot Record):MBR容量为2TB:2^32 * 512 =
2,199,023,255,552 Bytes,即2TB
GPT,全局唯一标识磁盘分区表 (GUID Partition Table):GPT容量18EB (1EB = 1024TB)
时间: 2024-10-25 06:04:15