Note that any time you change /etc/lilo.conf or
rebuild or move a kernel image, you need to rerun lilo to rebuild the map file and update LILO.
The configuration file starts with a section of global options,
described in the next section. Global options are those that apply to
every system boot, regardless of what operating system you are
booting. Here is an example of a global section (a hash sign,
#, begins a comment):
boot = /dev/hda # The boot device is /dev/hda
map = /boot/map # Save the map file as /boot/map
install = /boot/boot.b # The file to install as the new boot sector
prompt # Always display the boot prompt
timeout = 30 # Set a 3-second (30 tenths of a second) timeout
Following the global section, there is one section of options for each
Linux kernel and for each non-Linux operating system that you want
LILO to be able to boot. Each of those sections is referred to as an
image section, because each boots a different
kernel image (shorthand for a binary file containing a kernel) or
another operating system. Each Linux image section begins with an
image= line.
image = /boot/vmlinuz # Linux image file
label = linux # Label that appears at the boot prompt
root = /dev/hda2 # Location of the root filesystem
vga = ask # Always prompt the user for VGA mode
read-only # Mount read-only to run fsck for a filesystem check
The equivalent
section for a non-Linux operating system begins with other= instead
of image=. For example:
other = /dev/hda1 # Location of the partition
label = dos
table = /dev/hda # Location of the partition table
Put LILO configuration options that apply to all images into the global
section of /etc/lilo.conf and options that apply to a
particular image into the section for that image. If an option is specified in
both the global section and an image section, the setting in the image
section overrides the global setting for that image.
Here is an example of a complete /etc/lilo.conf file for a system
that has the Linux partition on /dev/hda2:
## Global section
boot=/dev/hda2
map=/boot/map
delay=30
timeout=50
prompt
vga=ask
## Image section: For regular Linux
image=/boot/vmlinuz
label=linux
root=/dev/hda2
install=/boot/boot.b
map=/boot/map
read-only
## Image section: For testing a new Linux kernel
image=/testvmlinuz
label=testlinux
root=/dev/hda2
install=/boot/boot.b
map=/boot/map
read-only
optional # Omit image if not available when map is built
## Image section: For booting DOS
other=/dev/hda1
label=dos
loader=/boot/chain.b
table=/dev/hda # The current partition table
## Image section: For booting Windows 95
other=/dev/hda1
label=win95
loader=/boot/chain.b
table=/dev/hda