LILO configuration

If you are using LILO, complete the following steps:

  1. Complete the following steps to modify the /etc/lilo.conf file:
    1. Add the following text to the end of the first default=linux line:
                              -Monitor
                           
    2. Comment out the map=/boot/map line by adding a # at the beginning of this line.
    3. Comment out the message=/boot/message line by adding a # at the beginning of this line.
    4. Add the following line before the first image=... line:
                              # This will allow you to only Monitor the OS boot via SOL
                           
    5. Add the following text to the end of the first label=linux line:
                              -Monitor
                           
    6. Add the following line to the first image=... section. This enables SOL.
                              append="console=ttyS1,19200n8 console=tty1"
                           
    7. Add the following lines between the two image=... sections:
                              # This will allow you to Interact with the OS boot via SOL
      image=/boot/vmlinuz-2.4.9-e.12smp
          label=linux-Interact
          initrd=/boot/initrd-2.4.9-e.12smp.img
          read-only
          root=/dev/hda6
          append="console=tty1 console=ttyS1,19200n8 "
                           

    The following samples show examples of the original content of the /etc/lilo.conf file and the content of this file after modification.

    Original /etc/lilo.conf contents
                                     prompt
                                  
                                     timeout=50
                                  
                                     default=linux
                                  
                                     boot=/dev/hda
                                  
                                     map=/boot/map
                                  
                                     install=/boot/boot.b
                                  
                                     message=/boot/message
                                  
                                     linear
                                  

                                     image=/boot/vmlinuz-2.4.9-e.12smp
                                  
                                         label=linux
                                  
                                         initrd=/boot/initrd-2.4.9-e.12smp.img
                                  
                                         read-only
                                  
                                         root=/dev/hda6
                                  

                                     image=/boot/vmlinuz-2.4.9-e.12
                                  
                                         label=linux-up
                                  
                                         initrd=/boot/initrd-2.4.9-e.12.img
                                  
                                         read-only
                                  
                                         root=/dev/hda6
                                  
    Modified /etc/lilo.conf contents
                                     prompt
                                  
                                     timeout=50
                                  
                                     default=linux-Monitor
                                  
                                     boot=/dev/hda
                                  
                                     #map=/boot/map
                                  
                                     install=/boot/boot.b
                                  
                                     #message=/boot/message
                                  
                                     linear
                                  

                                     # This will allow you to only Monitor the OS boot via SOL
                                  
                                     image=/boot/vmlinuz-2.4.9-e.12smp
                                  
                                         label=linux-Monitor
                                  
                                         initrd=/boot/initrd-2.4.9-e.12smp.img
                                  
                                         read-only
                                  
                                         root=/dev/hda6
                                  
                                         append="console=ttyS1,19200n8 console=tty1"
                                  

                                     # This will allow you to Interact with the OS boot via SOL
                                  
                                     image=/boot/vmlinuz-2.4.9-e.12smp
                                  
                                         label=linux-Interact
                                  
                                         initrd=/boot/initrd-2.4.9-e.12smp.img
                                  
                                         read-only
                                  
                                         root=/dev/hda6
                                  
                                         append="console=tty1 console=ttyS1,19200n8 "
                                  

                                     image=/boot/vmlinuz-2.4.9-e.12
                                  
                                         label=linux-up
                                  
                                         initrd=/boot/initrd-2.4.9-e.12.img
                                  
                                         read-only
                                  
                                         root=/dev/hda6
                                  
  2. Type lilo and then press Enter to store and activate the LILO configuration.

When the Linux operating system starts, a LILO boot: prompt is displayed instead of the graphical user interface. Pressing Tab while at this prompt will install all of the boot options that are listed. To load the operating system in interactive mode, type linux-Interact and then press Enter.