To begin with, you need to change the kernel options at the boot time. If you are using GRUB as the bootloader, it will by default boot the kernel with the quiet splash option. However, you don't want that to happen, so you need to change the kernel options:
- First, create a backup of /etc/default/grub:
- Now, open any editor of your choice to edit /etc/default/grub:
Find the line GRUB_CMDLINE_LINUX_DEFAULT="quiet splash and replace it with GRUB_CMDLINE_LINUX_DEFAULT="debug ignore_loglevel":
- Now run the command to update ...