发布网友 发布时间:2022-04-23 07:38
共1个回答
热心网友 时间:2023-10-08 14:09
进入linux系统设置启动顺序
用VI 命令修改
/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,4)
# kernel /vmlinuz-version ro root=/dev/VolGroup00/LogVol00
# initrd /initrd-version.img
#boot=/dev/hdc
default=0
timeout=15
splashimage=(hd0,4)/grub/splash.xpm.gz
hiddenmenu
title Red Hat Enterprise Linux Server (2.6.18-1.el5PAE)
root (hd0,4)
kernel /vmlinuz-2.6.18-1.el5PAE ro root=/dev/VolGroup00/LogVol00
initrd /initrd-2.6.18-1.el5PAE.img
title Windows xp
rootnoverify (hd0,0)
chainloader +1
其中 default=0 表示自动引导到Linux系统,如果改成 default=1 则自动引导到WindowsXP系统。
或者,你调整两个顺序
把windows 放在前面
timeout表示给你选择的时间
热心网友 时间:2023-10-08 14:09
进入linux系统设置启动顺序
用VI 命令修改
/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,4)
# kernel /vmlinuz-version ro root=/dev/VolGroup00/LogVol00
# initrd /initrd-version.img
#boot=/dev/hdc
default=0
timeout=15
splashimage=(hd0,4)/grub/splash.xpm.gz
hiddenmenu
title Red Hat Enterprise Linux Server (2.6.18-1.el5PAE)
root (hd0,4)
kernel /vmlinuz-2.6.18-1.el5PAE ro root=/dev/VolGroup00/LogVol00
initrd /initrd-2.6.18-1.el5PAE.img
title Windows xp
rootnoverify (hd0,0)
chainloader +1
其中 default=0 表示自动引导到Linux系统,如果改成 default=1 则自动引导到WindowsXP系统。
或者,你调整两个顺序
把windows 放在前面
timeout表示给你选择的时间