Grub2 indító program újratelepítése

Ubuntu 9.10-nél illetve annál feljebb .
Sajnos a Microsoft Nem foglalkozik az inditó területtel, hanem letörli telepitéskor amit ott talál. 

El kell indítani a telepítő lemezről a rendszert. ( Persze a "kipróbálás" funkcióval. )

Meg kell találni, melyik particón van a /boot könyvtár. Ha nem tudod hogyan lehet megtalálni a /boot könyvtárat, akkor a "mount | grep boot " parancs megmondja. ( Az első oszlopban találod )

sudo mount /dev/X /mnt
x hellyére a lemezrész számát kell beirni
sudo grub-install --root-directory=/mnt/ /dev/X

Szokás szerint a fenti leirásban is vannak olyan részek, amiket nem lehet szó szerint begépelni, hanem értelmezni kell.

sudo fdisk -lIf 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 Note: If the user has a separate /home partition, this must be mounted to /mnt/home. Encrypted home partitions should work.

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