SlackwareThis Forum is for the discussion of Slackware Linux.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
this should be rather simple: how do you configure keyboard layout? i'm not talking under X11 (which i guess is under xorg.conf), instead i'm talking when you do a login in init:2: mode (i.e. when you have to manually startx to enter the gui).
everything is fine if i'm into X, however before starting X i still have the classic US keyboard.
If you don't have the /etc/rc.d/rc.keymap file just create it with root as owner and group, and set it to executable (it'll be loaded by rc.M).
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 es.map
fi
Also be sure that you've the kbd package installed.
You need to make sure that the keymap in /etc/rc.d/rc.keymap is the same as that in you xorg.conf. So in your case what you need to do is edit xorg.config and change the following line
Option "XkbLayout" "us"
to Option "XkbLayout" "gb"
problem is i don't have the /etc/rc.d/rc.keymap file. i created one that looks like gbonvehi's one of the post here above, however i don't think this is executed at boot.
you know how i can execute this at boot? and why in any case this file wasn't generated on my install (slack 10.1)?
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.