to get your old microsoft serial mouse working on COM1 with 9.10 you need to install the gpm package.so in a terminal enter
Quote:
then ,after it is installed, you enter in terminalsudo apt-get install gpm
Quote:
now move your mouse around to see that your serial mouse is working ok.sudo inputattach --microsoft /dev/ttyS0
OK?
now you need to set you computer to run it on startup.
so in a terminal enter
Quote:
an editer window opens withsudo gedit /etc/rc.local
Quote:
now enter#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
exit 0
Quote:
so that the /etc/rc.local file containsinputattach --microsoft /dev/ttyS0
Quote:
now save this file and close editer.#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
## added serial mouse input ##
inputattach --microsoft /dev/ttyS0
exit 0
now ,when you re-boot, your serial mouse will work.
Bookmarks