You do get the LIL- prompt error when you try to start the computer itself?? If so, then I think that you did not edit the /etc/lilo.conf file correctly.
Boot from the linux boot disk and post another copy of your /etc/lilo.conf file
exactly.
If you don't have a boot disk (which is silly

) then boot from the linux CD, and at the boot: prompt type LINUX RESCUE. Your linux system will be mounted under /mnt/sysimage or something similar, therefore you will be posting the contents of /mnt/sysimage/etc/lilo.conf and
not /etc/lilo.conf.
I think that you edited the wrong section of the file.
What I think that you
may have done is changed the part of the file that points to where linux is installed and
not the part of the file which is the target for the lilo installation.
Your lilo.conf file should read like this:
prompt
timeout=50
default=linux
boot=/dev/hda6
map=/boot/map
install=/boot/boot.b
message=/boot/message
lba32
image=/boot/vmlinuz-2.4.7-10
label=linux
read-only
root=/dev/hda6
append="hdb=idle-scsi"
other=/dev/hda1
optional
label=DOS
NOT like this:
prompt
timeout=50
default=linux
boot=/dev/hda
map=/boot/map
install=/boot/boot.b
message=/boot/message
lba32
image=/boot/vmlinuz-2.4.7-10
label=linux
read-only
root=/dev/hda6
append="hdb=idle-scsi"
other=/dev/hda1
optional
label=DOS
the differences are in these lines in
bold:
prompt
timeout=50
default=linux
boot=/dev/hda6
map=/boot/map
install=/boot/boot.b
message=/boot/message
lba32
image=/boot/vmlinuz-2.4.7-10
label=linux
read-only
root=/dev/hda6
append="hdb=idle-scsi"
other=/dev/hda1
optional
label=DOS
Only THIS line:
boot=/dev/hda6
Should have been changed from
boot=/dev/hda
to
boot=/dev/hda6
If you follow what I have said this will work.
You are changing the boot= bit and not the root= parameter which is on the 12th line.
So post your lilo.conf file again now.