Is it possible to use TrueType monosize fonts in console with framebuffer driver (vesafb)? I'm using Ubuntu.
|
feedback
|
|
Yes, it can be done with this type of setup. None of these require the installation of an X Server.
fbcon does not support this type of setup. I have used fbterm, It looks great and is very fast. | |||||
feedback
|
|
TTFs aren't supported in the kernel, and the kernel's console fonts are all you get at boot time. With the in-kernel console framebuffer, fbcon, the only fonts available are those included when the kernel was compiled. I'd be suprised if the kernel includes code to render TTFs. If you want TTFs during boot, you're probably out of luck. But if you can wait until after boot, you can load an X server and make use of it's font renderers, which support TTFs last time I checked. If you're working on an application, this is probably where you'll need the fonts anyway, so you should be good. Here's kernel documentation on vesafb (and links to fbcon and the generic kernel framebuffer). I haven't found any documentation on the kernel's console fonts, but there should be some in there somewhere. This ancient Framebuffer HOWTO is all I could find that specifically talks about fonts, and it doesn't say much -- this is specifically talking about the kernel's console fonts:
| ||||
|
feedback
|