Re: Artix runit KDE graphical install bootloader error
Reply #15 –
if Calamares fails to install GRUB, following the example at InstallationWithFullDiskEncryption manual you may block the auto-installation of GRUB. To do that, open a related Calamares script with nano /usr/lib/calamares/modules/bootloader/main.py
and replace this line near the end of file at def run() function: prepare_bootloader(fw_type)
should become return None
Alternatively, you may simply run sed -i -e "s/ prepare_bootloader(fw_type)/ return None/g" /usr/lib/calamares/modules/bootloader/main.py
Then you may install with Calamares like usual, however after doing that you will have to install GRUB manually by using the instructions available online. Hope this helps!