Tell me more ×
Raspberry Pi Stack Exchange is a question and answer site for users and developers of hardware and software for Raspberry Pi. It's 100% free, no registration required.

I have a Raspberry pi B, using Debian, just rigged up with a 3.5 inch TFT-LCD monitor via VGA. The text size in command line mode is too small to read, so I would like to increase its size, and one method says "edit /boot/config.txt". However the command ls /boot shows no config.txt -- the only .txt file is cmdline.txt.

Another method ref: http://www.raspberrypi-spy.co.uk/2012/11/cheap-miniature-lcd-screen which says use sudo dpkg-reconfigure console-setup doesn't seem to make any difference.

Have I done something wrong? I'd appreciate any help in progressing forward from here.

share|improve this question

1 Answer

up vote 6 down vote accepted

I have this problem, too, when I'm using my huge TV. Try this:

setfont /usr/share/consolefonts/Lat15-TerminusBold20x10.psf.gz

To see a list of available fonts: ls /usr/share/consolefonts/

The numbers at the end indicate width and height (though not always that exact!)

No idea why config.txt is missing. However, you can use this:

https://raw.github.com/Evilpaul/RPi-config/master/config.txt

as a template for creating a new one.

My guess would be that a) it's been deleted accidentally or b) has been corrupted in some way in the file system and has disappeared. (a is more likely)

share|improve this answer
Thank you recantha, that worked very well. That problem solved nicely, but I still don't understand why config.txt is missing. Looking this gift horse straight in the mouth, the font now is a bit too big, so: is there a way to see other available fonts? – Harry Weston Nov 9 '12 at 19:09
Edited my original to answer additional question. – recantha Nov 10 '12 at 4:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.