ubuntu9.10(karmic)修复Windows系统引导

9.10使用了grub2(不确定是不是2),与以往不同新版本的grub的引导配置文件不再是menu.lst而是/boot//grub.cfg ,这个文件默认是只读的,因此在修改之前需要先将其改为可写。

root@ptubuntu:/home/ptubuntu# chmod +w /boot/grub/grub.cfg

然后就可以修改了。给其中加上如下内容即可

root@ptubuntu:/home/ptubuntu# vi /boot/grub/grub.cfg


添加后内容如下:

### BEGIN /etc/grub.d/00_header ###
set default=0
set timeout=5
set root=(hd0,7)
search –no-floppy –fs-uuid –set 5deb40f9-217d-408d-bc7c-be463cbfea7b
if loadfont /usr/share/grub/ascii.pf2 ; then
set gfxmode=640×480
insmod gfxterm
insmod vbe
if terminal_output gfxterm ; then true ; else
# For backward compatibility with versions of terminal.mod that don’t
# understand terminal_output
terminal gfxterm
fi
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=cyan/blue
set menu_color_highlight=white/blue
### END /etc/grub.d/05_debian_theme ###

menuentry “Microsoft Windows XP Professional” {
set root=(hd0,1)
search –no-floppy –fs-uuid –set 4a807ca0807c93e3
drivemap -s (hd0) $root
chainloader +1
}

上面这段黄色就是原来自带的。现在要改为下面红色。

menuentry “Microsoft Windows XP Professional” {
set root=(hd0,1)
chainloader +1
}

### BEGIN /etc/grub.d/10_linux ###
menuentry “Ubuntu, Linux 2.6.31-3-generic” {set root=(hd0,7)
search –no-floppy –fs-uuid –set 5deb40f9-217d-408d-bc7c-be463cbfea7b
linux   /boot/vmlinuz-2.6.31-3-generic root=UUID=5deb40f9-217d-408d-bc7c-be463cbfea7b ro   quiet splash
initrd  /boot/initrd.img-2.6.31-3-generic
}
menuentry “Ubuntu, Linux 2.6.31-3-generic (recovery mode)” {
set root=(hd0,7)
search –no-floppy –fs-uuid –set 5deb40f9-217d-408d-bc7c-be463cbfea7b
linux   /boot/vmlinuz-2.6.31-3-generic root=UUID=5deb40f9-217d-408d-bc7c-be463cbfea7b ro single
initrd  /boot/initrd.img-2.6.31-3-generic
}
### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_memtest86+ ###
menuentry “Memory test (memtest86+)” {
linux   /boot/memtest86+.bin
}
menuentry “Memory test (memtest86+, serial console 115200)” {
linux   /boot/memtest86+.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+ ###

原创文章,转载请注明: 转载自PT Ubuntu Blog

本文链接地址: http://www.ptubuntu.com/2009/08/2989.html

Share

{ 发表评论? }

  1. 西风

    技术文章 看不懂 沙发带走了

  2. 帥到卖菜

    @西风: 要是看不懂这篇文章 那你要多学点基础了 加油兄弟 LINUX很酷!

  3. 我想想

    哎呀,当初怎么就没有发现呢!
    收藏了。

  4. 缘分测试

    正要找这个呢,谢谢!

发表评论

电子邮件地址不会被公开。 必填项已用 * 标注

*

您可以使用这些 HTML 标签和属性: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>


Verify Code   If you cannot see the CheckCode image,please refresh the page again!