Slackware Forum - Willysrさんのコメント
インストール完了後、リブートしないでコンソールに落ち、以下の操作をすればGRUBをインストールできる
Link: post #9 - 2022-11-24
----
after installation is done, don't reboot yet, but you can come to console and install grub after mounting the root partition let's assume your root installation is in /dev/sda2 and your UEFI is in /dev/sda1 Code:
mkdir test mount /dev/sda2 test mount -o bind proc test/proc mount -o bind sys test/sys mount -o bind dev test/dev mount /dev/sda1 test/boot/efi/ chroot test grub-mkconfig -o /boot/grub/grub.cfg grub-install /dev/sda2 Thanks to Willysr. --- |