免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1175 | 回复: 0
打印 上一主题 下一主题

键码错乱之解决方法 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-10-29 16:36 |只看该作者 |倒序浏览
一、图形界面
解决思路:
1>xev获取keycode
2>xmodmap -pke |grep keycode
3>修改正确的键码并加载
1.运行xev命令
在终端查看键值,如shift+\:
1>正确的键值信息
KeyPress event, serial 34, synthetic NO, window 0x2400001,
    root 0xae, subw 0x0, time 19473292, (685,-121), root:(1316,234),
    state 0x1, keycode 51 (keysym 0x7c, bar), same_screen YES,
    XLookupString gives 1 bytes: (7c) "|"
    XmbLookupString gives 1 bytes: (7c) "|"
    XFilterEvent returns: False
KeyRelease event, serial 34, synthetic NO, window 0x2400001,
    root 0xae, subw 0x0, time 19473356, (685,-121), root:(1316,234),
    state 0x1, keycode 62 (keysym 0xffe2, Shift_R), same_screen YES,
    XLookupString gives 0 bytes:
    XFilterEvent returns: False
KeyRelease event, serial 34, synthetic NO, window 0x2400001,
    root 0xae, subw 0x0, time 19473388, (685,-121), root:(1316,234),
    state 0x0, keycode 51 (keysym 0x5c, backslash), same_screen YES,
    XLookupString gives 1 bytes: (5c) "\"
    XFilterEvent returns: False
从"keycode 51 (keysym 0x7c, bar)"可以看出"|"键的信息:
keycode: 51
keysym: 0x7c
keyname: bar
char: |
从"keycode 51 (keysym 0x5c, backslash)"可以看出"\"键的信息:
keycode: 51
keysym: 0x5c
keyname: backslash
char: \
2>错误的键值信息
KeyPress event, serial 34, synthetic NO, window 0x1800001,
    root 0x3a, subw 0x0, time 2600336, (127,-103), root:(550,188),
    state 0x1, keycode 51 (keysym 0x7e, asciitilde), same_screen YES,
    XLookupString gives 1 bytes: (7e) "~"
    XmbLookupString gives 1 bytes: (7e) "~"
    XFilterEvent returns: False
KeyRelease event, serial 34, synthetic NO, window 0x1800001,
    root 0x3a, subw 0x0, time 2600400, (127,-103), root:(550,188),
    state 0x1, keycode 62 (keysym 0xffe2, Shift_R), same_screen YES,
    XLookupString gives 0 bytes:
    XFilterEvent returns: False
KeyRelease event, serial 34, synthetic NO, window 0x1800001,
    root 0x3a, subw 0x0, time 2600448, (127,-103), root:(550,188),
    state 0x0, keycode 51 (keysym 0x23, numbersign), same_screen YES,
    XLookupString gives 1 bytes: (23) "#"
    XFilterEvent returns: False
从"keycode 51 (keysym 0x7e, asciitilde)"可以看出"|"键的信息:
keycode: 51
keysym: 0x7e
keyname: asciitilde
char: ~
从"keycode 51 (keysym 0x23, numbersign)"可以看出"\"键的信息:
keycode: 51
keysym: 0x23
keyname: numbersign
char: #
2.运行xmodmap -pke命令
1>正确的键值信息
keycode  51 = backslash bar backslash bar backslash bar
2>错误的键值信息
keycode  51 = numbersign asciitilde dead_grave dead_tilde
3.
echo "keycode  51 = backslash bar backslash bar backslash bar" > Xmodmap
1>xmodmap Xmodmap [当前系统加载]
2>mv Xmodmap ~/.Xmodmap [登录后自动加载]
二、字符终端
loadkeys -d [加载默认的键盘映射表,默认文件是/usr/share/keymaps/i386/qwerty/defkeymap.kmap.gz]
               
               
               

本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/27396/showart_2082229.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP