12

I installed archlinux-arm on the RPI.

I have a TV, which has 1680x1050 resolution. Where can I change the bash settings to fit the screen correctly? I also want to the boot screen (where I can see what is loading) to be nice.


I have this TV. Which is the correct settings for this in the config.txt?

Gergely Fehérvári
  • 567
  • 3
  • 5
  • 16
  • 2
    Just to be correct in terminology - there are no bash settings related to resolution as bash doesn't care about that. All it knows about is text. Now how big the text is and how many characters can you fit on the screen depends on terminal settings. There are couple of terminals you can use - one is the "startup" one, which uses full screen framebuffer (this is the one you see before using startx) and the other can be run as window in graphical environment. What PhonicUK said tells you how to change framebuffer resolution which is used to display (almost) all the graphical output of RPi. – Krzysztof Adamski Aug 10 '12 at 12:14

2 Answers2

13
  1. In the /boot/config.txt file, add hdmi_group=2 and hdmi_mode=58 to get 1680x1050. You must be root to do this.
  2. Restart the Raspberry Pi; sudo reboot.

Notes

See http://elinux.org/RPi_config.txt for a complete list of resolutions and modes.

Alex Chamberlain
  • 15,530
  • 14
  • 67
  • 113
PhonicUK
  • 433
  • 3
  • 7
0

I can explain what I think. In the config file have you 'uncommented' meaning to remove the # from a specific line. If u do not do this the Pi wont think any changes have been made.

Also here is a link to a resolution spreadsheet.

Piotr Kula
  • 17,307
  • 6
  • 65
  • 104