⇒ nach Reboot bootet System nicht
⇒ „Endlosschleife“: BIOS-Meldung, Boot-Versuch, BIOS-Meldung, …
⇒ Ursache: Problem mit installiertem Grub2 in Kombination mit dem BIOS des Lenovo S205
1. Boot von Ubuntu 12.04 als Live-System von CD oder USB-Stick (von ISO-Image per dd erstellt)
2. Mounten des installierten Systems (z.B. mount -t auto /dev/sda1 /mnt)
3. Mounten von proc-,sys- und dev-Filesystem
# sudo mount -o bind /dev /mnt/dev # sudo mount -o bind /proc /mnt/proc # sudo mount -o bind /sys /mnt/sys
4. In chroot-Umgebung wechseln:
# chroot /mnt/ /bin/bash
5. alte Grub-Version installieren, Grub2 und abhängige Pakete werden automatisch deinstalliert:
# apt-get install grub
6. Grub-Update durchführen, erstellt u.a. Grub-Konfiguration:
# grub-update
7. Grub-Install zur Installation im MBR der Festplatte durchführen:
# grub-install --recheck /dev/sda (--> Option -- recheck wichtig!)
8. reboot
9. 12.04 LTS sollte von Festplatte sda starten