2

how do I delete grub on Ubuntu 11.10. I want to get into ubuntu normally without having to choose which operating system I would run. and how to remove ubuntu with older kernels as shown below

grub

Fanoy
  • 1,645
  • 4
  • 19
  • 22
  • Grub is a bootloader, don't delete it, unless you want the system to become unbootable. To remove old kernel versions, -> http://askubuntu.com/questions/65096/how-to-clean-previous-kernels-after-update. – mikewhatever Feb 02 '12 at 01:19

2 Answers2

1

You can not delete or remove grub as grub is responsible for booting.

You can, however, configure grub to hide the menu.

Edit /etc/default/grub

# Graphical 
gksu gedit /etc/default/grub

# command line
sudo -e /etc/default/grub

And edit or add these lines

GRUB_HIDDEN_TIMEOUT=1
GRUB_HIDDEN_TIMEOUT_QUIET=true

GRUB_HIDDEN_TIMEOUT=X

X is a positive integer (e.g. 1, 5, 10, etc)

The boot process will pause and display a blank screen or the designated splash >image for X seconds. At the end of the time period, the system will boot. No menu will >be displayed. While GRUB_HIDDEN_TIMEOUT is active, the menu can be displayed by pressing any >key.

See: https://help.ubuntu.com/community/Grub2#Hidden

In terms of old kernels, remove them. either from the command line of software center.

How do I remove old kernel versions to clean up the boot menu?

Panther
  • 100,877
  • 19
  • 193
  • 283
1

Also, there seems to be some graphical utility called StartUpManager which allows to set the menu timeout and other settings:

StartUpManager

Sergey
  • 43,339
  • 13
  • 106
  • 107