Page 3 of 5 FirstFirst 12345 LastLast
Results 21 to 30 of 41

Thread: HOWTO Wacom bamboo CTL-460 in Lucid Lynx

  1. #21
    Join Date
    Nov 2008
    Beans
    9,635
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: HOWTO Wacom bamboo CTL-460 in Lucid Lynx

    Hi [mag],

    Welcome to Ubuntu forums!

    My guess is that you had a kernel update. That will knock out a compiled wacom.ko because the new kernel has a new modules directory that the compiled wacom.ko isn't in. So you can first try copying the compiled wacom.ko from the unpacked linuxwacom tar you used into place and if that fails recompile. To tell what kernel you have in a terminal enter:
    Code:
    cat /proc/version_signature
    That will get the last little suffix which can distinguish versions.

    I'm not sure why your compiles aren't working. Any errors? Since 0.8.6-1 isn't available any longer you should be using 0.8.6-2, which was also the first version to be Xserver version aware. In other words you no longer have to do the extra directory change with 0.8.6-2 (and up) like you did with 0.8.6-1. Could that be why it isn't working? Maybe if you aren't doing the extra directory change you're still using the modified copy command for the extra directory change instead of the normal one?:
    Code:
    sudo cp ./src/2.6.30/wacom.ko /lib/modules/`uname -r`/kernel/drivers/input/tablet/wacom.ko

  2. #22
    Join Date
    Jun 2010
    Beans
    3

    Re: HOWTO Wacom bamboo CTL-460 in Lucid Lynx

    Update: I got it working! See below.

    Quote Originally Posted by Favux View Post
    Welcome to Ubuntu forums!
    Thanks

    Quote Originally Posted by Favux View Post
    To tell what kernel you have in a terminal enter:
    Code:
    cat /proc/version_signature
    That will get the last little suffix which can distinguish versions.
    My version signature is "Ubuntu 2.6.32-22.36-generic 2.6.32.11+drm33.2". Also, my architecture is x86-64.

    Quote Originally Posted by Favux View Post
    I'm not sure why your compiles aren't working. Any errors?
    No errors, as far as I can tell. For all I know, this might not be a problem with wacom.ko at all.

    Quote Originally Posted by Favux View Post
    Code:
    sudo cp ./src/2.6.30/wacom.ko /lib/modules/`uname -r`/kernel/drivers/input/tablet/wacom.ko
    So... is that the cp-command I am supposed to use? In that case I am using the correct one.

    I've attached a dump of the terminal with the whole procedure. Maybe there's something there.

    ----

    I do, however, get some errors in my /var/log/Xorg.0.log when plugging the Bamboo:

    Code:
    (II) config/udev: Adding input device Wacom BambooFun 2FG 4x5 Pen (/dev/input/mouse3)
    (II) No input driver/identifier specified (ignoring)
    (II) config/udev: Adding input device Wacom BambooFun 2FG 4x5 Pen (/dev/input/event8)
    (**) Wacom BambooFun 2FG 4x5 Pen: Applying InputClass "evdev tablet catchall"
    (**) Wacom BambooFun 2FG 4x5 Pen: Applying InputClass "Wacom class"
    (II) LoadModule: "wacom"
    (II) Loading /usr/lib/xorg/modules/input/wacom_drv.so
    (II) Module wacom: vendor="X.Org Foundation"
            compiled for 4.3.99.902, module version = 1.0.0
            Module class: X.Org XInput Driver
            ABI class: X.Org XInput driver, version 2.1
    (EE) module ABI major version (2) doesn't match the server's version (7)
    (II) UnloadModule: "wacom"
    (II) Unloading /usr/lib/xorg/modules/input/wacom_drv.so
    (EE) Failed to load module "wacom" (module requirement mismatch, 0)
    (EE) No input driver matching `wacom'
    (II) config/udev: Adding input device Wacom BambooFun 2FG 4x5 Finger (/dev/input/mouse4)
    (II) No input driver/identifier specified (ignoring)
    (II) config/udev: Adding input device Wacom BambooFun 2FG 4x5 Finger (/dev/input/event9)
    (**) Wacom BambooFun 2FG 4x5 Finger: Applying InputClass "evdev touchpad catchall"
    (**) Wacom BambooFun 2FG 4x5 Finger: Applying InputClass "touchpad catchall"
    (**) Wacom BambooFun 2FG 4x5 Finger: Applying InputClass "Wacom class"
    (II) LoadModule: "wacom"
    (II) Loading /usr/lib/xorg/modules/input/wacom_drv.so
    (II) Module wacom: vendor="X.Org Foundation"
            compiled for 4.3.99.902, module version = 1.0.0
            Module class: X.Org XInput Driver
            ABI class: X.Org XInput driver, version 2.1
    (EE) module ABI major version (2) doesn't match the server's version (7)
    (II) UnloadModule: "wacom"
    (II) Unloading /usr/lib/xorg/modules/input/wacom_drv.so
    (EE) Failed to load module "wacom" (module requirement mismatch, 0)
    (EE) No input driver matching `wacom'
    I don't understand why there is a problem, though. My wacom_drv should be up to date, since I just did:

    Code:
    sudo apt-get purge xserver-xorg-input-wacom
    sudo apt-get install xserver-xorg-input-wacom xserver-xorg-input-all
    Update: Apparently, this reinstall of xserver-xorg-input-wacom was exactly what I needed. But I also needed to restart X afterwards to get it working. I have no idea what messed up my wacom_drv.so, though.
    Attached Files Attached Files
    Last edited by [mag]; June 8th, 2010 at 04:58 PM.

  3. #23
    Join Date
    Nov 2008
    Beans
    9,635
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: HOWTO Wacom bamboo CTL-460 in Lucid Lynx

    Outstanding!

    I have no idea what messed up my wacom_drv.so, though.
    Probably will remain a mystery. Presumably something to do with the update, hopefully not a disk or RAM problem.
    But I also needed to restart X afterwards to get it working.
    Right, that's why after copying the wacom.ko into place and doing:
    Code:
    sudo depmod -a
    I recommend rebooting. I know you shouldn't have to but for whatever reason it seems to work better. Otherwise there's a few that don't get the driver working.

  4. #24
    Join Date
    Jun 2010
    Beans
    3

    Re: HOWTO Wacom bamboo CTL-460 in Lucid Lynx

    Thank you for your quick responses! Keep up the good work

  5. #25
    Join Date
    Apr 2010
    Location
    Long Beach, CA
    Beans
    5
    Distro
    Ubuntu 10.04 Lucid Lynx

    Cool Re: HOWTO Wacom bamboo CTL-460 in Lucid Lynx

    Yeah, hi guys. The above method works, but after installing the driver, the pen acted weird. The mouse moves when I move my pen across the tablet, but would suddenly stop whenever I click something on the screen. Then it takes a while for it to be working again, and same thing happens every time I click on the screen. Anyone know what's wrong?

  6. #26
    Join Date
    Jan 2008
    Beans
    80

    Re: HOWTO Wacom bamboo CTL-460 in Lucid Lynx

    I get this:

    Code:
    daniel@daniel-desktop:~$ wget http://prdownloads.sourceforge.net/linuxwacom/linuxwacom-0.8.6.tar.bz2
    --2010-06-16 02:24:18--  http://prdownloads.sourceforge.net/linuxwacom/linuxwacom-0.8.6.tar.bz2
    Resolving prdownloads.sourceforge.net... 216.34.181.59
    Connecting to prdownloads.sourceforge.net|216.34.181.59|:80... connected.
    HTTP request sent, awaiting response... 404 Not Found
    2010-06-16 02:24:18 ERROR 404: Not Found.
    
    daniel@daniel-desktop:~$
    Thunder Dan

  7. #27
    Join Date
    Nov 2008
    Beans
    9,635
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: HOWTO Wacom bamboo CTL-460 in Lucid Lynx

    Hi opensource-for-all,

    Check that the wacom drivers actually have your tablet by checking Xorg.0.log in /var/log. It may be another driver like evdev.


    Hi thunderdan,

    Linuxwacom 0.8.6 is no longer posted at the LWP site. You want 0.8.6-2. See post #1077 abstracted from the linuxwacom HOW TO.

  8. #28
    Join Date
    Jan 2008
    Beans
    80

    Re: HOWTO Wacom bamboo CTL-460 in Lucid Lynx

    Thanks, Favux. I got 0.8.6-2. Now I'm to this part:
    Code:
    daniel@daniel-desktop:~/linuxwacom-0.8.6-2/src/2.6.30$ sudo cp wacom.ko /lib/modules/'uname -r'/kernel/drivers/input/tablet
    [sudo] password for daniel: 
    cp: cannot create regular file `/lib/modules/uname -r/kernel/drivers/input/tablet': No such file or directory
    daniel@daniel-desktop:~/linuxwacom-0.8.6-2/src/2.6.30$
    Thunder Dan

  9. #29
    Join Date
    Nov 2008
    Beans
    9,635
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: HOWTO Wacom bamboo CTL-460 in Lucid Lynx

    Hi thunderdan,

    Can you tell me a little more about your system? What release/kernel are you on, etc.? And why did you make the directory change to /src/2.6.30? Did you compile in that directory?

  10. #30
    Join Date
    Jan 2008
    Beans
    80

    Re: HOWTO Wacom bamboo CTL-460 in Lucid Lynx

    Quote Originally Posted by Favux View Post
    Hi thunderdan,

    Can you tell me a little more about your system? What release/kernel are you on, etc.? And why did you make the directory change to /src/2.6.30? Did you compile in that directory?
    The release is lucid. The kernel is 2.6.32-22-generic. I changed directory to /src/2.6.30 because the first post of this thread said:

    Code:
    tar -xf linuxwacom-0.8.6.tar.bz2
    cd linuxwacom-0.8.6
    ./configure --enable-wacom
    cd src/2.6.30/
    I'm not sure if I compiled in that directory or not. "make" is the command to compile, right? If so, then yes, I did compile in that directory.

    But I noticed one thing I did wrong. I used ' instead of ` when typing `uname -r`. I just tried it with the correct ` and got no error message. Now when I moved on to the next line:

    Code:
    daniel@daniel-desktop:~/linuxwacom-0.8.6-2/src/2.6.30$ sudo rmmod wacom
    ERROR: Module wacom does not exist in /proc/modules
    Thunder Dan

Page 3 of 5 FirstFirst 12345 LastLast

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
  •