याद रखने वाली पहली महत्वपूर्ण बात यह है कि अपने कीस्ट्रोक्स को संसाधित करने वाली हर चीज पर कुंजी रिपीट को अक्षम करें, जिसमें आप जिस वर्चुअल मशीन या आरडीपी सत्र से जुड़ रहे हैं, साथ ही साथ शीर्ष स्तर की मेजबान मशीन भी शामिल है। यह अंतिम लक्ष्य मशीन को ठीक नहीं करता है लेकिन यह स्थिति को सुधारने के लिए बहुत कुछ करता है।
लक्ष्य मशीन के लिए के रूप में:
ऐसी रिपोर्टें हैं कि HP iLO के SSH पोर्ट से कनेक्ट करने के लिए ssh का उपयोग करने से मुख्य रिपीट मुद्दों से बचा जाता है, लेकिन मैं इस पद्धति का उपयोग नहीं कर सका क्योंकि मेरे होस्ट (online.net) ने अपने iLO फ़ायरवॉल के माध्यम से पोर्ट 22 को नहीं होने दिया। लेकिन अगर आपके पास आईएलओ के एसएसएच पोर्ट (संभावित 22) तक पहुंच है, तो यह सबसे आसान तरीका है।
मैंने कीबोर्ड पर रिपीट रेट और विलंब समय को सेट करने के लिए एक systemd इकाई का उपयोग करने की कोशिश की:
# 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
)
लेकिन जैसा कि टिप्पणी में उल्लेख किया गया है, यह केवल एक आंशिक सफलता थी क्योंकि इसे नए कीबोर्ड पर दोहराए जाने वाले दर को सेट करने के लिए रीबूट की आवश्यकता होती है जो iS को जोड़ता है। लेकिन यह काफी अच्छा है अगर आप मशीन को रिबूट करने के साथ ठीक हैं।
अंत में, मैंने सभी कीबोर्ड पर डिफ़ॉल्ट दोहराने की दर और विलंब समय को बदलने के लिए लिनक्स कर्नेल को पैचिंग समाप्त कर दिया:
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
और मेरे लिए यह समस्या हल हो गई।