I have a question about LILO.
I currently use my WinXP bootloader and have a reference to linux in the Boot.ini config. When Linux boots, LILO prompts to select DOS or Linux to load. This is unecessary, as I want it to boot straight to Linux with no intervention.
This is my lilo.conf file. I have already removed the Windows entry, but haven't reinstalled LILO yet:
# LILO configuration file
# generated by 'liloconfig'
#
# Start LILO global section
boot = /dev/hda6
message = /boot/boot_message.txt
prompt
timeout = 1200
# Override dangerous defaults that rewrite the partition table:
change-rules
reset
# VESA framebuffer console @ 1024x768x256
vga = 773
# Normal VGA console
# vga = normal
# VESA framebuffer console @ 1024x768x64k
# vga=791
# VESA framebuffer console @ 1024x768x32k
# vga=790
# End LILO global section
image = /boot/vmlinuz
root = /dev/hda6
label = Linux
read-only
# Linux bootable partition config ends
------------------
Now, if I remove the following lines:
message = /boot/boot_message.txt
prompt
and change the lilo.conf file to read:
# LILO configuration file
# generated by 'liloconfig'
#
# Start LILO global section
boot = /dev/hda6
timeout = 0
# Override dangerous defaults that rewrite the partition table:
change-rules
reset
# VESA framebuffer console @ 1024x768x256
vga = 773
# Normal VGA console
# vga = normal
# VESA framebuffer console @ 1024x768x64k
# vga=791
# VESA framebuffer console @ 1024x768x32k
# vga=790
# End LILO global section
image = /boot/vmlinuz
root = /dev/hda6
label = Linux
read-only
# Linux bootable partition config ends
Will this make it automatically boot into Linux with no menu choice?
I currently use my WinXP bootloader and have a reference to linux in the Boot.ini config. When Linux boots, LILO prompts to select DOS or Linux to load. This is unecessary, as I want it to boot straight to Linux with no intervention.
This is my lilo.conf file. I have already removed the Windows entry, but haven't reinstalled LILO yet:
# LILO configuration file
# generated by 'liloconfig'
#
# Start LILO global section
boot = /dev/hda6
message = /boot/boot_message.txt
prompt
timeout = 1200
# Override dangerous defaults that rewrite the partition table:
change-rules
reset
# VESA framebuffer console @ 1024x768x256
vga = 773
# Normal VGA console
# vga = normal
# VESA framebuffer console @ 1024x768x64k
# vga=791
# VESA framebuffer console @ 1024x768x32k
# vga=790
# End LILO global section
image = /boot/vmlinuz
root = /dev/hda6
label = Linux
read-only
# Linux bootable partition config ends
------------------
Now, if I remove the following lines:
message = /boot/boot_message.txt
prompt
and change the lilo.conf file to read:
# LILO configuration file
# generated by 'liloconfig'
#
# Start LILO global section
boot = /dev/hda6
timeout = 0
# Override dangerous defaults that rewrite the partition table:
change-rules
reset
# VESA framebuffer console @ 1024x768x256
vga = 773
# Normal VGA console
# vga = normal
# VESA framebuffer console @ 1024x768x64k
# vga=791
# VESA framebuffer console @ 1024x768x32k
# vga=790
# End LILO global section
image = /boot/vmlinuz
root = /dev/hda6
label = Linux
read-only
# Linux bootable partition config ends
Will this make it automatically boot into Linux with no menu choice?