Restaurer le MBR (Grub) avec le live-CD Ubuntu

informatique linux système

sudo -s
mkdir /mnt/work
mount /dev/hda6 /mnt/work
mount -o bind /dev /mnt/work/dev
mount -o bind /proc /mnt/work/proc
cp /proc/mounts /mnt/work/etc/mtab
chroot /mnt/work /bin/bash
/sbin/grub-install /dev/hda
/sbin/grub
grub> root (hd0,5)
grub> setup (hd0)
grub> quit

Et là normalement en rebootant on retrouve le menu de Grub.