Hi so this is my first time with any Linux distro in general and I’m installing standard arch from the guide on the wiki and I don’t know what to do here
Then follow the below steps to install GRUB to your disk:
Mount the EFI system partition and in the remainder of this section, substitute esp with its mount point.
Choose a boot loader identifier, here named GRUB. A directory of that name will be created in esp/EFI/ to store the EFI binary and this is the name that will appear in the UEFI boot menu to identify the GRUB boot entry.
Execute the following command to install the GRUB EFI application grubx64.efi to esp/EFI/GRUB/ and install its modules to /boot/grub/x86_64-efi/.
Note:
Make sure to install the packages and run the grub-install command from the system in which GRUB will be installed as the boot loader. That means if you are booting from the live installation environment, you need to be inside the chroot when running grub-install. If for some reason it is necessary to run grub-install from outside of the installed system, append the --boot-directory= option with the path to the mounted /boot directory, e.g --boot-directory=/mnt/boot.
Some motherboards cannot handle bootloader-id with spaces in it.
grub-install --target=x86_64-efi --efi-directory=esp --bootloader-id=GRUB
It says I should substitute “esp” with the mount point of my efi partition
I mounted my efi partition to mnt/boot. What do I type in instead of esp?