当前位置: 技术问答>linux和unix
linux与xp的问题
来源: 互联网 发布时间:2016-03-16
本文导语: 现在我的电脑装了LINUX 和 XP 系统,默认进入的是LINUX,所以进XP系统前,必须得选择,这样很不方便。请问如何才能更改其启动顺序,谢谢回复! | 跟改win的boot.ini一样简单 用文本编辑器打...
现在我的电脑装了LINUX 和 XP 系统,默认进入的是LINUX,所以进XP系统前,必须得选择,这样很不方便。请问如何才能更改其启动顺序,谢谢回复!
|
跟改win的boot.ini一样简单
用文本编辑器打开/boot/grub/grub.conf
我的
# grub.conf generated by anaconda
#
# Note that you do not have to rerun grub after making changes to this file
# NOTICE: You have a /boot partition. This means that
# all kernel and initrd paths are relative to /boot/, eg.
# root (hd0,8)
# kernel /vmlinuz-version ro root=/dev/VolGroup00/LogVol00
# initrd /initrd-version.img
#boot=/dev/sda
default=0
timeout=5
splashimage=(hd0,8)/grub/splash.xpm.gz
hiddenmenu
title Fedora (2.6.24.5-85.fc8)
root (hd0,8)
kernel /vmlinuz-2.6.24.5-85.fc8 ro root=/dev/VolGroup00/LogVol00 rhgb quiet
initrd /initrd-2.6.24.5-85.fc8.img
title Fedora (2.6.24.4-64.fc8)
root (hd0,8)
kernel /vmlinuz-2.6.24.4-64.fc8 ro root=/dev/VolGroup00/LogVol00 rhgb quiet
initrd /initrd-2.6.24.4-64.fc8.img
title Other
rootnoverify (hd0,0)
chainloader +1
可以看到hiddenmenu下有三个启动项(我的fedora内核升级过一次 所以有两个fedora)
每个启动项的头部都有一个title xxxx这样的标识
前两个是fedora 最后一个other 是win 2003
默认其他操作系统都是叫other的
只需要将
title Other
rootnoverify (hd0,0)
chainloader +1
放在三个启动项最前即可
如
hiddenmenu
title Other
rootnoverify (hd0,0)
chainloader +1
title Fedora (2.6.24.5-85.fc8)
root (hd0,8)
kernel /vmlinuz-2.6.24.5-85.fc8 ro root=/dev/VolGroup00/LogVol00 rhgb quiet
initrd /initrd-2.6.24.5-85.fc8.img
title Fedora (2.6.24.4-64.fc8)
root (hd0,8)
kernel /vmlinuz-2.6.24.4-64.fc8 ro root=/dev/VolGroup00/LogVol00 rhgb quiet
initrd /initrd-2.6.24.4-64.fc8.img
刚刚才试的 成功
用文本编辑器打开/boot/grub/grub.conf
我的
# grub.conf generated by anaconda
#
# Note that you do not have to rerun grub after making changes to this file
# NOTICE: You have a /boot partition. This means that
# all kernel and initrd paths are relative to /boot/, eg.
# root (hd0,8)
# kernel /vmlinuz-version ro root=/dev/VolGroup00/LogVol00
# initrd /initrd-version.img
#boot=/dev/sda
default=0
timeout=5
splashimage=(hd0,8)/grub/splash.xpm.gz
hiddenmenu
title Fedora (2.6.24.5-85.fc8)
root (hd0,8)
kernel /vmlinuz-2.6.24.5-85.fc8 ro root=/dev/VolGroup00/LogVol00 rhgb quiet
initrd /initrd-2.6.24.5-85.fc8.img
title Fedora (2.6.24.4-64.fc8)
root (hd0,8)
kernel /vmlinuz-2.6.24.4-64.fc8 ro root=/dev/VolGroup00/LogVol00 rhgb quiet
initrd /initrd-2.6.24.4-64.fc8.img
title Other
rootnoverify (hd0,0)
chainloader +1
可以看到hiddenmenu下有三个启动项(我的fedora内核升级过一次 所以有两个fedora)
每个启动项的头部都有一个title xxxx这样的标识
前两个是fedora 最后一个other 是win 2003
默认其他操作系统都是叫other的
只需要将
title Other
rootnoverify (hd0,0)
chainloader +1
放在三个启动项最前即可
如
hiddenmenu
title Other
rootnoverify (hd0,0)
chainloader +1
title Fedora (2.6.24.5-85.fc8)
root (hd0,8)
kernel /vmlinuz-2.6.24.5-85.fc8 ro root=/dev/VolGroup00/LogVol00 rhgb quiet
initrd /initrd-2.6.24.5-85.fc8.img
title Fedora (2.6.24.4-64.fc8)
root (hd0,8)
kernel /vmlinuz-2.6.24.4-64.fc8 ro root=/dev/VolGroup00/LogVol00 rhgb quiet
initrd /initrd-2.6.24.4-64.fc8.img
刚刚才试的 成功