# # /boot/grub/menu.list # # Original File # ------------- # http://Linux-Boot.net/Loaders/Grub/Examples/menu.lst # # # To Add Changes # -------------- # vi /boot/grub/menu.lst # # grub-install /dev/hda # - or - # grub-install --root-directory=/boot [ --force-lba ] /dev/hda # # # 13-Oct-03 amo Date-of-Birth # 13-May-04 amo Added linux-2.4.26 w/ OpenWall patch # 19-Aug-05 amo Added Serial Console # # # # # Use prettier colors # color light-green/brown blink-red/blue color white/blue black/light-gray # # By default boot the first menu entry default 0 # # # 3 seconds before booting the default timeout 3 # # gfxmenu (hd0,0)/boot/message # # # -------------- # Serial Console # -------------- # http://www.wlug.org.nz/GrubNotes # # serial --unit=0 --speed=19200 # terminal --timeout=10 serial console # # --unit=X which serial port to use. 0 = ttyS0, 1 = ttyS1 etc # --speed=X the rate in bps the serial link should run at # --word=X number of data bits # --parity=X parity to use, where X is one of 'no', 'even', 'odd' # --stop=X number of stop bits to use # # --timeout=X the number of seconds GRUB should wait for a keypress before continuing # serial if this option is present, the serial console will be used # console if this option is present, the local console will be used # # # # # you need to add kernel options # # # console=ttyS0,19200n8 # # # # 13-May-04 amo Added linux-2.4.26 w/ OpenWall patch # title Linux-2.4.26ow kernel (hd0,0)/boot/vmlinuz-2.4.26ow root=/dev/hda1 vga=0x31a showopts # # # # # title failsafe # kernel (hd0,0)/boot/vmlinuz.shipped root=/dev/hda1 showopts ide=nodma apm=off acpi=off vga=normal nosmp noapic maxcpus=0 3 # initrd (hd0,0)/boot/initrd.shipped # # # # End of file