-
Notifications
You must be signed in to change notification settings - Fork 87
Open
Description
The sytem starts in the grub rescue mode. With the error: disk`mduuid/TheUuidOfTheDisk,1´ not found.
With this in the rescue mode the system boots*¹:
set prefix=(hd0,gpt1)/boot/grub
set root=(hd0,gpt1)
insmod linux
insmod normal
normal
To fix the problem, a device map of the md127 raid must be created. *²
$ echo "($(sudo grub-probe -t bios_hints -d /dev/md127)) /dev/md127" | sudo tee -a /boot/grub/device.map
And grub has to be rewritten:
grub-mkconfig
grub-install /dev/md127
With help from this pages:
*¹: https://it-muecke.de/grub-rescue
*²: https://bugs.launchpad.net/ubuntu/+source/grub2/+bug/1756517
olavorn