Grub neuinstallieren

Mit live-cd starten (z.b. ubuntu oder debian-live)

Den Grub in der Konsole wiederherstellen (Befehle nacheinander ausführen!):

sudo mkdir /mnt/proc /mnt/dev
sudo mount /dev/[PARTITION DES SYSTEMS] /mnt
sudo mount --bind /dev /mnt/dev
sudo mount --bind /proc /mnt/proc
sudo mount --bind /sys /mnt/sys

sudo chroot /mnt
update-grub

sudo umount /mnt/dev 
sudo umount /mnt/proc
sudo umount /mnt/ sys
sudo umount /mnt

Jetzt nur noch einen Neustart und alles sollte wieder gehen.