当前位置: 技术问答>linux和unix
grub的简单问题:怎样配置默认的引导分区
来源: 互联网 发布时间:2015-06-12
本文导语: 我的grub默认启动linux的分区,我想让它默认启动windows的分区,该怎么做?谢谢! | 其实楼主可以看看以前的贴子,很多人问这个问题啊! 编辑/etc/grub.conf文件,将default后面的数字改为你想要默认...
我的grub默认启动linux的分区,我想让它默认启动windows的分区,该怎么做?谢谢!
|
其实楼主可以看看以前的贴子,很多人问这个问题啊!
编辑/etc/grub.conf文件,将default后面的数字改为你想要默认启动的系统,假如你有两个系统:XP和LINUX,那么第一title对应的系统的数字为0,第二个title对应的系统的数字为1,如果有更多的系统,依此类推。
编辑/etc/grub.conf文件,将default后面的数字改为你想要默认启动的系统,假如你有两个系统:XP和LINUX,那么第一title对应的系统的数字为0,第二个title对应的系统的数字为1,如果有更多的系统,依此类推。
|
# grub.conf generated by anaconda
#
# Note that you do not have to rerun grub after making changes to this file
# NOTICE: You do not have a /boot partition. This means that
# all kernel and initrd paths are relative to /, eg.
# root (hd1,0)
# kernel /boot/vmlinuz-version ro root=/dev/hdb1
# initrd /boot/initrd-version.img
#boot=/dev/hdb1
default=0 //改这里
timeout=10
splashimage=(hd1,0)/boot/grub/splash.xpm.gz
title Red Hat Linux (2.4.18-3)
root (hd1,0)
kernel /boot/vmlinuz-2.4.18-3 ro root=/dev/hdb1
title DOS
rootnoverify (hd0,0)
chainloader +1
#
# Note that you do not have to rerun grub after making changes to this file
# NOTICE: You do not have a /boot partition. This means that
# all kernel and initrd paths are relative to /, eg.
# root (hd1,0)
# kernel /boot/vmlinuz-version ro root=/dev/hdb1
# initrd /boot/initrd-version.img
#boot=/dev/hdb1
default=0 //改这里
timeout=10
splashimage=(hd1,0)/boot/grub/splash.xpm.gz
title Red Hat Linux (2.4.18-3)
root (hd1,0)
kernel /boot/vmlinuz-2.4.18-3 ro root=/dev/hdb1
title DOS
rootnoverify (hd0,0)
chainloader +1
|
lvgame(gameboy)说的对!
|
就改default