가장 먼저 기억해야 할 것은 최상위 호스트 시스템뿐만 아니라 연결중인 가상 시스템 또는 RDP 세션을 포함하여 키 입력을 처리하는 모든 항목에서 키 반복을 비활성화하는 것입니다. 이것은 최종 대상 시스템을 수정하지는 않지만 상황을 개선하기 위해 많은 작업을 수행합니다.
대상 머신은 :
ssh를 사용하여 HP iLO의 SSH 포트에 연결하면 키 반복 문제가 발생하지 않는다는보고가 있지만 호스트 (online.net)가 포트 22를 iLO 방화벽을 통과시키지 못했기 때문에이 방법을 사용할 수 없습니다. 그러나 iLO의 SSH 포트 (22 번)에 액세스 할 수 있다면 가장 쉬운 방법 인 것 같습니다.
부팅시 키보드 반복 속도와 지연 시간을 설정하기 위해 시스템 장치를 사용해 보았습니다.
# Note that kbdrate only affects existing keyboards, and HP iLO attaches a new
# USB keyboard when you connect, so you may have to reboot (with the iLO console
# attached) to get the keyboard delay and repeat rate to take effect.
[Unit]
Description=Set longer delay time for key repeat
[Service]
Type=oneshot
RemainAfterExit=yes
StandardInput=tty
StandardOutput=tty
ExecStart=/sbin/kbdrate -d 1000 -r 2
[Install]
WantedBy=multi-user.target
WantedBy=rescue.target
(만들기 확실히 /sbin/kbdrate
당신이있는 곳입니다 kbdrate
. 쓰기로 /etc/systemd/systemd/slower-keyboard-repeat.service
하고 systemctl daemon-reload && systemctl enable slower-keyboard-repeat.service
)
그러나 의견에서 언급했듯이 이것은 iLO가 연결하는 새 키보드에서 반복 속도를 설정하기 위해 재부팅해야했기 때문에 부분적으로 만 성공했습니다. 그러나 컴퓨터를 재부팅해도 괜찮다면 충분합니다.
궁극적으로 모든 키보드에서 기본 반복 속도와 지연 시간을 변경하기 위해 Linux 커널을 패치했습니다.
From 78c32f539b89bf385985bea47a7058a540d31da0 Mon Sep 17 00:00:00 2001
From: Ivan Kozik <ivan@ludios.org>
Date: Thu, 30 Mar 2017 13:31:17 +0000
Subject: [PATCH] Increase the default keyboard repeat delay from 250ms to
1000ms and repeat rate from 1000/33 Hz to 1000/500 Hz to avoid unintentional
repeated keystrokes when using remote consoles such as HP iLO over
high-latency links. These consoles (HP iLO included) often transmit key
states (up/down) instead of keystrokes, making it impossible to even enter a
password and log in.
Fixing this in the kernel avoids problems with kbdrate where the parameters
passed to kbdrate don't apply to the new keyboards attached by HP iLO.
---
drivers/input/input.c | 2 +-
drivers/input/keyboard/atkbd.c | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/input/input.c b/drivers/input/input.c
index 880605959aa6..a195af2d062a 100644
--- a/drivers/input/input.c
+++ b/drivers/input/input.c
@@ -2126,7 +2126,7 @@ int input_register_device(struct input_dev *dev)
* is handled by the driver itself and we don't do it in input.c.
*/
if (!dev->rep[REP_DELAY] && !dev->rep[REP_PERIOD])
- input_enable_softrepeat(dev, 250, 33);
+ input_enable_softrepeat(dev, 1000, 500);
if (!dev->getkeycode)
dev->getkeycode = input_default_getkeycode;
diff --git a/drivers/input/keyboard/atkbd.c b/drivers/input/keyboard/atkbd.c
index ec876b5b1382..9dd04c2215b3 100644
--- a/drivers/input/keyboard/atkbd.c
+++ b/drivers/input/keyboard/atkbd.c
@@ -1096,8 +1096,8 @@ static void atkbd_set_device_attrs(struct atkbd *atkbd)
BIT_MASK(LED_MUTE) | BIT_MASK(LED_MISC);
if (!atkbd->softrepeat) {
- input_dev->rep[REP_DELAY] = 250;
- input_dev->rep[REP_PERIOD] = 33;
+ input_dev->rep[REP_DELAY] = 1000;
+ input_dev->rep[REP_PERIOD] = 500;
}
input_dev->mscbit[0] = atkbd->softraw ? BIT_MASK(MSC_SCAN) :
--
2.11.0
그리고 그것은 나를 위해 문제를 해결했습니다.