首页 > Windows开发 > 详细

Centos7 自定义引导 windows分区

时间:2015-03-10 23:19:44      阅读:867      评论:0      收藏:0      [点我收藏+]

今天,在笔记本上装了Centos7,装完后引导发现原来的windows没有出现在系统菜单里面。

在网上简单看了下,找到一种很简单的方法,可以解决这个问题。

在 /etc/grub.d/40_custom 文件的最后面添加如下内容即可:

menuentry "Windows XP" {
    set root=‘(hd0,1)‘
    chainloader +1
}

这样,我的源文件就变成这样了:

#!/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 XP" {
    set root=‘(hd0,1)‘
    chainloader +1
}

估计有很多人也都遇到过类似的问题,希望有帮助。

而且以此类推,可以引导其它现成的分区。

Centos7 自定义引导 windows分区

原文:http://my.oschina.net/math2all/blog/385039

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!