0

Possible Duplicate:
Aesthetically editing grub.cfg
Make grub keep its default boot under kernel updates

Hello,

I want to use the Grub bootloader to boot up my system with my triple boot.

Now, i want to configure grub on my Ubuntu OS. How can I? I want to do stuff like editing the startup entries, like you could do with EasyBCD for Windows. Startup-Manager in the Ubuntu softwarecentre doesn do this. Can anyone give me a recommendation?

Deniz Zoeteman
  • 1,081
  • 12
  • 26
  • 48
  • duplicates: http://superuser.com/questions/111302/aesthetically-editing-grub-cfg and http://superuser.com/questions/102692/make-grub-keep-its-default-boot-under-kernel-updates – quack quixote Apr 20 '10 at 02:34

2 Answers2

0

Got it done,

Threw terminal:

cp /boot/grub/grub.cfg /home/me/Desktop (edit the file on the desktop, save)
Add root password: sudo passwd root
su root
cp /home/me/Desktop/grub.cfg /boot/grub

Worked for me.

Deniz Zoeteman
  • 1,081
  • 12
  • 26
  • 48
  • this works until you install a new kernel. at which point *update-grub* is run and your special */boot/grub/grub.cfg* is overwritten. see the duplicates for how to do it so that *grub.cfg* is auto-generated with your changes. – quack quixote Apr 20 '10 at 02:33
0

If you enter the command:

gksudo gedit /boot/grub/menu.lst

from the command line, it will let you edit the grub entries in a text editor. You don't specifically say you are looking for a GUI editor, but you could use Gnome System Tools which has a graphical editor as well.

Joshua Nurczyk
  • 2,536
  • 2
  • 19
  • 18