The solution is to disable the splash screen during boot.
Source: How do I disable the boot splash screen, and only show kernel and boot text instead?
- Open
/etc/default/grub
file in editor as superuser. - Find the following line:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
- Change
quiet splash
toquiet
ornosplash
. - Save the file and run the following command:
sudo update-grub2
Source: How do I disable the boot splash screen, and only show kernel and boot text instead?