There's a prompt on boot. After entering my password and hitting enter nothing happens and boot doesn't continue. It just freezes. I'm on 22.04.3.
1 Answers
I'm having a similar but not quite the same issue. I'm posting this since it may be useful to you or someone else.
My issue: When I enter the disk decryption password on the splash screen it says it's wrong (I know it's the correct password since I frequently use the computer and have to enter this password).
@DanielT's solution in the comments of editing boot options worked for me.
The (temporary) fix:
- During boot hold shift to show GRUB.
- Select the first entry
Ubuntu
which leads to boot options - Remove
quiet splash
according to @DanielT's comment - Hit F10 to continue boot
Now there are some logs passing by until we're asked for the password. In my case, entering the password here successfully decrypted the disk.
Update: I used $ sudo apt autoremove
to remove older kernels and now I can boot again without going through these steps. I'm wondering whether I was running out of space in the /boot
partition and it was causing this problem but I didn't check how much space I had left beforehand.

- 3,980
- 4
- 29
- 36
-
1My comment was supposed to be a req for info. If it works, then probably the plymounth kbd layout is wrong. Do
dpkg-reconfigure keyboard-configuration
from https://askubuntu.com/q/434849/1004020 andupdate-initramfs
solve it permanently? – Daniel T Feb 14 '24 at 19:43 -
@DanielT I don't think my issue was about the keyboard. I had to go through the steps above every time I rebooted the computer, but after I did
autoremove
to get rid of older kernels the problem disappeared. I rebooted right afterwards and it worked fine. I suspect my\boot
partition was full but I didn't check it before theautoremove
so I can't be sure. I didn't change anything else between the reboots that didn't work (had to use steps above) and the one that did work (afterautoremove
). I've updated the question with this info. – Daniel Feb 15 '24 at 00:31 -
1I'm glad the
autoremove
worked for you. I don't think/boot
being full causes any problems because I mount mine read-only. I think the reason it worked is because somehow your initramfs and the scripts that generated them went out of sync somehow. Whenapt autoremove
removes the kernel, it runsupdate-grub
and maybeupdate-initramfs
, which brings things back into sync – Daniel T Feb 15 '24 at 00:34
quiet splash
. Then press the key to continue boot and post the messages that appear after entering your password. – Daniel T Feb 03 '24 at 06:08Esc
during boot. – mcendu Feb 14 '24 at 09:09