(In reply to Holger Sickenberg from comment #10) > Not really much more information Yes, let's try to get the core dump. Steps: - If you don't have `systemd-coredump` installed in your system, install it. - Add systemd-coredump to the initrd: `dracut -f -a systemd-coredump` - Boot adding `rd.break` to the kernel command line. - Connect via ssh to this machine to cause the core dump. - From the emergency shell, the core dump file should be located in /var/lib/systemd/coredump/, but /var is not persistent on the initrd, so you have to: # mount -o remount,rw /sysroot # cp /var/lib/systemd/coredump/* /sysroot/var/lib/systemd/coredump - After booting the system, you can get the core dump and attach it here. Thanks!