Fedora Linux Support Community & Resources Center

Go Back   FedoraForum.org > Fedora 17/18 > Hardware & Laptops
FedoraForum Search

Forgot Password? Join Us!

Hardware & Laptops Help with your hardware, including laptop issues

Reply
 
Thread Tools Search this Thread Display Modes
  #16  
Old 17th May 2010, 06:54 PM
linz2d Offline
Registered User
 
Join Date: May 2010
Posts: 1
linuxfedorafirefox
Re: Fedora 12 and Wacom Bambo Fun CTH-661 - how to install/configure correctly?

Well I have spent 3 weeks on this problem and must of tried 5 different distros starting with the one I was most familiar with, Ubuntu and ending with Fedora which in the past I have avoided like the plague due to some past events. But I have it working so that the touch pad(bit sluggish) and pen work. I thought that I might do a quick run down, of how I "think" I got it working. It's also for future reference because theres no doubt that I will forget all this in a week.

Fedora 13 and a CTH-460 Bamboo Pen and Touch. I know that this thread is for the CTH-661 but chances are that the problem is related.

Make sure that the "xorg x11 wacom driver" that comes with fedora is installed.
Download the linuxwacom-0.8.6-2 driver from the liuxwacom site.
Follow the mini-howto instruction on linuxwacom site with regards to package installation with yum, but do not follow the step "yum remove linuxwacom".
Using the terminal cd to the linuxwacom-0.8.6-2 folder, type "./configure --enable-wacom, in the build options it should have wacom.o - yes.
Type the following:
# cd src/2.6.30

# make

# uname -r
(this will give your kernel version, for me its 2.6.32.11-99.fc12.x86_64)

F12 = # cp wacom.ko /lib/modules/2.6.32.11-99.fc12.x86_64/kernel/drivers/usb/input/
F13 = # cp wacom.ko /lib/modules/2.6.33.4-95.fc13.x86_64/kernel/drivers/input/tablet/
It may come up with a message about overwriting the file, type "y" then enter, check the location of the file to make sure the file is something like 400+kb not 30+kb.

# modprobe wacom
if everything went well the tablet might be responding, dont worry too much if its not, you'll only know if you have got it working after reboot on the final step

# depmod -a
next I'll write my 60-wacom.rules

# lshal -m (plug-out then plug-in tablet, Im only interested in "usb_device_56a_d1_noserial" part of the output not the if1/if0

# lshal -u usb_device_56a_d1_noserial
This will generate a list relating to the device, find the "sysfs_path" for the device, it should look like: linux.sysfs_path = '/sys/devices/pci0000:00/0000:00:0b.0/usb2/2-4'

I](ignore /sys and take note my device path may different from yours depending on where your tablet is plugged in)[/I]
F12 = # udevinfo -a -p /devices/pci0000:00/0000:00:0b.0/usb2/2-4/
F13 = # udevadm info -a -p /devices/pci0000:00/0000:00:0b.0/usb2/2-4/

The output shows what can be used to make the 60-wacom.rules for the wacom, more info on udev can be found at http://www.reactivated.net/writing_u...les.html#basic.

looking at device '/devices/pci0000:00/0000:00:0b.0/usb2/2-4':
KERNEL=="2-4"
SUBSYSTEM=="usb"
DRIVER=="usb"
ATTR{configuration}==""
ATTR{bNumInterfaces}==" 2"
ATTR{bConfigurationValue}=="1"
ATTR{bmAttributes}=="80"
ATTR{bMaxPower}==" 98mA"
ATTR{urbnum}=="43"
ATTR{idVendor}=="056a"
ATTR{idProduct}=="00d1"
ATTR{bcdDevice}=="0106"
ATTR{bDeviceClass}=="00"
ATTR{bDeviceSubClass}=="00"
ATTR{bDeviceProtocol}=="00"
ATTR{bNumConfigurations}=="1"
ATTR{bMaxPacketSize0}=="64"
ATTR{speed}=="12"
ATTR{busnum}=="2"
ATTR{devnum}=="2"
ATTR{version}==" 2.00"
ATTR{maxchild}=="0"
ATTR{quirks}=="0x0"
ATTR{authorized}=="1"
ATTR{manufacturer}=="Wacom Co.,Ltd."
ATTR{product}=="CTH-460"

