Grub2

From Hack Sphere Labs Wiki
Jump to: navigation, search

Finding Your Grub Version

There are major differences between legacy GRUB and the new GRUB2 bootloaders, so the last thing you want to do is run commands specific to one version on the other, as this could render your system unbootable (which you could fix, but with some time spent fiddling). If unsure of your GRUB version, enter the following command in a terminal:

grub-install -v

The output will look like:

grub-install (GNU GRUB 1.98-1ubuntu6)

In the case of the example, it is showing that GRUB2 is the bootloader. Don’t be fooled by the “1” in the version number, as legacy GRUB will be reported as 0.97 (or earlier).

Taken from: http://ubuntugenius.wordpress.com/2010/05/11/legacy-or-grub2-find-your-version-of-grub-bootloader-in-ubuntulinux/

General Resources