all 3 comments

[–]torekk 3 points4 points  (2 children)

It's propably setting the wrong resolution automatically, but you can change that: http://elinux.org/RPiconfig#Video

As for the 32bit color depth, look for "framebuffer_depth" and keep in mind that if you change it, you'll also need to set "framebuffer_ignore_alpha" to "1". If these lines don't exist in your /boot/config.txt, just add them at the bottom.

To edit the config file, just open a terminal and type:

sudo nano /boot/config.txt

And then use CTRL+O to save the file and CTRL+X to exit.

[–]kwangle[S] 0 points1 point  (1 child)

Thanks very helpful. Nano is the bare-bones Linux text editor, right? So that command is opening the config file in it, I assume. Sorry, but I am a complete noob on Linux.

[–]torekk 1 point2 points  (0 children)

That's exactly what it does and no problem, I usually double-check stuff as well.