after upgrading to Mageia3, I'm no longer able to boot my encrypted system. After some debugging I ended with adding `rdshell rdinitdebug rdbreak=pre-mount` to the kernel command line and at least was able to enter the crypt password.
The command executed (as shown by dracut's debug-output) is
- Code: Select all
/bin/plymouth ask-for-password --prompt Password (/dev/sda6) --number-of-tries=5 --command=/sbin/cryptsetup luksOpen -T1 /dev/sda6 crypt_sda6
After entering the password, I get this error message:
- Code: Select all
/dev/mapper/control: open failed: No such device
Failure to communicate with kernel device-mapper driver.
Check that device-mapper is available in the kernel.
Cannot initialize device-mapper. Is dm_mod kernel module loaded?
After entering the password 5 times (see number of tries), drakut continues until it stops with message "sh: 0: can't acess tty; job control turned of".
Now executing
- Code: Select all
modprobe dm_mod
- Code: Select all
/sbin/cryptsetup luksOpen -T1 /dev/sda6 crypt_sda6
Any help?