59 | | |
| 59 | * /boot/grub/menu.lst (snip) |
| 60 | {{{ |
| 61 | ## default num |
| 62 | # Set the default entry to the entry number NUM. Numbering starts from 0, and |
| 63 | # the entry number 0 is the default if the command is not used. |
| 64 | # |
| 65 | # You can specify 'saved' instead of a number. In this case, the default entry |
| 66 | # is the entry saved with the command 'savedefault'. |
| 67 | # WARNING: If you are using dmraid do not use 'savedefault' or your |
| 68 | # array will desync and will not let you boot your system. |
| 69 | default 0 |
| 70 | |
| 71 | ## timeout sec |
| 72 | # Set a timeout, in SEC seconds, before automatically booting the default entry |
| 73 | # (normally the first entry defined). |
| 74 | timeout 3 |
| 75 | |
| 76 | ## hiddenmenu |
| 77 | # Hides the menu by default (press ESC to see the menu) |
| 78 | hiddenmenu |
| 79 | |
| 80 | title Ubuntu 8.04.2, kernel 2.6.24-24-server |
| 81 | root (hd0,1) |
| 82 | kernel /boot/vmlinuz-2.6.24-24-server root=/dev/md1 ro quiet splash |
| 83 | initrd /boot/initrd.img-2.6.24-24-server |
| 84 | |
| 85 | title Ubuntu 8.04.2, kernel 2.6.24-24-server (recovery mode) |
| 86 | root (hd0,1) |
| 87 | kernel /boot/vmlinuz-2.6.24-24-server root=/dev/md1 ro single |
| 88 | initrd /boot/initrd.img-2.6.24-24-server |
| 89 | |
| 90 | title Ubuntu 8.04.2, kernel 2.6.24-23-server |
| 91 | root (hd0,1) |
| 92 | kernel /boot/vmlinuz-2.6.24-23-server root=/dev/md1 ro quiet splash |
| 93 | initrd /boot/initrd.img-2.6.24-23-server |
| 94 | |
| 95 | title Ubuntu 8.04.2, kernel 2.6.24-23-server (recovery mode) |
| 96 | root (hd0,1) |
| 97 | kernel /boot/vmlinuz-2.6.24-23-server root=/dev/md1 ro single |
| 98 | initrd /boot/initrd.img-2.6.24-23-server |
| 99 | |
| 100 | title Ubuntu 8.04.2, memtest86+ |
| 101 | root (hd0,1) |
| 102 | kernel /boot/memtest86+.bin |
| 103 | }}} |