[问题]启动顺序问题(解决)

系统安装、升级讨论
版面规则
我们都知道新人的确很菜,也喜欢抱怨,并且带有浓厚的Windows习惯,但既然在这里询问,我们就应该有责任帮助他们解决问题,而不是直接泼冷水、简单的否定或发表对解决问题没有任何帮助的帖子。乐于分享,以人为本,这正是Ubuntu的精神所在。
回复
snowywind
帖子: 15
注册时间: 2006-08-10 14:28

[问题]启动顺序问题(解决)

#1

帖子 snowywind » 2006-08-27 18:16

请问我的机器上原来装有winxp,现在在另一个分区上装了Ubuntu5.01,启动时系统默认的是linux,我想让默认启动winxp应该怎么办?
上次由 snowywind 在 2006-08-27 20:10,总共编辑 1 次。
lglinger
帖子: 19
注册时间: 2006-04-24 18:11
来自: 福建
联系:

#2

帖子 lglinger » 2006-08-27 18:23

如果是Grub启动的话修改 /boot/grub/menu.lst
在类似于:
## ## End Default Options ##

title Ubuntu, kernel 2.6.15-26-686
root (hd0,0)
kernel /boot/vmlinuz-2.6.15-26-686 root=/dev/hda1 ro quiet splash
initrd /boot/initrd.img-2.6.15-26-686
savedefault
boot
……………………………………………………………………………………………………

字段中修改“ title Windows 95/98/NT/2000”设在第一行,并把上面的“timeout 3”中数字改成“0”应该就可以了
头像
Jungherr
帖子: 269
注册时间: 2006-07-08 9:00
来自: Deutschland

#3

帖子 Jungherr » 2006-08-27 18:24

把windows部分提到前面就可以了,或者从第一开始数,到windows为第N个,在default项改为N-1


# This entry automatically added by the Debian installer for a non-linux OS
# on /dev/hda1
title Windows 2003
root (hd0,0)
savedefault
makeactive
chainloader +1

title Ubuntu, kernel 2.6.15-26-k7
root (hd0,4)
kernel /boot/vmlinuz-2.6.15-26-k7 root=/dev/hda5 ro quiet splash vga=791 wesa:mtrr
initrd /boot/initrd.img-2.6.15-26-k7
savedefault
boot

#title Ubuntu, kernel 2.6.15-26-k7 (recovery mode)
#root (hd0,4)
#kernel /boot/vmlinuz-2.6.15-26-k7 root=/dev/hda5 ro single
#initrd /boot/initrd.img-2.6.15-26-k7
#boot

#title Ubuntu, memtest86+
#root (hd0,4)
#kernel /boot/memtest86+.bin
#boot

### END DEBIAN AUTOMAGIC KERNELS LIST

# This is a divider, added to separate the menu items below from the Debian
# ones.
#title Other operating systems:
#root
snowywind
帖子: 15
注册时间: 2006-08-10 14:28

#4

帖子 snowywind » 2006-08-27 20:09

搞定了,THANKS!!!
guibin001
帖子: 15
注册时间: 2007-03-05 13:48

#5

帖子 guibin001 » 2007-04-09 13:14

学习一下
回复