LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Slackware (https://www.linuxquestions.org/questions/slackware-14/)
-   -   Keymap with æ,ø,å (https://www.linuxquestions.org/questions/slackware-14/keymap-with-%E6-%F8-%E5-142200/)

ulfob 02-04-2004 10:03 AM

Keymap with æ,ø,å
 
Hi

I did get the wrong keymap during installation of Slackware 9.1 on a Lap-Top.
Else the installation went fine.
But without æ,ø,å- and a lot of other keys wrong, I really have problems.

Perhaps somebody know what to do ??

ulfob

Bebo 02-04-2004 11:40 AM

The keyboard layout is loaded in /etc/rc.d/rc.keymap. Since I use Swedish letters, my rc.keymap looks like
Code:

#!/bin/sh
# Load the keyboard map.  More maps are in /usr/share/kbd/keymaps.
if [ -x /usr/bin/loadkeys ]; then
 /usr/bin/loadkeys sv-latin1.map
fi

I guess you're from Denmark or Norway, so you'll probably want to use dk-latin1.map or no-latin1.map.

You might also have to change what your /etc/X11/XF86Config(-4) says in the Section specifying the XkbLayout. In my "Swedish" case:
Code:

Section "InputDevice"
    Identifier "Keyboard1"
    Driver "Keyboard"
    Option "XkbModel" "pc105"
    Option "XkbLayout" "se"
EndSection

HTH


All times are GMT -5. The time now is 03:51 PM.