2019-08-18 20:24:39 -04:00
|
|
|
PREPARATION:
|
|
|
|
0.) Comment out all /boot mounts in /etc/fstab and umount /boot if mounted as a separate mountpoint.
|
|
|
|
You want to use *the /boot on your / mount*.
|
|
|
|
|
|
|
|
1.) Prepare each target partition (partitions/part below) as an ESP
|
|
|
|
(https://wiki.archlinux.org/index.php/EFI_system_partition#Format_the_partition).
|
|
|
|
|
|
|
|
2.) Install GRUB2 to *each ESP*. See sample.config.xml for context for the below examples.
|
|
|
|
|
2019-08-18 22:28:52 -04:00
|
|
|
grub-install \
|
|
|
|
--boot-directory=/mnt/boot1 \
|
|
|
|
--bootloader-id=Arch \
|
|
|
|
--efi-directory=/mnt/boot1/ \
|
|
|
|
--target=x86_64-efi \
|
|
|
|
--no-nvram \
|
|
|
|
--recheck
|
|
|
|
|
|
|
|
grub-install \
|
|
|
|
--boot-directory=/mnt/boot2 \
|
2019-08-19 00:29:22 -04:00
|
|
|
--bootloader-id="Arch" \
|
2019-08-18 22:28:52 -04:00
|
|
|
--efi-directory=/mnt/boot2/ \
|
|
|
|
--target=x86_64-efi \
|
|
|
|
--no-nvram \
|
|
|
|
--recheck
|
|
|
|
|
2019-08-19 00:05:52 -04:00
|
|
|
# These are not strictly necessary, as the same path is used in efibootmgr for the primary and the fallback.
|
|
|
|
# grub-install \
|
|
|
|
# --boot-directory=/mnt/boot1 \
|
|
|
|
# --bootloader-id="Arch (Fallback)" \
|
|
|
|
# --efi-directory=/mnt/boot1/ \
|
|
|
|
# --target=x86_64-efi \
|
|
|
|
# --no-nvram \
|
|
|
|
# --recheck
|
|
|
|
#
|
|
|
|
# grub-install \
|
|
|
|
# --boot-directory=/mnt/boot2 \
|
2019-08-19 00:29:22 -04:00
|
|
|
# --bootloader-id="Arch (Fallback)" \
|
2019-08-19 00:05:52 -04:00
|
|
|
# --efi-directory=/mnt/boot2/ \
|
|
|
|
# --target=x86_64-efi \
|
|
|
|
# --no-nvram \
|
|
|
|
# --recheck
|
2019-08-18 20:24:39 -04:00
|
|
|
|
|
|
|
3.) Prepare the ESPs. See sample.config.xml for context for the below examples.
|
|
|
|
|
2019-08-18 22:28:52 -04:00
|
|
|
efibootmgr \
|
|
|
|
--create \
|
|
|
|
--disk /dev/sdd \
|
|
|
|
--part 1 \
|
2019-08-19 00:29:22 -04:00
|
|
|
--loader /EFI/Arch/grubx64.efi \
|
2019-08-18 22:28:52 -04:00
|
|
|
--label "Arch (Fallback)"
|
|
|
|
|
|
|
|
efibootmgr \
|
|
|
|
--create \
|
|
|
|
--disk /dev/sdb \
|
|
|
|
--part 1 \
|
|
|
|
--loader /EFI/Arch/grubx64.efi \
|
|
|
|
--label "Arch"
|