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:
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop









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