Results 1 to 10 of 18

Thread: serial mouse problem after upgrading to ubuntu 9.04

Hybrid View

  1. #1
    Join Date
    Apr 2009
    Beans
    15

    Exclamation serial mouse problem after upgrading to ubuntu 9.04

    I just upgraded from ubuntu 8.10 to 9.04. After the upgrade my serial mouse doesn't work, anymore. Even 'cat /dev/ttyS0' doesn't give any output. Is there anything I can do to make it work again?
    Last edited by trldp; April 28th, 2009 at 04:24 PM.

  2. #2
    Join Date
    Feb 2009
    Beans
    211

    Smile Re: serial mouse problem after upgrading to ubuntu 9.04

    First things First:

    Is your Mouse working? Check cables.

    If OK. Then on the gdm just try unplug mouse for 10 sec , and the re-plug it back.

    Hope this works.

  3. #3
    Join Date
    Oct 2008
    Beans
    9

    Re: serial mouse problem after upgrading to ubuntu 9.04

    I'm having exactly the same problem.

    Before I could make serial mice work doing either:

    1. In /etc/X11/xorg.conf:

      Code:
      Section "Input Device"
             Identifier "Configured Mouse"
             Driver "mouse"
             Option "Device" "/dev/ttyS0"
             Option "Protocol" "Microsoft"
      EndSection


    1. (From http://www.faqs.org/docs/Linux-mini/...-Mouse.html#s3):
      Code:
      ln -s /dev/ttyS0 /dev/mouse


    No one works now. The weird part is that the link ttyS0 -> mouse diesn't show up when I reboot.

    Also lost in here...
    Regards.

  4. #4
    Join Date
    Apr 2009
    Beans
    15

    Re: serial mouse problem after upgrading to ubuntu 9.04

    Quote Originally Posted by KhurramM View Post
    Is your Mouse working? Check cables.
    My mouse works perfect on my debian and my (old) kubuntu 8.10 system. Only on my Ubuntu 9.04 it doesn't work. The cables are OK

    If OK. Then on the gdm just try unplug mouse for 10 sec , and the re-plug it back.
    No, doesn't work either

  5. #5
    Join Date
    Apr 2009
    Beans
    1

    Re: serial mouse problem after upgrading to ubuntu 9.04

    I've tried a slight variation on your method two above and it works for me:

    Section "InputDevice"
    Identifier "Configured Mouse"
    Driver "Mouse"
    Option "CorePointer"
    Option "Device" "/dev/ttyS0"
    Option "Protocol" "Auto"
    EndSection

    This is from a fresh install on a 32-bit Intel machine. The mouse doesn't work during the login screens and there's a slight pause after the appearance for the desktop before it becomes active, but it works just fine afterwards.

    I had two issues I couldn't resolve on my 64-bit AMD machine after upgrading and so I started over from scratch on that one. They were: 1) The sound quit working even with PulseAudio removed (interestingly, it always worked when tested, just not inside other software). and 2) "Hey, your index is corrupted! Wanna, re-index? It might take a while." "Sure." "Hey, your index is corrupted! . . ."

  6. #6
    Join Date
    Oct 2008
    Beans
    9

    Re: serial mouse problem after upgrading to ubuntu 9.04

    Wow, it worked!
    Didn't work with Protocol Auto, but with your lines and "Protocol Microsoft" it got working!
    Thanks, now I can use my computer!

  7. #7
    Join Date
    Dec 2007
    Beans
    5

    Re: serial mouse problem after upgrading to ubuntu 9.04

    I had the same problem but enabling the lines I was using in xorg.conf didn't work for me.

    With the help of a friend I was able to fix it by creating a text file named '10-mouse.fdi' in /etc/hal/fdi/policy/ and putting the following in it:

    Code:
    <?xml version='1.0' encoding='UTF-8'?>
    <deviceinfo version='0.2'>
      <device>
        <match key='info.capabilities' contains='input.mouse'>
          <merge key='input.x11_driver' type='string'>mouse</merge>
          <merge key="input.x11_options.Device" type="string">/dev/ttyS0</merge>
          <merge key="input.x11_options.Protocol" type="string">ThinkingMouse</merge>
          <merge key="input.x11_options.Emulate3Buttons" type="string">false</merge>
          <merge key="input.x11_options.CorePointer" type="string">On</merge>
          <merge key="input.x11_options.Buttons" type="string">4</merge>
          <merge key="input.x11_options.ButtonMapping" type="string">1 2 3 4</merge>
        </match>
      </device>
    </deviceinfo>
    The crucial line seems to be
    Code:
    <merge key='input.x11_driver' type='string'>mouse</merge>
    It wouldn't work until I got that line in there.

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
  •