blah blah blah.....

# cd /etc/udev/rules.d

# gedit 60-wacom.rules
If gedit opens a blank file or if you have tried to look for this file in the past and couldn't find it don't worry, we will just make a new one, for some reason the example of this file on the linuxwacom website doesn't do s***, so delete what ever in that file and put:
KERNEL=="2-4(depends on your results from: udevinfo -a -p /devices/pci0000:00/0000...)", SUBSYSTEM=="usb", DRIVER=="usb", ATTR{idProduct}=="00d1(again this depends)", SYMLINK+="input/wacom-touch"
then save file.

# reboot
Now hope that your tablet is working on restart , check /dev/input for a wacom-touch file, important though only use the usb slot that the tablet is currently plugged into, I'm not a tech but i gather that KERNEL=="2-4"(my setup) means the number 2 USB port. If it where 3-4 then that would mean the wacom can only run on the number 3 usb slot.

Last edited by linz2d; 27th May 2010 at 03:19 PM. Reason: F13's a bit different from F12
Reply With Quote
  #17  
Old 2nd June 2010, 12:23 AM
beaker_'s Avatar
beaker_ Offline
Registered User
 
Join Date: Nov 2008
Location: Canada
Posts: 2,062
linuxfedorafirefox
Re: Fedora 12 and Wacom Bambo Fun CTH-661 - how to install/configure correctly?

Works for me so far. Yes I used 0.8.6-2, no I didn't use the .386 ver

$ uname -r
2.6.33.5-112.fc13.x86_64
$ lsusb
Bus 003 Device 003: ID 056a:00d1 Wacom Co., Ltd
$ xsetwacom --list
Wacom BambooFun 2FG 4x5 Finger pad PAD
Wacom BambooFun 2FG 4x5 Finger TOUCH
Wacom BambooFun 2FG 4x5 Pen eraser ERASER
Wacom BambooFun 2FG 4x5 Pen STYLUS

Nope, I haven't finished all the rules but looking good so far.

Late Edit: Nope, I called it quits after depmod -a so it works wherever I plug it in. I'm sure someone will enlighten me as to why I should generate rules but so far I'm happy.

Last edited by beaker_; 2nd June 2010 at 01:06 AM.
Reply With Quote
  #18  
Old 4th June 2010, 12:35 AM
bvn Offline
Registered User
 
Join Date: Oct 2008
Location: Seattle
Posts: 5
linuxfedorafirefox
Re: Fedora 12 and Wacom Bambo Fun CTH-661 - how to install/configure correctly?

I followed this recipe for my ctt-460 (bamboo touch) on FC13 and it worked.
My deployment is set up for development; but I still had to add "xorg-x11-drv-wacom-devel" package to get the build to work. Also using nouveau video drivers for my dual single-headed screen setup (translation - I have a, fairly large, "xorg.conf" but it was not modified in the process)
- no gestures or taps, yet :-(
Reply With Quote
Reply

Tags
bambo, cth-460, cth-661, ctt-460, fedora 12, fedora 13, wacom

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Can't configure Wacom Ultrapad velibor Hardware & Laptops 3 23rd February 2010 12:36 PM
F8 lm_sensors won't configure correctly AIM Systems EOL (End Of Life) Versions 3 28th January 2010 05:24 PM
plzhelp to configure wacom tablet package. MegaManZZ Using Fedora 5 14th October 2007 09:56 PM


Current GMT-time: 06:57 (Tuesday, 18-06-2013)

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
logo

All trademarks, and forum posts in this site are property of their respective owner(s).
FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact Us | Founding Members

Powered by vBulletin® Copyright ©2000 - 2012, vBulletin Solutions, Inc.

FedoraForum is Powered by RedHat