-1

I setup my rPi to start with Console Autologin.

I also start a script from ~/.bashrc, which runs tail -f on a growing file.

The four raspberry icons on top of the console never disappear:

Four raspberries on top of my console

How can I prevent them from showing up altogether? Alternatively, let them scroll out of screen?

Gauthier
  • 109
  • 3

1 Answers1

1

The Pi logos are done the same way as the Tux penguins used with the normal linux kernel. Try adding this to /boot/cmdline.txt:

 logo.nologo

From: https://www.kernel.org/doc/html/latest/admin-guide/kernel-parameters.html

Remember, cmdline.txt must be all one line. Separate parameters with spaces.

goldilocks
  • 60,325
  • 17
  • 117
  • 234