You are not logged in.
So my situation is the following;
I have a 1TB disk, which is divided up into 4 Partitons and already has Linux mint installed:
/dev/sdb1 : A small storage partionion for Windows, which is installed on another Disk
/dev/sdb2: My EFI partition
/dev/sdb3: The Linux Mint partition
/dev/sdb4: The Partition I made and formatted for Arch
So I installed Arch with the official installation instructions. But when I came to the point of installing the Boot manager, I had some problems.
I already have GRUB for switching between the Windows and Mint installation and I want to add an Entry for my Arch install.
I firstly mounted my EFI partition to my /boot/efi folder:
mount --mkdir /dev/sdb2 /boot/efiThen I wanted to install GRUB with:
grub-install --target=x86_64-efi --efi-directory=/boot/efi But it returned:
Installing for x86_64-efi platform
EFI variables are not supported on this system.
EFI variables are not supported on this system.
grub-install: error: efibootmgr failed to registry the boot entry: No such file or directory.I think that my Motherboard is BIOS instead of UEFI.
How can I fix this?
Last edited by Flotec09 (2024-06-03 07:42:37)
Offline
On Mint or Arch live, run this:
cat /sys/firmware/efi/fw_platform_sizeIf it complains it doesn't exist, you're running BIOS, if it does exist you'll likely get 64 or 32 returned, in which case you are indeed running EFI.
What's the output of fdisk -l ?
Try mounting /boot instead of /boot/efi
Ryzen 7 9850X3D | AMD 7800XT | KDE Plasma
Offline
Hi! Thank you for the quick reply!
I already tried the
cat /sys/firmware/efi/fw_platform_sizecommand. It complained "File not found". So I am running a BIOS system.
And because I am currently at School and therefore can't test my PC at home, I will paste the exact output of
fdisk -lin the evening. But as far as I remember from yesterday, it returned 4 Partitions on my Linux-Disk, like I described in my original question. And for the other Disks, I don't know, so I am going to check in the evening...
And I also tried mounting to /boot. Made no difference...
Last edited by Flotec09 (2024-06-03 08:45:08)
Offline
In that case follow the GRUB instructions for BIOS systems and see how you get on: https://wiki.archlinux.org/title/GRUB#BIOS_systems
The command you're using at the moment is specifically for EFI.
Do please post the fdisk -l when possible, just want to check what your sdb2 partition looks like, I would expect it to not be an efi type.
Ryzen 7 9850X3D | AMD 7800XT | KDE Plasma
Offline