mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2025-01-19 05:27:39 +00:00
8d18f3d4a9
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@1442 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
32 lines
1.0 KiB
XML
32 lines
1.0 KiB
XML
<sect1 id="ch07-loadkeys">
|
|
<title>Configuring the loadkeys script</title>
|
|
<?dbhtml filename="loadkeys.html" dir="chapter07"?>
|
|
|
|
<para>You only need to create configure script if you don't have a
|
|
default 101 keys US keyboard layout.</para>
|
|
|
|
<para>The /etc/sysconfig/keyboard file contains the information the
|
|
loadkeys script needs to operate. This file contains the LAYOUT variable
|
|
which tells loadkeys what keymap to load that corresponds with your
|
|
keyboard.</para>
|
|
|
|
<para>Create a new file <filename>/etc/sysconfig/keyboard</filename>
|
|
by running the following:</para>
|
|
|
|
<para><screen><userinput>cat > /etc/sysconfig/keyboard << "EOF"</userinput
|
|
>
|
|
# Begin /etc/sysconfig/keyboard
|
|
|
|
LAYOUT=<path-to-keymap>
|
|
|
|
# End /etc/sysconfig/keyboard
|
|
<userinput>EOF</userinput></screen></para>
|
|
|
|
<para>Replace <userinput><path-to-keymap></userinput> with the
|
|
path to the keymap you have selected. For example, if you have chosen the
|
|
US keymap, you would replace it with
|
|
<userinput>/usr/share/kbd/keymaps/i386/qwerty/us.map.gz</userinput></para>
|
|
|
|
</sect1>
|
|
|