I’ve downloaded the Linux version from here -
http://www.aiptek.eu/index.php?option=com_product&task=view&productid=184&Itemid=542
I found a Readme file, because there is no clear place to start in the midst of all these strange folders… the instructions are thus (with edited-out gaps):
0 USB HID ------------ 0.1 Fedora0.1.1 Copy hid-xxxx.c to kernel source code directory
For kernel 2.6.21:
#cp drv/2.6.21/hid-core.c /usr/src/kernels/‘uname -r’/drivers/usb/input
For kernel 2.6.23:
#cp drv/2.6.23/hid-quirks.c /usr/src/kernels/‘uname -r’/drivers/hid/usbhid
0.1.2 Rebuild Linux Kernel
0.1.3 Reboot Linux
0.2 Ubuntu
0.2.1 Copy hid-xxx.c to kernel source code directory
Consult 0.1.1
0.2.2 Rebuild (usb)hid.ko
#make
0.2.3 Install (usb)hid.ko
#make install
#make modules_install
Or Copy (usb)hid.ko to kernel module directory
0.2.4 Reboot Linux
1 Compile
#make
2 Install Waltop Linux Driver (waltoptablet.ko)
Linux Kernel version 2.6.21:
#cp .\waltoptablet.ko /lib/modules/$(shell uname -r)/kernel/drivers/input
Linux Kernel version 2.6.23 and above:
#cp .\waltoptablet.ko /lib/modules/$(shell uname -r)/kernel/drivers/input/tablet
3 Register Linux kernel driver
#cd /lib/modules/‘uname -r’/drivers/input
#/sbin/insmod ./waltoptablet.ko
#/sbin/depmod -e
4 List the registered module
#/sbin/lsmod | grep waltop
5 Plug-in the tablet device
6 Test tablet controller detection (waltoptablet.ko)
#more /proc/bus/usb/devices
…… Driver=waltoptablet.ko
…
6.1 If Driver=usbhid, add the waltop vendor id to the linux kernel
6.2 If Driver=(none), install the waltop driver
Or
#more /proc/bus/input/devicesI: Bus=xxxx Vendor=172f Product=0034 Version=1105
N: Name=“Slim Tablet”
P:
S: Sysfs=/class/input/input6
H: Handlers=mouse2 event5
B:
B:
/*****************************************************************************
** The Tablet of X11 Driver
****************************************************************************/
1 Compile
#./configure
#make
2 Install Waltop X11 driver (waltoptablet_drv.so)
#cp .libs/waltoptablet_drv.so /usr/lib/xorg/modules/input
3 Edit the Configuration file (xorg.conf)
3.0 Check Tablet device event number
The event number will be used to xorg.conf “Device” option
#more /proc/bus/input/devices
I: Bus=xxxx Vendor=172f Product=0034 Version=1105N: Name=“Slim Tablet”
P:
S: Sysfs=/class/input/input6
H: Handlers=mouse2 event5
B:
B:
3.1 Edit the xorg.conf3.1.0 Edit the xorg.conf
#vi /etc/X11/xorg.conf
3.1.1 Add InputDevice section
Section “InputDevice”
Identifier "WaltopStylus" Driver "waltoptablet" Option "Device" "/dev/input/eventX" Option "Type" "stylus" Option "Mode" "absolute" Option "USB" "on" Option "KeepShape" "off" Option "Pressure" "Soft" Option "debuglevel" "0"
EndSection
/*
**Attention:
** 1 Option “Device” “/dev/input/eventX”
** X is the event number, consult 3.0
**
** 2 Option “Pressure” “string”
** string value { “Soft” | “Hard” | “Linear” } .
**
** 3 Option “debuglevel” “number”
** number “0 -12”, 0 is Off.
**
*/
3.1.2 Edit ServerLayout
Add below to ServerLayout:
InputDevice “WaltopStylus” “SendCoreEvents”
Example:
Section “ServerLayout”
Identifier "single head configuration" Screen 0 "Screen0" 0 0 InputDevice "Keyboard0" "CoreKeyboard" ... InputDevice "WaltopStylus" "SendCoreEvents"
EndSection
4 Restart X Window
$init 3
$startx
5 GIMP and Tablet
Configure Gimp for the new devices.
Start Gimp.
Edit → Preferences
Select “Input Devices”
Select “Configure Extended Input Devices”
pad → Mode: Screen
stylus → Mode: Screen
eraser → Mode: Screen
cursor → Mode: Screen
Linux input: Wacom Graphire3 6x8 → Mode: Screen
Wacom Graphire3 6x8 → Mode: Screen
Make sure to save. Exit and restart Gimp.
Your Graphire tablet should be working with the Gimp.
Config file in the path:
This makes no sense to me. Where do I start? The beginning doesn’t make sense…
I should add - I installed the Windows driver using Wine, though it doesn’t seem to have worked. The tablet DOES work, but not well enough to really use.
I’d be really grateful for any help Thanks.