0

Which Raspberry Pi operating system images have a serial console enabled out of the box? This is needed for a client to debug why they are not getting HDMI out of their Raspberry Pi 4. The client does not have the technical know-how to change the boot partition's config.txt offline, so needs something that will have a serial console enabled with no modifications.

Reinderien
  • 101
  • 2

1 Answers1

2

All Raspbian images have a serial console prepared to just enable it, but it isn't enabled out of the box. You have to add this line to /boot/config.txt:

enable_uart=1

The file config.txt is stored on the boot partition of Raspbian that is formated as fat so you can modify it on nearly all other computer with different operating systems. Attach the flashed SD Card with a card reader to another computer and add that line to config.txt. Of course you can do it also on the booted SD Card in the RasPi. Then attach the USB adapter cable and use the serial console.

Ingo
  • 42,107
  • 20
  • 85
  • 197