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:
Featured Articles:
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- My 10 UNIX Command Line Mistakes
- Linux: 20 Iptables Examples For New SysAdmins

- 25 PHP Security Best Practices For Sys Admins
- The Novice Guide To Buying A Linux Laptop
- 10 Greatest Open Source Software Of 2009
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- Top 20 OpenSSH Server Best Security Practices
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Linux Video Editor Software
Facebook it - Tweet it - Print it -

{ 1 comment… read it below or add one }
That’s cool thx :)
Majoosh