Slackware 的每个版本都包含 kbd. 这个包裹在 Slackware 里叫做 keytbls(a4 in 2.3.0 - kbd 0.90). Joel Hoffman 将他所写的希伯来文字型和 keymap 放在文档 codepage.tar.Z 中. 请在 /usr/lib/kbd 目录下找到档名格式为 iso08.* 的文档. 这些包含 ISO 8859-8 及希伯来文的 keytables 和 map.
在 /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 Hebrew (X Windows, MS Windows) 中正确显示.