Tag/tag.png

Unsupported Version
This article applies to an unsupported version of Ubuntu. More info...

Tag/tag.png

Needs Updating
This article needs updating to include the latest versions of Ubuntu. More info...

These are specific instructions on how to get your Wacom Graphire Bluetooth working in Ubuntu.

Please help to keep this page updated!

The ubuntuforums support thread for this article is at http://ubuntuforums.org/showthread.php?t=674738. Please post here if you have any problems or questions.

Ubuntu 11.04 "Natty Narwhal"

In Natty, this tablet works "out of the box".

No additional tweaks or software were necessary to use this tablet with a fresh install of Kubuntu 11.04.

Ubuntu 9.10 "Karmic Koala"

In Karmic, support for this tablet has been added to the kernel, however a tweak to the bluez package still needs to be applied for the tablet to work.

Updated bluez packages are available from this PPA:

https://launchpad.net/~yobbobandana/+archive/ppa

As previously, the tablet can be configured using the method described at Wacom.fdi.

Ubuntu 9.04 "Jaunty Jackalope"

Current status: All features working including hotplug. Driver needs to be installed manually.

see http://ubuntuforums.org/showthread.php?t=674738&p=7156808 for info on installing the updated driver for jaunty.

This driver should currently be considered beta quality, and may still have serious bugs!

Configuration

This tablet can be configured using the method described at Wacom.fdi.

Ubuntu 8.10 "Intrepid Ibex"

Current status: Stylus is working with pressure sensitivity, kernel module and newer wacom drivers need to be manually installed.

1. Pair the tablet with your computer

2. Compile the new hidp kernel module

3. Install the latest linuxwacom drivers

This should be all you need to do get the main tablet function (the stylus) working.

Update - 20081113 The prebuilt drivers no longer seem to work. If you have previously installed using the "./install" script, you might want to clean this up before compiling:

Notes / Troubleshooting

Ubuntu 8.04 "Hardy Heron"

WARNING: This is not entirely simple and involves using the linux terminal, editing system files and compiling a kernel module. Even so, it should work if you follow the steps.

1. Pair the tablet with your computer

2. Compile the new hidp kernel module

NOTE: This step needs to be repeated EVERY TIME your kernel version changes.

3. Get the tablet working in X

To make sure the proper event symlinks are created, you need to edit the wacom udev rules.

user@computer:~$ gksudo gedit /etc/udev/rules.d/50-xserver-xorg-input-wacom.rules

Add these lines at the bottom of the file:

# Additional rules for bluetooth tablets
KERNEL=="event[0-9]*", SYSFS{id/vendor}=="056a", SYMLINK="input/wacom"
KERNEL=="event[0-9]*", SYSFS{id/vendor}=="056a", SYSFS{id/product}=="0081", SYMLINK+="input/tablet-graphire_bt-6x8a"
KERNEL=="event[0-9]*", SYSFS{id/vendor}=="056a", ACTION=="add", RUN+="/lib/udev/check_driver wacom $devpath $env{ID_BUS}"

This should ensure that the symlinks /dev/input/wacom and /dev/input/tablet-graphire_bt-6x8a point to your tablet.

Now edit your Xorg configuration to enable the tablet.

user@computer:~$ gksudo gedit /etc/X11/xorg.conf

Find the lines relating to wacom tablets and modify them so that they read as follows:

Section "InputDevice"
        Driver          "wacom"
        Identifier      "stylus"
        Option          "Device"        "/dev/input/wacom"
        Option          "Type"  "stylus"
        Option          "Mode"  "absolute"
EndSection

Section "InputDevice"
        Driver          "wacom"
        Identifier      "eraser"
        Option          "Device"        "/dev/input/wacom"
        Option          "Type"  "eraser"
        Option          "Mode"  "absolute"
EndSection

Section "InputDevice"
        Driver          "wacom"
        Identifier      "cursor"
        Option          "Device"        "/dev/input/wacom"
        Option          "Type"  "cursor"
        Option          "Speed"  "3.0"
        Option          "Mode"  "relative"
EndSection

Section "InputDevice"
        Driver          "wacom"
        Identifier      "pad"
        Option          "Device"        "/dev/input/wacom"
        Option          "Type"  "pad"
EndSection

The "Speed" option in the "cursor" section can be tweaked to match the sensitivity of the mouse on the tablet with any other controllers you use. I've found 3.0 to work well for me. To slow the cursor down, you can use speed values of less than 1.0, e.g. a value of 0.5 would make the tablet mouse cursor twice as slow as a value of 1.0.

Now uncomment the “InputDevice” lines in the ”ServerLayout” section, and add a line for the "pad".

Section "ServerLayout"
        Identifier      "Default Layout"
        Screen          "Default Screen"
        Inputdevice     "Generic Keyboard"
        Inputdevice     "Configured Mouse"
        
        # Uncomment if you have a wacom tablet
        InputDevice     "stylus"        "SendCoreEvents"
        InputDevice     "cursor"        "SendCoreEvents"
        InputDevice     "eraser"        "SendCoreEvents"
        InputDevice     "pad"
EndSection

Save your work and restart X by logging out and then back in again, or by typing sudo /etc/init.d/gdm restart. You should now have a fully working graphire bluetooth tablet!

Final Notes

Please remember that when your kernel version gets upgraded (which is usually the only time your computer will recommend a restart after updating) you need to do step 2 again. If you saved the driver source, all you need to do is restart into the new kernel, then do the "make", "sudo make install" bit again.

Also note that when you turn the tablet on, it may function incorrectly. To solve this, press CTRL-ALT-F6 to switch to another virtual terminal, and CTRL-ALT-F7 to switch back to X. Also, You must have your tablet turned on when you log in. So if switching terminals and back hasn't worked, save your work, log out, and log back in again. This limitation also exists for USB Wacom tablets, but they are usually plugged in all the time.

useful links:


CategoryBluetooth CategoryWacom

WacomGraphireBluetooth (last edited 2017-09-06 19:50:51 by ckimes)