lilo中把dos/windows改为缺省启动的OS
2004-04-23 15:18 pm来自:Linux文档
现载:Www.8s8s.coM
地址:无名
RedHat把linux作为lilo缺省启动的OS,即出现 boot: 提示符后直接回车启动Linux。
如果想改为dos/Windows,修改文件/etc/lilo.conf,把有关启动dos的部分放在前面,
再运行一次lilo即可。例如把lilo.conf从:
boot=/dev/hda
map=/boot/map
install=/boot/boot.b
prompt
timeout=50
<font color=red> image=/boot/vmlinuz-2.0.34-1
label=linux
root=/dev/hdc5
read-only
</font>
<font color=green> other=/dev/hda1
label=dos
table=/dev/hda
</font>
改为:
boot=/dev/hda
map=/boot/map
install=/boot/boot.b
prompt
timeout=50
<font color=green> other=/dev/hda1
label=dos
table=/dev/hda
</font>
<font color=red> image=/boot/vmlinuz-2.0.34-1
label=linux
root=/dev/hdc5
read-only
</font>