每个 Slackware 发行版都自带 kbd;在 Slackware 下,该软件包被称为 keytbls(在 2.3.0 中是 a4 - kbd 0.90)。 Joel Hoffman 从他最初的 codepage.tar.Z 文件中贡献了希伯来语字体和键盘映射。 在 /usr/lib/kbd 目录下查找 iso08.* 文件。 它遵循 ISO 8859-8 以及希伯来语键盘表和映射。
将以下几行添加到 /etc/rc.d/rc.local 文件中
-----
#!/bin/sh
# Put any local setup commands in here
#
INITTY=/dev/tty[1-6]
PATH=/sbin:/etc:/bin:/usr/sbin:/usr/bin
#
# kbd - Set the the console font and keyboard
# set numlock and set metabit mode on tty1 .. tty8
for tty in $INITTY
do
# setleds -D +num < $tty > /dev/null
setmetamode metabit < $tty > /dev/null
done
# Latin8(Hebrew) keyboard/console
setfont iso08.f16
mapscrn trivial
loadkeys Hebrew
# enable mapping
for tty in $INITTY
do
echo -n -e "\\033(K" >$tty
done
-----
注意:如果您正在使用 X Windows,请小心使用 "setleds",它可能会导致 X 服务器挂起。
上述设置在希伯来语版本的 pico (pine) 中运行良好,并正确显示 ISO 8859-8 希伯来语(X Windows, MS Windows)。