I edited /etc/default/grub
and changed the line:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
to:
GRUB_CMDLINE_LINUX_DEFAULT=""
Then ran sudo update-grub
and rebooted.
Ramdisk messages display like this during boot:
But the boot messages display correctly:
If I go into "recovery mode", Ramdisk boot messages display correctly. Is there a setting I am missing? I did not have this problem when I was running Ubuntu 18.04.6.
As requested, Here is my CPU info:
inxi -C
CPU:
Topology: Dual Core model: Intel Celeron N3050 bits: 64 type: MCP
L2 cache: 1024 KiB
Speed: 547 MHz min/max: 480/2160 MHz Core speeds (MHz): 1: 538 2: 480
You will likely need to add the name of your video driver module to
/etc/initramfs-tools/modules
:Edit
/etc/initramfs-tools/modules
withsudo
:Note: Be sure to replace
{editor of choice}
with your editor of choice.Add the name of your video driver module to the end of the file. Here is a short list outlining the most common values:
amdgpu
radeon
if you have something from before 2010 or need the legacy ATI driver)i915
nouveau
mgag200
nvidia nvidia_modeset nvidia_uvm nvidia_drm
Save the file and exit
Update
initramfs
:Reboot
This will give you everything you need.
Note for people using full disk encryption:
If you've also removed
quiet
fromGRUB_CMDLINE_LINUX_DEFAULT
, you will have a very 90's era experience when unlocking the volume. The nice password screen is replaced with a simple text-based "Enter password" after some of the preliminary boot messages are displayed.