| 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.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
|
|
By GAVollink at 2007-04-05 09:03
|
|
Vitals:
Debian (unstable)
kernel, 2.6.18-4-686
Xorg 7.1.1
------------
Introduction:
If you've ever had the pleasure of using a 'Sun' keyboard, you'll note that the Caps Lock and Control keys are swapped. If you use your keyboard a lot, you probably use the Ctrl key a lot, and probably don't use the Caps Lock very often, if ever (UNLESS YOU'RE INTO YELLING). So, why force the awkward pinky reach down to the Ctrl?
This is in two parts, mostly because the Console terminals, the virtual terminals that don't have an X display, use a different keyboard mapping than the X window system.
-------
Console:
Update /etc/console/boottime.kmap.gz
First make a backup, then uncompress and edit the file...
Code:
.# mv /etc/console/boottime.kmap.gz /etc/console/boottime.kmap.orig.gz
.# cp /etc/console/boottime.kmap.orig.gz /etc/console/boottime.kmap.gz
.# cp /etc/console/boottime.kmap.orig.gz /etc/console/test.kmap.gz
.# gzip -d /etc/console/test.kmap.gz
.# vi /etc/console/test.kmap
Find the Caps_Lock entry, which should be:
Code:
keycode 58 = Caps_Lock
Then replace it with Control
Code:
keycode 58 = Control
--- Option:
If you want to swap the Caps Lock and left Ctrl keys,
find the left control entry, which should be:
Code:
keycode 29 = Control
Then replace it with Caps_Lock
Code:
keycode 29 = Caps_Lock
Human Compatability Note:
I did use the swapped mapping for a short while, but my wife was NOT happy with the resulting layout. She kept on struggling to remember the new location of 'Ctrl'.
--- End Option
Remember to re-zip the keymap when you are done.
Code:
gzip /etc/console/test.kmap
Finally, because you are tampering with your console keymap, do 'test' the test...
Code:
loadkeys test.kmap.gz
Make sure the keyboard does everything you expect that it should do. Only then should you copy the test.kmap.gz over the boottime.kmap.gz (technically, I should be telling the boot process to load an alternate keymap, instead of overwriting the default, this is easier).
----
Xorg:
Edit /etc/X11/xorg.conf
Code:
Section "InputDevice"
Identifier "Generic Keyboard"
Driver "kbd"
Option "CoreKeyboard"
Option "XkbRules" "xorg"
Option "XkbModel" "pc104" # Your model may be different here.
Option "XkbLayout" "us" # This is the only one I tested.
Option "XkbOptions" "ctrl:nocaps" # This is the new line.
EndSection
I found the valid XkbOptions lines in the "*.lst" files at /etc/X11/xkb/rules/
Another valid xkbOption is:
Code:
...
Option "XkbOptions" "ctrl:swapcaps"
...
---------
M$ Win XP:
Because we sometimes have to use it...
The following are contents of loadable 'keymap.reg' files...
Just set Caps Lock as another Control
Code:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout]
"Scancode Map"=hex:00,00,00,00,00,00,00,00,02,00,00,00,1d,00,3a,00,00,00,00,00
Swap Ctrl and Caps Lock:
Code:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout]
"Scancode Map"=hex:00,00,00,00,00,00,00,00,03,00,00,00,1d,00,3a,00,3a,00,1d,e0,\
00,00,00,00
NOTE: This works for XP using 'US' keyboard layouts. Your results could vary.
Screwing with the Windows registry is dangerous.
-----------
Thank you, I hope this helps someone besides me.
|
|
|
|
All times are GMT -5. The time now is 04:38 PM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Oracle Magazine contains technology strategy articles, sample code, tips, Oracle and partner news, how to articles for developers and DBAs, and more. Click Here to receive a complimentary subscription courtesy of LQ.

|
Latest Threads
LQ News
LQ Podcast
LQ Radio
|
|
Show of hands out there of those who've just pried the damn caps lock key outta there? Over the years, it's cost me far, far, more than it's ever saved.
Show of hands out there of those who've just pried the damn caps lock key outta there? Over the years, it's cost me far, far, more than it's ever saved.