#26 — Tue 26 August 2025 by Evan Chen
Today was another "oh crap the kernel broke time to regenerate fstab
" day.
My laptop's /boot
ran out of space.
Turns out there isn't actually any reason
that initramfs
or vmlinuz-linux
need to go on the EFI partition.
So the solution was to
- Create a new mount point
/efi
- Move the EFI partition under that mount point.
- Make a normal
/boot
folder (not a mount point) on the root partition. - Move
initramfs
orvmlinuz-linux
onto that folder. - Rerun
grub-install
andgrub-mkconfig
. - Regenerate
/etc/fstab
.
Could've been worse. Thanks Reddit.