OMG 10.04 is so cool!
But where did GRUB's menu.lst disappear?
OK, I found
this thread, which explains that this a whole new game...
I was somewhat overwhelmed by the new syntax so I decided to simply rely on the automatic search feature of GRUB2 as explained in "Adding Entries to Grub 2" in this
Basics document.
So I did so, but it didn't find the other Ubuntu 8.04 bootable partitions on my drive.
BTW, it seems that I have both 10_linux and 30_os-prober in /etc/grub.d:
Code:
drwxr-xr-x 2 root root 4096 2010-12-30 17:29 ./
drwxr-xr-x 127 root root 12288 2010-12-31 11:59 ../
-rwxr-xr-x 1 root root 4444 2010-07-01 17:26 00_header*
-rwxr-xr-x 1 root root 1416 2010-07-01 17:06 05_debian_theme*
-rwxr-xr-x 1 root root 4594 2010-07-01 17:26 10_linux*
-rwxr-xr-x 1 root root 918 2010-03-23 05:40 20_memtest86+*
-rwxr-xr-x 1 root root 6605 2010-07-01 17:26 30_os-prober*
-rwxr-xr-x 1 root root 214 2010-07-01 17:26 40_custom*
-rw-r--r-- 1 root root 483 2010-07-01 17:26 README
What did I do wrong? What am I missing?
Update: Thanks to this thread, I managed to display the menu by simply commenting out the line:
Code:
GRUB_HIDDEN_TIMEOUT=0
Interestingly it contains the entries I edited by hand earlier into /etc/grub.d/40_custom:
Code:
menuentry "Ubuntu 8.04" {
set root=(hd0,0)
linux /boot/vmlinuz-2.6.24-28-generic
initrd /boot/initrd.img-2.6.24-28-generic
}
menuentry "Windows 7 Ultimate 64-bit" {
set root=(hd0,2)
chainloader (hd0,2)+1
}
But it refuses to boot either of these 2. So I am stuck for now with 10.04... What did I do wrong?