Results 1 to 8 of 8

Thread: get your old microsoft serial mouse working on COM1 with 9.10

  1. #1
    Join Date
    Apr 2008
    Beans
    69
    Distro
    Ubuntu Development Release

    Talking get your old microsoft serial mouse working on COM1 with 9.10

    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:
    sudo apt-get install gpm
    then ,after it is installed, you enter in terminal

    Quote:
    sudo inputattach --microsoft /dev/ttyS0
    now move your mouse around to see that your serial mouse is working ok.
    OK?
    now you need to set you computer to run it on startup.
    so in a terminal enter
    Quote:
    sudo gedit /etc/rc.local
    an editer window opens with
    Quote:
    #!/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
    now enter


    Quote:
    inputattach --microsoft /dev/ttyS0
    so that the /etc/rc.local file contains
    Quote:
    #!/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 save this file and close editer.
    now ,when you re-boot, your serial mouse will work.

  2. #2
    Join Date
    Jul 2007
    Location
    Slovenia
    Beans
    5
    Distro
    Ubuntu

    Smile Re: get your old microsoft serial mouse working on COM1 with 9.10

    Thanks! Works great. Only that I use Logitech mouse so I used different switch.

    Code:
    inputattach --mouseman /dev/ttyS0
    I recomend typing:

    Code:
    inputattach --help
    to see all mouse devices available.

  3. #3
    Join Date
    Oct 2005
    Location
    Carterville, IL, USA
    Beans
    211
    Distro
    Ubuntu UNR

    Re: get your old microsoft serial mouse working on COM1 with 9.10

    That's awesome! A while back, I had been looking for a way to get a serial mouse working and couldn't find a way. This is so simple. Thanks.

  4. #4
    Join Date
    Feb 2010
    Beans
    1

    Angry Re: get your old microsoft serial mouse working on COM1 with 9.10

    My terminal window appears blank. I googled a little and When using xterm and passing this command it just jumps to next blank line and nothing happens.

    Also my xorg.conf file is blank! Please help!

  5. #5
    Join Date
    Feb 2010
    Beans
    1

    Re: get your old microsoft serial mouse working on COM1 with 9.10

    Thanks a lot raygj for your help! I tried it locally and it worked nicely.

    What about extending this capability to an (a bunch of, actually...) old 233 MHz Pentium terminal, which has no other mouse input than a serial port? I've been googling for a whole day about how to make it work, with no success. I've found this manual (among other articles, which stated the same, more or less) but it does not seem to get it to work, either.

    Any advice?

    Thanks again.

  6. #6
    Join Date
    Apr 2010
    Beans
    4

    Re: get your old microsoft serial mouse working on COM1 with 9.10

    thank you for a simple explanation for this problem, it worked like a charm for me, just a tip for other noobie users, if ttys0 doesn't work then try ttys1 or ttys2 (as was my situation), also, I did not have to go thru the install apt-get part, I just went straight to inputattach

  7. #7
    Join Date
    May 2008
    Beans
    Hidden!

    Re: get your old microsoft serial mouse working on COM1 with 9.10

    My wife's computer has a keyboard with a serial touch pad built in. The keyboard is at least 10 years old. We're both running 8.04 and this worked perfect for getting that touch pad working!

    Now the crappy mouse she's been using can be disposed of.

  8. #8
    Join Date
    Apr 2010
    Beans
    14

    Re: get your old microsoft serial mouse working on COM1 with 9.10

    My computer had its MS Serial wheel mouse going at one point, and then after I had booted up without it attached, its functionality went away even after I reconnected it and rebooted.

    See thread: http://ubuntuforums.org/showthread.php?t=1464591

    What configuration files were updated by the system to remove this functionality?

    My computer did not have gpm installed to my knowledge, so how was the Serial Mouse with wheel activated and useful without this package installed--ie., what was operating it instead?

    The rc.local illustrated above did not activate my wheel on my serial mouse -- the wheel was not working, so I performed a

    inputattach --help

    that displayed all of its options, one of which was

    inputattach --intellimouse /dev/ttyS0

    and by rebooting my computer with this in my rc.local file, the wheel functionality was restored.
    Last edited by oldspammer; May 5th, 2010 at 09:42 PM. Reason: added link to related thread. Included wheel mouse functionality via --intellimouse option in rc.local

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •