यहाँ मैंने ENTERकुंजी की मैपिंग को स्विच करने की कोशिश की है SHIFT(और इसके विपरीत):
$ uname -a
रिपोर्ट:
Linux box 2.6.32-37-generic #81-Ubuntu SMP Fri Dec 2 20:35:14 UTC 2011 i686 GNU/Linux
$ which xmodmap
रिपोर्ट:
/usr/bin/xmodmap
$ which xev
रिपोर्ट:
/usr/bin/xev
$ xev
(अगली पचास पंक्तियों को अनदेखा करें)
PRESS THE ENTER KEY (notice the third line):
KeyPress event, serial 33, synthetic NO, window 0x5600001,
root 0x110, subw 0x0, time 263441120, (738,242), root:(771,314),
state 0x0, keycode 36 (keysym 0xff0d, Return), same_screen YES,
XLookupString gives 1 bytes: (0d)
XmbLookupString gives 1 bytes: (0d)
XFilterEvent returns: False
KeyRelease event, serial 33, synthetic NO, window 0x5600001,
root 0x110, subw 0x0, time 263441271, (738,242), root:(771,314),
state 0x0, keycode 36 (keysym 0xff0d, Return), same_screen YES,
XLookupString gives 1 bytes: (0d)
XFilterEvent returns: False
PRESS THE SHIFT KEY (notice the third line):
KeyPress event, serial 30, synthetic NO, window 0x5600001,
root 0x110, subw 0x0, time 263592202, (464,368), root:(497,440),
state 0x0, keycode 62 (keysym 0xffe2, Shift_R), same_screen YES,
XLookupString gives 0 bytes:
XmbLookupString gives 0 bytes:
XFilterEvent returns: False
KeyRelease event, serial 33, synthetic NO, window 0x5600001,
root 0x110, subw 0x0, time 263592298, (464,368), root:(497,440),
state 0x1, keycode 62 (keysym 0xffe2, Shift_R), same_screen YES,
XLookupString gives 0 bytes:
XFilterEvent returns: False
क्या महत्वपूर्ण है प्रत्येक कुंजी की तीसरी पंक्ति:
FOR:
state 0x0, keycode 36 (keysym 0xff0d, Return), same_screen YES,
The name "Return" is the name of the behavior of the key pressed.
The number of the key pressed is "36".
state 0x0, keycode 62 (keysym 0xffe2, Shift_R), same_screen YES,
The name "Shift_R" is the name of the behavior of the key pressed.
The number of the key pressed is "62".
मैपिंग की समीक्षा करें:
$ xmodmap -e "keycode 62 = Return"
$ xmodmap -e "keycode 36 = Shift_R"
परिणाम सहेजें:
$ xmodmap -pke > ~/.Xmodmap
$ vi ~/.xinitrc
जोड़ें
xmodmap ~/.Xmodmap
$ sudo reboot
मुख्य समस्या यह थी कि उलट काम नहीं किया। ENTERकुंजी को मैप किया गया था SHIFT_Rकुंजी; लेकिन SHIFT_Rकुंजी को मैप नहीं किया गया था ENTER। जाओ पता लगाओ।