码迷,mamicode.com
首页 > Windows程序 > 详细

Centos7 自定义引导 windows分区

时间:2015-03-10 23:20:03      阅读:731      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!