IT 이야기/리눅스
Repeated Characters when Typing in Remote Console
나 그 네
2011. 4. 1. 11:08
To reduce these effects, increase the time threshold necessary for auto-repeat in the remote console.
- Power off the virtual machine.
- Add a line, similar to the following, at the end of your virtual machine's configuration (.vmx) file.
keyboard.typematicMinDelay = "2000000"
The delay is specified in micro-seconds, so the line in the example above increases the repeat time to 2 seconds. This should ensure that you never get auto-repeat unless you intend it.
- Power on the virtual machine.
X window 를 사용하지 않고 텍스트 모드로만 부팅하였다면
키보드 관련 조작 하기 쉽지 않을 것이다.
이번 문제는 키보드 입력 딜레이가 짧게 설정 되어 여러번 같은 문자가 입력되었다.
해결책은 위에 있는 것 처럼 vmx 파일에 keyboard.typematicMinDelay = "2000000" 를 추가시켜 주면된다