Quote:
Originally Posted by Ether
Could you give some examples?
|
Sure--the main thing that comes to my mind is adding new operating system entries to the GRUB boot menu. In the original GRUB, all you needed to do was add an appropriate entry to the /boot/grub/menu.lst file. Maybe something like this:
Code:
title Fedora
root (hd0,1)
chainloader +1
Whereas in GRUB 2, you cannot edit the corresponding menu file(which I believe is /boot/grub/grub.cfg) by hand like that. Instead, there are two different places you have to look into: /etc/grub.d/ and /etc/default/grub.
/etc/grub.d contains a set of scripts that represent separate entries in the menu(among other things) which you should edit/add to if you want to add more entries.
/etc/default/grub is a customization script for the GRUB 2 menu, which you can use to change preferences, except when it comes to the actual menu entries themselves.
This is the main reason why I prefer the original GRUB--which one looks more convoluted to you?
