Well, there were issues, I am just better with dealing with them on my own now.
This shouldn’t happen in 2024 tbh.
BTW, I think it is related to dracut triggering after systemd update because not every pacman -Suy
leads to this.
Well, there were issues, I am just better with dealing with them on my own now.
This shouldn’t happen in 2024 tbh.
BTW, I think it is related to dracut triggering after systemd update because not every pacman -Suy
leads to this.
Not without the use of USB tethering from my phone as kernel and firmware in installer aren’t compatible with my WiFi card.
can’t be done right now?
It can be, just painful. Trying to reinstall grub and kernel but it doesn’t work in live session.
pacman -S grub
...
fatal library error, lookup self
You can ignore this. This is normal in chroot.
Okay, to sum up what I did (from arch-chroot):
mv /boot /boot.bak
cp /etc/default/grub /etc/default/grub.bak
mkdir /boot
mount /dev/nvm0n1p1 /boot# ESP
cp /boot.bak/* /boot/
cp -r /boot.bak/grub /boot/
Then edited /etc/fstab to update mount point from /boot/efi
to /boot
. After that I also ran the following:
pacman -S grub
grub-mkconfig -o /boot/grub/grub.cfg
grub-install --target=x86_64-efi --efi-directory=/boot --bootloader-id=endeavouros
pacman -S linux linux-headers linux-g14 linux-g14-headers
Seems to boot after all of this. Even with my custom linux-mainline-mtu
kernel which I haven’t reinstalled.
Hopefully it’ll live after the next upgrade, but we’ll see.
Looks good so far!
Hopefully you won’t be running into the same issue again.