Q. I am using a KVM switch (that connects two or more computers to the same keyboard, mouse, and monitor) to connect Linux box but mouse gives the worst user experience. How do I solve this problem?
A. You need to setup PS2 mouse protocol extension correctly. This can be done by passing boot time parameter to Linux kernel. Just append following parameter to kernel:
psmouse.proto=imps
Above parameter will set highest PS2 mouse protocol extension to imps. This should solve erratic jumps of the mouse cursor while using a KVM switch.
You need to edit grub.conf file and append above line:
# vi /boot/grub/grub.conf
OR
# vi /boot/grub/menu.lst
Append line so that it read as follows:
kernel /boot/vmlinuz-2.6.15.4 root=/dev/hdb1 ro psmouse.proto=imps
Save the file.
Reboot system to test new configuration.
See also:
🐧 Get the latest tutorials on Linux, Open Source & DevOps via:
- RSS feed or Weekly email newsletter
- Share on Twitter • Facebook • 1 comment... add one ↓
Category | List of Unix and Linux commands |
---|---|
File Management | cat |
Firewall | Alpine Awall • CentOS 8 • OpenSUSE • RHEL 8 • Ubuntu 16.04 • Ubuntu 18.04 • Ubuntu 20.04 |
Network Utilities | dig • host • ip • nmap |
OpenVPN | CentOS 7 • CentOS 8 • Debian 10 • Debian 8/9 • Ubuntu 18.04 • Ubuntu 20.04 |
Package Manager | apk • apt |
Processes Management | bg • chroot • cron • disown • fg • jobs • killall • kill • pidof • pstree • pwdx • time |
Searching | grep • whereis • which |
User Information | groups • id • lastcomm • last • lid/libuser-lid • logname • members • users • whoami • who • w |
WireGuard VPN | Alpine • CentOS 8 • Debian 10 • Firewall • Ubuntu 20.04 |
That’s cool thx :)
Majoosh