1

I have an older version of RHEL. In newer versions, there is usually an option to map the caps key to the esc key. How would I do this in an old version?

Going to System Preferences -> Keyboard -> Layout Options -> CapsLock Key behavior doesn't have the option to switch caps lock key to escape key.

egidra
  • 31

1 Answers1

4

Add the following to your ~/.Xmodmap file:

keycode 66 = Escape NoSymbol Escape
clear Lock

See Remapping Caps Lock with xmodmap doesn't work for explanations.

Run xmodmap - <~/.Xmodmap to apply your changes immediately. They will be applied automatically when you log in in the future.

(By the way, this is essentially what's going on under the hood in RHEL 6, which is apparently where you got the desire for this feature in RHEL 5. This is what I meant by my deleted comment that this stuff had been nailed down years before. All they've done is put a little GUI glaze on top of an ancient mechanism.)

Warren Young
  • 72,032