source: postlfs/config/console-fonts.xml@ 45ab6c7

11.0 11.1 11.2 11.3 12.0 12.1 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 45ab6c7 was 45ab6c7, checked in by Xi Ruoyao <xry111@…>, 3 years ago

more SVN prop clean up

Remove "$LastChanged$" everywhere, and also some unused $Date$

  • Property mode set to 100644
File size: 9.7 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6]>
7
8<sect1 id="postlfs-console-fonts" xreflabel="About Console Fonts">
9 <?dbhtml filename="console-fonts.html"?>
10
11 <sect1info>
12 <date>$Date$</date>
13 </sect1info>
14
15 <title>About Console Fonts</title>
16
17 <indexterm zone="postlfs-console-fonts">
18 <primary sortas="a-console-fonts">console-fonts</primary>
19 </indexterm>
20
21 <para>
22 An LFS system can be used without a graphical desktop, and unless or until
23 you install <xref linkend="x-window-system"/> you will have to work in the
24 console. Most, if not all, PCs boot with an 8x16 font - whatever the actual
25 screen size. There are a few things you can do to alter the display on the
26 console. Most of them involve changing the font, but the first alters the
27 commandline used by grub.
28 </para>
29
30 <para condition="html" role="usernotes">User Notes:
31 <ulink url="&blfs-wiki;/aboutconsolefonts"/></para>
32
33 <sect2 id="grub-video">
34 <title>Setting a smaller screen size in grub</title>
35
36 <indexterm zone="postlfs-console-fonts grub-video">
37 <primary sortas="e-boot-grub-grub-cfg">/boot/grub/grub.cfg</primary>
38 </indexterm>
39
40 <para>
41 Modern screens often have a lot more pixels then the screens used in the
42 past. If your screen is 1600 pixels wide, an 8x16 font will give you 200
43 columns of text - unless your monitor is enormous, the text will be tiny.
44 One of the ways to work around this is to tell grub to use a smaller size,
45 such as 1024x768 or 800x600 or even 640x480. Even if your screen does not
46 have a 4:3 aspect ratio, this should work.
47 </para>
48
49 <para>
50 To try this, you can reboot and edit grub's command-line to insert a
51 'video=' parameter between the 'root=/dev/sdXn' and 'ro', for example
52 <literal>root=/dev/sda2 video=1024x768 ro</literal> based on the
53 example in LFS section 10.4.4 :
54 <phrase revision="sysv">
55 <ulink url="&lfs-root;/chapter10/grub.html"/></phrase>
56 <phrase revision="systemd">
57 <ulink url="&lfs-rootd;/chapter10/grub.html"/></phrase>.
58 </para>
59
60 <para>
61 If you decide that you wish to do this, you can then (as the
62 <systemitem class="username">root</systemitem> user) edit
63 <filename>/boot/grub/grub.cfg</filename>.
64 </para>
65
66 </sect2>
67
68 <sect2 id="psf-fonts">
69 <title>Using the standard psf fonts</title>
70
71 <indexterm zone="postlfs-console-fonts psf-fonts">
72 <primary sortas="g-usr-share-consolefonts">/usr/share/consolefonts</primary>
73 </indexterm>
74
75 <para>
76 In LFS the <application>kbd</application> package is used. The fonts it
77 provides are PC Screen Fonts, usually called PSF, and they were installed
78 into <filename class="directory">/usr/share/consolefonts</filename>. Where
79 these include a unicode mapping table, the file suffix is often changed to
80 <literal>.psfu</literal> although packages such as
81 <application>terminus-font</application> (see below) do not add the 'u'.
82 These fonts are usually compressed with gzip to save space, but that is
83 not essential.
84 </para>
85
86 <para>
87 The initial PC text screens had 8 colours, or 16 colours if the bright
88 versions of the original 8 colours were used. A PSF font can include up
89 to 256 characters (technically, glyphs) while allowing 16 colours, or up
90 to 512 characters (in which case, the bright colours will not be
91 available). Clearly, these console fonts cannot be used to display CJK
92 text - that would need thousands of available glyphs.
93 </para>
94
95 <para>
96 Some fonts in <application>kbd</application> can cover more than 512
97 codepoints ('characters'), with varying degrees of fidelity: unicode
98 contains several whitespace codepoints which can all be mapped to a space,
99 varieties of dashes can be mapped to a minus sign, smart quotes can map to
100 the regular ASCII quotes rather than to whatever is used for "codepoint
101 not present or invalid", and those cyrillic or greek letters which look
102 like latin letters can be mapped onto them, so 'A' can also do duty for
103 cyrillic A and greek Alpha, and 'P' can also do duty for cyrillic ER and
104 greek RHO. Unfortunately, where a font has been created from a BDF file
105 (the method in terminus and debian's <ulink
106 url="https://packages.debian.org/jessie/utils/console-setup">console-setup
107 </ulink>) such mapping of additional codepoints onto an existing glyph is
108 not always done, although the terminus ter-vXXn fonts do this well.
109 </para>
110
111 <para>
112 There are over 120 combinations of font and size in
113 <application>kbd</application>: often a font is provided at several
114 character sizes, and sometimes varieties cover different subsets of
115 unicode. Most are 8 pixels wide, in heights from 8 to 16 pixels, but there
116 are a few which are 9 pixels wide, some others which are 12x22, and even
117 one (<filename>latarcyrheb-sun32.psfu</filename>) which has been scaled up
118 to 16x32. Using a bigger font is another way of making text on a large
119 screen easier to read.
120 </para>
121
122 </sect2>
123
124 <sect2 id="testing-fonts">
125 <title>Testing different fonts</title>
126
127 <para>
128 You can test fonts as a normal user. If you have a font which has not been
129 installed, you can load it with :
130 </para>
131
132<screen><userinput>setfont /path/to/yourfont.ext</userinput></screen>
133
134 <para>
135 For the fonts already installed you only need the name, so using
136 <filename>gr737a-9x16.psfu.gz</filename> as an example:
137 </para>
138
139<screen><userinput>setfont gr737a-9x16</userinput></screen>
140
141 <para>
142 To see the glyphs in the font, use:
143 </para>
144
145<screen><userinput>showconsolefont</userinput></screen>
146
147 <para>
148 If the font looks as if it might be useful, you can then go on to test it
149 more thoroughly.
150 </para>
151
152 <para>
153 When you find a font which you wish to use, as the
154 <systemitem class="username">root</systemitem> user) edit
155 <phrase revision="sysv">
156 <filename>/etc/sysconfig/console</filename> as described in
157 LFS section 9.6.5
158 <ulink url="&lfs-root;/chapter09/usage.html"/>.</phrase>
159 <phrase revision="systemd">
160 <filename>/etc/vconsole.conf</filename> as described in
161 LFS section 9.6
162 <ulink url="&lfs-rootd;/chapter09/console.html"/>.</phrase>.
163 </para>
164
165 <para>
166 For fonts not supplied with the <application>kbd</application> package
167 you will need to optionally compress it / them with
168 <command>gzip</command> and then install it / them as the
169 <systemitem class="username">root</systemitem> user.
170 </para>
171
172 </sect2>
173
174<!-- after that, psf-tools -->
175
176 <sect2 id="psf-tools">
177 <title>Editing fonts using psf-tools</title>
178
179 <indexterm zone="postlfs-console-fonts psf-tools">
180 <primary sortas="a-psftools">psftools</primary>
181 </indexterm>
182
183 <para>
184 Although some console fonts are created from BDF files, which is a text
185 format with hex values for the pixels in each row of the character, there
186 are more-modern tools available for editing psf fonts. The
187 <ulink url="http://www.seasip.info/Unix/PSF/">psftools</ulink> package
188 allows you to dump a font to a text representation with a dash for a
189 pixel which is off (black) and a hash for a pixel which is on (white).
190 You can then edit the text file to add more characters, or reshape them,
191 or map extra codepoints onto them, and then create a new psf font with
192 your changes.
193 </para>
194
195 </sect2>
196
197<!-- finally, link to terminus and link to it from above -->
198 <sect2 id="terminus-font">
199 <title>Using fonts from Terminus-font</title>
200
201 <indexterm zone="postlfs-console-fonts terminus-font">
202 <primary sortas="a-terminus-font">terminus-font</primary>
203 </indexterm>
204
205 <para>
206 The <ulink
207 url="http://terminus-font.sourceforge.net/">Terminus Font</ulink> package
208 provides fixed-width bitmap fonts designed for long (8 hours and more per
209 day) work with computers. Under 'Character variants' on that page is a
210 list of patches (in the <filename class="directory">alt/</filename>
211 directory). If you are using a graphical browser to look at that page, you
212 can see what the patches do, e.g. 'll2' makes 'l' more visibly different
213 from 'i' and '1'.
214 </para>
215
216 <para>
217 By default <application>terminus-fonts</application> will try to create
218 several types of font, and it will fail if <command>bdftopcf</command>
219 from <xref linkend="xorg7-app"/> has not been installed. The configure
220 script is only really useful if you go on to install
221 <emphasis>all</emphasis> the fonts (console and X11 bitmap) to the
222 correct directories, as in a distro. To build only the PSF fonts and
223 their dependencies, run:
224 </para>
225
226<screen><userinput>make psf</userinput></screen>
227
228 <para>
229 This will create more than 240 ter-*.psf fonts. The 'b' suffix indicates
230 bright, 'n' indicates normal. You can then test them to see if any fit
231 your requirements. Unless you are creating a distro, there seems little
232 point in installing them all.
233 </para>
234
235 <para>
236 As an example, to install the last of these fonts, you can gzip it and
237 then as the
238 <systemitem class="username">root</systemitem> user:
239 </para>
240
241<screen><userinput>install -v -m644 ter-v32n.psf.gz /usr/share/consolefonts</userinput></screen>
242
243 </sect2>
244
245
246<!-- then svn up, add changelog, do the propsets, create wiki page -->
247</sect1>
Note: See TracBrowser for help on using the repository browser.