您的位置:首页 > 运维架构 > Linux

CentOS Linux时出现GPT分区不能引导错误的解决办法

2015-06-04 10:00 543 查看
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)
本文出自 “wine” 博客,请务必保留此出处http://knowledge92.blog.51cto.com/7143076/1658354
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: