`Ubuntu에서 키를 누르는 데 몇 가지 문제가 있습니다(여기에 복사하여 붙여넣어야 했습니다).
이상 tab하거나 Esc현재처럼 행동합니다.
확인할 때 xkbevd
나는 얻는다.
^[
어떻게 재설정하고 키를 돌려받을 수 있나요?
무슨 일이 일어났는지 확인할 수 있는 방법이 있나요?
키보드 레이아웃은 다음과 같습니다.
"Escape"에서 이 키의 매핑을 어떻게 해제할 수 있나요?
xev
보여주다:
누르기 backtick(Ctrl 없음, Shift 없음, 키 입력만 가능):
KeyPress event, serial 36, synthetic NO, window 0x3000001,
root 0xc0, subw 0x0, time 41199509, (277,668), root:(314,767),
state 0x0, keycode 49 (keysym 0xff1b, Escape), same_screen YES,
XKeysymToKeycode returns keycode: 9
XLookupString gives 1 bytes: (1b) ""
XmbLookupString gives 1 bytes: (1b) ""
XFilterEvent returns: False
KeyRelease event, serial 36, synthetic NO, window 0x3000001,
root 0xc0, subw 0x0, time 41199559, (277,668), root:(314,767),
state 0x0, keycode 49 (keysym 0xff1b, Escape), same_screen YES,
XKeysymToKeycode returns keycode: 9
XLookupString gives 1 bytes: (1b) ""
XFilterEvent returns: False
긴급한esc
KeyPress event, serial 36, synthetic NO, window 0x3000001,
root 0xc0, subw 0x0, time 41201255, (277,668), root:(314,767),
state 0x0, keycode 9 (keysym 0xff1b, Escape), same_screen YES,
XLookupString gives 1 bytes: (1b) ""
XmbLookupString gives 1 bytes: (1b) ""
XFilterEvent returns: False
KeyRelease event, serial 36, synthetic NO, window 0x3000001,
root 0xc0, subw 0x0, time 41201320, (277,668), root:(314,767),
state 0x0, keycode 9 (keysym 0xff1b, Escape), same_screen YES,
XLookupString gives 1 bytes: (1b) ""
XFilterEvent returns: False
답변1
키와 관련된 작업 변경을 사용할 수 있습니다 xmodmap
. 귀하의 경우에는 다음을 원합니다.
xmodmap -e 'keycode 49=grave asciitilde'
Shift 키와 결합하면 악센트, 백틱 및 물결표를 인쇄하도록 키 코드 49가 있는 키를 설정합니다. 바라보다이 답변자세한 내용을 알아보세요.