Results 1 to 9 of 9

Thread: Mouse click not working after updating with Ubuntu 9.10 (Karmic Koala)

  1. #1
    Join Date
    Jan 2012
    Posts
    57

    Mouse click not working after updating with Ubuntu 9.10 (Karmic Koala)

    Recently I have upgraded to Ubuntu 9.10. whenever I am clicking such as on link on web page the mouse click did not seems to be register. Many time I have noticed that it is clicking works after doing couple of clicks. So I could not get whether the issue is associated with the mouse or OS installed. any useful suggestions to resolve the matter will be highly appreciated. Thanks a lot in advance.

  2. #2
    Join Date
    Nov 2010
    Posts
    446

    Re: Mouse click not working after updating with Ubuntu 9.10 (Karmic Koala)

    Well I have added below mentioned line to the xorg.conf file located at /etc/X11/xorg.conf.
    Code:
    Section "InputDevice"
    
    Identifier "Logitech MX1000"
    
    Driver "evdev"
    
    Option "Name" "Logitech USB Receiver"
    
    Option "HWHEELRelativeAxisButtons" "7 6"
    
    EndSection
    This the only solution worked for me. So try above mentioned solution and see whether it helps you by any mean.

  3. #3
    Join Date
    Dec 2010
    Posts
    453

    Re: Mouse click not working after updating with Ubuntu 9.10 (Karmic Koala)

    To use the above mentioned solution make sure that you have installed evdev on your computer. if you wanted to install the same then run below mentioned command on console.

    Code:
    sudo apt-get install xserver-xorg-input-evdev

  4. #4
    Join Date
    Mar 2011
    Posts
    415

    Re: Mouse click not working after updating with Ubuntu 9.10 (Karmic Koala)

    in case you are getting an issue to find out xorg options for mouse then you will be able to discover the same. if you are able to check mouse name by executing below mentioned command on Console.

    Code:
    cat /proc/bus/input/devices
    you will get following output.

    I: Bus=0003 Vendor=046d Product=c50e Version=2500

    N: Name="Logitech USB Receiver"

    P: Phys=usb-0000:00:1d.3-2/input0

    S: Sysfs=/devices/virtual/input/input5

    U: Uniq=

    H: Handlers=kbd mouse1 event5

    B: EV=7

    B: KEY=1f0000 0 100 38 c0000000 c0000 0 0 0

    B: REL=103
    Make sure that name which you are going to entered in xorg.conf should be same as the name listed in the above list. For your information name should be case sensitive so that you have to take care of the thing as well.

  5. #5
    Join Date
    May 2011
    Posts
    418

    Re: Mouse click not working after updating with Ubuntu 9.10 (Karmic Koala)

    To test the issue I recommend to run ,
    Code:
    xev
    from the Terminal do click couple of time and see whether those clicks were registered or not. In case it does not work for you than I am suspecting the issue is associated with irq polling . so either upgrade the BIOS or you have to boot your system executing
    Code:
    irqpoll
    if it does not work than run below command
    Code:
    irqfixup
    you can also add parameters at the grub menu. simply press escape in order to enter to the grub menu and press E to edit the line and select kernel line and Press E again. after that add one after the quiet splash options.

  6. #6
    Join Date
    Aug 2011
    Posts
    367

    Re: Mouse click not working after updating with Ubuntu 9.10 (Karmic Koala)

    You will be able to solve the issue by simply using below mentioned work around.
    Code:
    export GDK_NATIVE_WINDOWS=1
    $APP

  7. #7
    Join Date
    Jun 2011
    Posts
    869

    Re: Mouse click not working after updating with Ubuntu 9.10 (Karmic Koala)

    Simply launch console and do the below mentioned steps and let me know about your experience.
    Copy and paste below mentioned command and execute it.
    Code:
    cd /usr/lib/nspluginwrapper/i386/linux/
    sudo mv npviewer.bin npviewer.bin.real
    sudo mv npviewer.bin npviewer.bin.real
    sudo gedit npviewer.bin
    now you have to enter below mentioned couple of lines.
    Code:
    #!/bin/sh
    GDK_NATIVE_WINDOWS=true /usr/lib/nspluginwrapper/i386/linux/npviewer.bin.real "$@"
    Now save the changes which you have made and on the terminal run below mentioned command as well.
    Code:
    sudo chmod 755 npviewer.bin

  8. #8
    Join Date
    Jun 2011
    Posts
    467

    Re: Mouse click not working after updating with Ubuntu 9.10 (Karmic Koala)

    I think you will need to kill gdm-binary. You can do the same by using below mentioned steps.

    First of all launch Terminal and execute below mentioned command
    Code:
    sudo kill `cat /var/run/gdm.pid`
    Genome would restart and login into the same.

    If above mentioned does not work then simply run below mentioned command

    Code:
    $ cat /var/run/gdm.pid 
    2332
    $ sudo kill 2332

  9. #9
    Join Date
    Jul 2011
    Posts
    427

    Re: Mouse click not working after updating with Ubuntu 9.10 (Karmic Koala)

    There is need of installing latest version of evdev on your system.
    You should run below mentioned command on yours system.
    Code:
    sudo apt-get install build-essential
    after that you have to download util-macros-1.4.1.tar.gz and xf86-input-evdev-2.3.2.tar.gz

    once you have done simply install xorg macros
    Code:
    tar -zxvf util-macros-1.4.1.tar.gz
    cd util-macros-1.4.1
    ./autogen.sh --prefix=/usr
    sudo make install
    cd..
    now you will require to install evdev driver by using below mentioned command

    Code:
    tar -zxvf xf86-input-evdev-2.3.2.tar.gz
    cd xf86-input-evdev-2.3.2
    ./autogen.sh --prefix=/usr
    make
    sudo make install
    cd..
    finally you will require to restart your computer.

Similar Threads

  1. Ubuntu 9.10 a.ka. Karmic Koala Alpha 3 released
    By Solomon in forum Operating Systems
    Replies: 1
    Last Post: 18-05-2011, 05:02 AM
  2. Ubuntu karmic Koala mouse problem
    By little-Jacqueline in forum Hardware Peripherals
    Replies: 4
    Last Post: 24-04-2010, 01:12 AM
  3. Install WordPress On Ubuntu 9.10 Karmic Koala
    By Bhardwaj in forum Windows Software
    Replies: 5
    Last Post: 11-01-2010, 02:55 PM
  4. Remove Ubuntu 9.10 Karmic Koala
    By Patinux in forum Operating Systems
    Replies: 3
    Last Post: 01-09-2009, 08:06 PM
  5. Ubuntu 9.10 - The Karmic Koala Alpha 1
    By Rudra.J in forum Operating Systems
    Replies: 3
    Last Post: 14-05-2009, 09:37 PM

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
  •  
Page generated in 1,714,021,466.65300 seconds with 17 queries