Reinstalling Grub

From National Gallery Research Wiki
Revision as of 15:55, 18 November 2010 by Jpadfield (talk | contribs) (Created page with "This page is part of the Linux Setup discussion. ==Reinstalling from LiveCD== This is a quick and simple method of restoring a broken system's GRUB 2 files. The terminal is...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

This page is part of the Linux Setup discussion.

Reinstalling from LiveCD

This is a quick and simple method of restoring a broken system's GRUB 2 files. The terminal is used for entering commands and the user must know the device name/partition of the installed system (sda1, sdb5, etc). The problem partition is located and mounted from the LiveCD. The files are then copied from the LiveCD libraries to the proper locations and MBR. It requires the least steps and fewer command line entries than the following methods.

  • Boot to the LiveCD Desktop (Ubuntu 9.10 or later).
  • Open a terminal by selecting Applications, Accessories, Terminal from the menu bar.
  • Determine the partition with the Ubuntu installation. The fdisk option "-l" is a lowercase "L".
sudo fdisk -l

If the user isn't sure of the partition, look for one of the appropriate size or formatting.

Running sudo blkid may provide more information to help locate the proper partition, especially if the partitions are labeled. The device/drive is designated by sdX, with X being the device designation. sda is the first device, sdb is the second, etc. For most users the MBR will be installed to sda, the first drive on their system. The partition is designated by the Y. The first partition is 1, the second is 2. Note the devices and partitions are counted differently.

  • Mount the partition containing the Ubuntu installation.
sudo mount /dev/sdxY /mnt

Example: sudo mount /dev/sda1 Note: If the user has a separate /boot partition, this must be mounted to /mnt/boot

  • Run the grub-install command as described below. This will reinstall the GRUB 2 files on the mounted partition to the proper location and to the MBR of the designated device.
sudo grub-install --root-directory=/mnt/ /dev/sdX

Example: sudo grub-install --root-directory=/mnt/ /dev/sda

  • Reboot
  • Refresh the GRUB 2 menu with:
sudo update-grub