1
Installation / Re: Nutyx on Mac hardware
« Last post by ndawka on Sun Nov 19 12:55:36 2023 »You can try a couple of solutions, as per https://unix.stackexchange.com/questions/91620/efi-variables-are-not-supported-on-this-system.
First, please check, that the efivar package is installed using
Check that UEFI boot method is set as default.
Try
Switch over to systemd using this guide: https://nutyx.org/en/default-init-system, then enable efivars using
First, please check, that the efivar package is installed using
Code: [Select]
sudo cards install efivar
. Then:Check that UEFI boot method is set as default.
Try
Code: [Select]
mount --bind /sys/firmware/efi/efivars /mnt/sys/firmware/efi/efivars
before chrooting.Switch over to systemd using this guide: https://nutyx.org/en/default-init-system, then enable efivars using
Code: [Select]
sudo modprobe efivarfs
, after that try chrooting into the system and Code: [Select]
grub install
again.Quote
Add efi=runtime to your kernel parameters in /etc/default/grub configuration.Code: [Select]GRUB_CMDLINE_LINUX_DEFAULT="efi=runtime quiet"
(or whatever the default is on NuTyX and add "efi=runtime")
Don't forgetCode: [Select]sudo update-grub2
!