You are not logged in.
After upgrade my system I got the error in the title
my config;
Partitions:
# /dev/mapper/root
/UUID=<disk-uuid> / ext4
# /dev/mapper/home
/UUID=<disk-uuid> /home ext4
# /dev/mapper/swap
/UUID=<disk-uuid> none swap
All partitions encrypted with LUKS except /boot
I have recreated my mkinitcpio and grub config but the error persists, now to be able to boot I need to perform the following steps
1. wait to get access to rootfs
2. open the root device
3. boot /dev/mapper/root new_root
4. exit
Any idea from where start checking?
Last edited by habutre (2025-02-05 22:04:56)
Offline
After some checkings here and there I realize that the GRUB Kernel param configured in /etc/default/grub below was missing
GRUB_CMDLINE_LINUX_DEFAULT="loglevel=3 quiet splash cryptdevice=UUID=<the luks root block UUID>:root"
I get the luks block UUID via sudo blkid command and TBH I don't remember to explicitly add this before, but it solve the issues in my case
Offline