console.xml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
  3. <!ENTITY % general-entities SYSTEM "../general.ent">
  4. %general-entities;
  5. ]>
  6. <sect1 id="ch-scripts-console">
  7. <title>Configuring the Linux Console</title>
  8. <?dbhtml filename="console.html"?>
  9. <indexterm zone="ch-scripts-console">
  10. <primary sortas="d-console">console</primary>
  11. <secondary>configuring</secondary></indexterm>
  12. <para>This section discusses how to configure the <command>console</command>
  13. bootscript that sets up the keyboard map and the console font. If non-ASCII
  14. characters (e.g., the British pound sign and Euro character) will not be used
  15. and the keyboard is a U.S. one, skip this section. Without the configuration
  16. file, the <command>console</command> bootscript will do nothing.</para>
  17. <para>The <command>console</command> script reads the
  18. <filename>/etc/sysconfig/console</filename> file for configuration information.
  19. Decide which keymap and screen font will be used. Various language-specific
  20. HOWTO's can also help with this (see <ulink
  21. url="http://www.tldp.org/HOWTO/HOWTO-INDEX/other-lang.html"/>. A pre-made
  22. <filename>/etc/sysconfig/console</filename> file with known settings for several
  23. countries was installed with the LFS-Bootscripts package, so the relevant
  24. section can be uncommented if the country is supported. If still in doubt, look
  25. in the <filename class="directory">/usr/share/kbd</filename> directory for valid
  26. keymaps and screen fonts. Read the <command>loadkeys</command> and
  27. <command>setfont</command> manual pages and determine the correct arguments for
  28. these programs. Once decided, create the configuration file with the following
  29. command:</para>
  30. <screen><userinput>cat &gt;/etc/sysconfig/console &lt;&lt;"EOF"
  31. <literal>KEYMAP="<replaceable>[arguments for loadkeys]</replaceable>"
  32. FONT="<replaceable>[arguments for setfont]</replaceable>"</literal>
  33. EOF</userinput></screen>
  34. <para>For example, for Spanish users who also want to use the Euro
  35. character (accessible by pressing AltGr+E), the following settings are
  36. correct:</para>
  37. <screen><userinput>cat &gt;/etc/sysconfig/console &lt;&lt;"EOF"
  38. <literal>KEYMAP="es euro2"
  39. FONT="lat9-16 -u iso01"</literal>
  40. EOF</userinput></screen>
  41. <note><para>The <envar>FONT</envar> line above is correct only for the ISO 8859-15
  42. character set. If using ISO 8859-1 and, therefore, a pound sign
  43. instead of Euro, the correct <envar>FONT</envar> line would be:</para>
  44. <screen><userinput>FONT="lat1-16"</userinput></screen></note>
  45. <para>If the <envar>KEYMAP</envar> or <envar>FONT</envar> variable is not set, the
  46. <command>console</command> initscript will not run the corresponding
  47. program.</para>
  48. <para>In some keymaps, the Backspace and Delete keys send characters different
  49. from ones in the default keymap built into the kernel. This confuses some
  50. applications. For example, Emacs displays its help (instead of erasing the
  51. character before the cursor) when Backspace is pressed. To check if the keymap
  52. in use is affected (this works only for i386 keymaps):</para>
  53. <screen><userinput>zgrep '\W14\W' <replaceable>[/path/to/your/keymap]</replaceable></userinput></screen>
  54. <para>If the keycode 14 is Backspace instead of Delete, create the
  55. following keymap snippet to fix this issue:</para>
  56. <screen><userinput>mkdir -p /etc/kbd &amp;&amp; cat &gt; /etc/kbd/bs-sends-del &lt;&lt;"EOF"
  57. <literal> keycode 14 = Delete Delete Delete Delete
  58. alt keycode 14 = Meta_Delete
  59. altgr alt keycode 14 = Meta_Delete
  60. keycode 111 = Remove
  61. altgr control keycode 111 = Boot
  62. control alt keycode 111 = Boot
  63. altgr control alt keycode 111 = Boot</literal>
  64. EOF</userinput></screen>
  65. <para>Tell the <command>console</command> script to load this
  66. snippet after the main keymap:</para>
  67. <screen><userinput>cat &gt;&gt;/etc/sysconfig/console &lt;&lt;"EOF"
  68. <literal>KEYMAP_CORRECTIONS="/etc/kbd/bs-sends-del"</literal>
  69. EOF</userinput></screen>
  70. <para>To compile the keymap directly into the kernel instead of
  71. setting it every time from the <command>console</command> bootscript,
  72. follow the instructions given in <xref linkend="ch-bootable-kernel" role="."/>
  73. Doing this ensures that the keyboard will always work as expected,
  74. even when booting into maintenance mode (by passing
  75. <parameter>init=/bin/sh</parameter> to the kernel), because the
  76. <command>console</command> bootscript will not be run in that
  77. situation. Additionally, the kernel will not set the screen font
  78. automatically. This should not pose many problems because ASCII characters
  79. will be handled correctly, and it is unlikely that a user would need
  80. to rely on non-ASCII characters while in maintenance mode.</para>
  81. <para>Since the kernel will set up the keymap, it is possible to omit
  82. the <envar>KEYMAP</envar> variable from the
  83. <filename>/etc/sysconfig/console</filename> configuration file. It can
  84. also be left in place, if desired, without consequence. Keeping it
  85. could be beneficial if running several different kernels where it is
  86. difficult to ensure that the keymap is compiled into every one of
  87. them.</para>
  88. </sect1>