2014年11月25日星期二

Linux_089:Windows7 + RHEL7 + Fedora20 三系统启动配置

在一块物理硬盘上先后安装Windows7、RHEL7、Fedora20 三个系统。

RHEL7和Fedora20系统启动项可以互认,Fedora20可以认出Windows7和RHEL7启动项,但是RHEL7不认Windows7启动项。

因此本文介绍如何在RHEL7中配置Windows7的启动项。

1. 修改 /etc/grub.d/40_custom文件

#!/bin/sh
exec tail -n +3 $0
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
# 增加如下设置
menuentry 'Windows 7' {
         insmod part_msdos
         insmod ntfs
         insmod ntldr
         set root=(hd0,1)
         chainloader +1
         boot
 }


注意,这里(hd0,1)指向的是Windows7的启动分区,根据你的机器情况做修改。

2.  重新编译生成启动菜单
 # grub2-mkconfig -o /boot/grub2/grub.cfg

参考文献:
1. http://www.fireinfo.cn/content-11-45963-1.html

没有评论: