Eine Minute
Grub reparieren
Livesystem booten (oder zur Not auch z.B. ubuntu installer und dann dort mit STRG-F2 auf eine Console wechseln).
Alles nachfolgende dann als root ausführen:
mkdir /newroot
–> bzw. mit lvmdiscscan nach LVs suchen und dann /dev/splunk-vg/root entsprechend anpassen
mount /dev/splunk-vg/root /newroot # Systempartition"
mount -o bind /dev /newroot/dev
mount -o bind /proc /newroot/proc
mount -o bind /sys /newroot/sys
Ins zu reparierende System wechseln (chroot)
chroot /newroot
mount /dev/sda1 /boot # sofern eine Bootpartition existiert
Dann Neuinstallation grub2
update-grub2
grub-install /dev/sdc
exit
reboot