Not all of my Tabet PC functions worked with Ubuntu out of the box. A few things needed some tweaking. The first challenge was getting my wacom stylus to work under Ubuntu. Here is what eventually worked for me (pulled from various online sources, including this site from Ubuntu forums):
1. Run any Ubuntu updates that are ready for the system
2. Go to System -> Administration -> Synaptic Package Manager -> (or use apt-get install from a terminal window) and install the following:
xinput
setserial
wacom-tools
wacom-kernel-source
xserver-xorg-input-wacom
3. Edit your xorg.conf file to add information for your stylus. Add the following:
Section "InputDevice"
Driver "wacom"
Identifier "cursor"
Option "Device" "/dev/ttyS0"
Option "Type" "cursor"
Option "ForceDevice" "ISDV4"
Option "BottomX" "28800"
Option "BottomY" "21760"
Option "Mode" "absolute"
Option "TPCButton" "on"
EndSection
Section "InputDevice"
Driver "wacom"
Identifier "stylus"
Option "Device" "/dev/ttyS0"
Option "Type" "stylus"
Option "ForceDevice" "ISDV4"
Option "BottomX" "28800"
Option "BottomY" "21760"
Option "Mode" "absolute"
Option "TPCButton" "on"
EndSection
Section "InputDevice"
Driver "wacom"
Identifier "eraser"
Option "Device" "/dev/ttyS0"
Option "Type" "eraser"
Option "ForceDevice" "ISDV4"
Option "BottomX" "28800"
Option "BottomY" "21760"
Option "Mode" "absolute"
Option "TPCButton" "on"
EndSection
Then under the "Server Layout" section, add the following:
InputDevice "cursor" "SendCoreEvents"
InputDevice "stylus" "SendCoreEvents"
InputDevice "eraser" "SendCoreEvents"
4. Edit/create a /etc/serial.conf file:
#Stylus pen
/dev/ttyS0 port 0x06f8 irq 6 uart 16550A
5. Go to System -> Preferences -> Sessions -> Start up Programs
Add the following command:
/usr/X11R6/bin/./xinput set-button-map stylus 1 3 2 4
6. Reboot the system and Voila! Your stylus should now be working and you can create lovely works of art such as the example below, created in GIMP:
That's what I call ART.
ReplyDeleteSo I totally wish I had the gurus (like Kurt, Roland, Val) around to help me with this stuff. I am somewhat clueless about all of this Linux stuff. I spend a lot of time on google. But I'm glad you're at least writing about it in your blog... :)