Hi,
I prefer to see everything that is loading during boot. Is there a way to remove the Parrot logo when booting?
You can press the Esc key at any time to hide the boot logo and show the kernel ring buffer. You can also press Esc when shutting down or rebooting to see the shutdown process.
I ended up having to install grub-customizer
sudo apt install grub-customizer
then running it
sudo grub-customizer
then selecting the top entry (Parrot GNU/Linux) and clicking the edit button (the one with the pencil on paper button) and changing
linux /vmlinuz-5.9.0-2parrot1-amd64 root=UUID=(long UUID) ro quiet splash noautomount
removing the “quiet splash” to
linux /vmlinuz-5.9.0-2parrot1-amd64 root=UUID=(long UUID) ro noautomount
then saving it.
############################################-
###The following did NOT work for some reason…###
To make it permanent run
sudo pluma /etc/default/grub
and change
GRUB_CMDLINE_LINUX_DEFAULT=“quiet”
to
GRUB_CMDLINE_LINUX_DEFAULT=“nosplash”
Then run
sudo update-grub
and reboot.
######End