Ubuntu Forums ubuntu.com - launchpad.net - ubuntu help  

Go Back   Ubuntu Forums > The Ubuntu Forum Community > Other Community Discussions > Tutorials & Tips
Register Reset Password Forum Help Forum Council Search Today's Posts Mark Forums Read

Tutorials & Tips
The place to find Ubuntu related Tips & Tricks.

 
Thread Tools Display Modes
Old April 9th, 2005   #1
MetalMusicAddict
Tall Cafè Ubuntu
 
MetalMusicAddict's Avatar
 
Join Date: Jan 2005
My beans are hidden!
Arrow HOWTO: Enable your Wacom Intous/Graphire Tablet with Pressure Sensitivity

This HOW-TO is written for USB Wacom Tablet devices.

Some links for reference:
Ubuntu Tablet Wiki Page
Wacom Help Page
Once you have some success these links will make more sense. Theres TONS of good info that will make working in The GIMP better.


1. Connect your USB Wacom Tablet device


2. Install "wacom-tools". This is need to set the event in your xorg.conf.

In a terminal:
Code:
sudo apt-get install wacom-tools
Or find "wacom-tools" in Synaptic.

3. Edit this below Section "InputDevice" under the "Configured Mouse". Make sure you use the right "Device" based on how your pad is connected. ie: USB or serial.
Code:
Section "InputDevice"
  Driver        "wacom"
  Identifier    "stylus"
  Option        "Device"        "/dev/ttyS0"          #SERIAL ONLY
  Option        "Device"        "/dev/input/wacom"   #USB ONLY
  Option        "Type"          "stylus"
  Option        "USB"           "on"                  #USB ONLY
  Option        "ForceDevice"   "ISDV4"               #Tablet PC ONLY
EndSection

Section "InputDevice"
  Driver        "wacom"
  Identifier    "eraser"
  Option        "Device"        "/dev/ttyS0"          #SERIAL ONLY
  Option        "Device"        "/dev/input/wacom"   #USB ONLY
  Option        "Type"          "eraser"
  Option        "USB"           "on"                  #USB ONLY
  Option        "ForceDevice"   "ISDV4"               #Tablet PC ONLY
EndSection

Section "InputDevice"
  Driver        "wacom"
  Identifier    "cursor"
  Option        "Device"        "/dev/ttyS0"          #SERIAL ONLY
  Option        "Device"        "/dev/input/wacom"   #USB ONLY
  Option        "Type"          "cursor"
  Option        "Mode"          "relative"
  Option        "USB"           "on"                  #USB ONLY
  Option        "ForceDevice"   "ISDV4"               #Tablet PC ONLY
EndSection
If you have a Intuos3 or Cintiq 21UX add this section. (Untested by me)

Code:
Section "InputDevice"
  Driver        "wacom"
  Identifier    "pad"
  Option        "Device"        "/dev/ttyS0"          #SERIAL ONLY
  Option        "Device"        "/dev/input/wacom"   #USB ONLY
  Option        "Type"          "pad"
  Option        "USB"           "on"                  #USB ONLY
EndSection
4. Add these lines to the Section "ServerLayout".
Code:
Section "ServerLayout"
	Identifier	"Default Layout"
	Screen		"Default Screen"
	InputDevice	"Generic Keyboard"
	InputDevice	"Configured Mouse"
        InputDevice    "stylus"    "SendCoreEvents"
        InputDevice    "eraser"    "SendCoreEvents"
        InputDevice    "cursor"    "SendCoreEvents"    #For non-LCD tablets only
        InputDevice    "pad"   #For Intuos3/Cintiq 21UX/Graphire4 tablets. It should NOT send core event
EndSection
*NOTE*
You can adjust the pressure curves on your tablet. Just adjust the "PressCurve" line at bottom of the stylus section.

Example:
Code:
Option "PressCurve" "50,0,100,50"
This edit will make the drawn lines appear lighter. you can still get really dark lines, you just have to press harder. Makes it easier to make really light or faint changes. -Thanx graigsmith.


5. Reboot or restart X with ctrl-alt-backspace and launch The GIMP

6.Enable the tablet in applications.

The GIMP
- File-> Preferences-> Input Devices-> "Configure Extended Input Devices".
- Under "Device" you will have 3 settings: Cursor, Eraser and Stylus. Set them from "Disabled" to "Screen".

Now you should have pressure sensitivity in The GIMP.

Also, a useability note with Gimp:
Each input device (stylus,cursor,eraser) has a completely different set of attributes in Gimp, and in theory, you can even assign a unique serial number to different pens to get even more granularity. You will experience this when you try to use your eraser for the first time. Rather than selecting the eraser tool, you get the rectangle selection tool instead. This is by design, believe it or not. Gimp does not care that its an eraser, just that it's not the pen you were just using. If you choose the eraser tool now, it will remember that for the next time you try to use it. On the plus side, you can set the eraser to be anything, including the Airbrush tool or Clone tool.
-Taken from The Wacom Help Page.

Inkscape
- File-> "Input Devices...".
(The dialog is the same as The GIMP)
- Under "Device" you will have 3 settings: Cursor, Eraser and Stylus. Set them from "Disabled" to "Screen".

Krita
- Settings-> "Configure Krita..." then click on the "Tablet" icon.
- Check the "Enable" boxes for all 3 Devices.

Do you know of more apps that use a tablet?

If anyone has info to make this better let me know.

Last edited by MetalMusicAddict; March 25th, 2007 at 11:04 PM..
MetalMusicAddict is offline   Reply With Quote
Old May 10th, 2005   #2
graigsmith
Skinny Soy Caramel Ubuntu
 
graigsmith's Avatar
 
Join Date: Feb 2005
Beans: 585
Send a message via AIM to graigsmith
Re: HOWTO: Enable your Wacom Intous/Graphire Tablet with Pressure Sensitivity

Step 2 is unnecessary if you replace it with this easier way to get your device.

Code:
sudo apt-get install wacom-tools
After installing wacom-tools and following a reboot, you should have a /dev/input/wacom device name, that should correctly point to your tablet. (haven't tested this with a serial tablet)

Now all you have to do is just rename all your wacom devices, from /dev/input/event0 to /dev/input/wacom

Also if you run into problems make sure that you didn't include the commented things in the xorg file.

Code:
Option        "Device"        "/dev/input/event0"   #USB ONLY
is incorrect, and probably wont work right. just delete the #usb only.

Last edited by graigsmith; February 16th, 2007 at 01:50 PM..
graigsmith is offline   Reply With Quote
Old May 15th, 2005   #3
Staesys
A Carafe of Ubuntu
 
Staesys's Avatar
 
Join Date: Apr 2005
Location: Washougal, WA
Beans: 125
Ubuntu 9.10 Karmic Koala
Send a message via ICQ to Staesys Send a message via AIM to Staesys Send a message via MSN to Staesys Send a message via Yahoo to Staesys Send a message via Skype™ to Staesys
Re: HOWTO: Enable your Wacom Intous/Graphire Tablet with Pressure Sensitivity

Thanks very much for this!

Mine is on event3, btw.



-Paul
Staesys is offline   Reply With Quote
Old June 11th, 2005   #4
DirtDawg
Fresh Brewed Ubuntu
 
DirtDawg's Avatar
 
Join Date: Jan 2005
Location: Portland, Oregon U.S.A.
Beans: 1,200
Ubuntu 9.04 Jaunty Jackalope
Re: HOWTO: Enable your Wacom Intous/Graphire Tablet with Pressure Sensitivity

The link labeled 'wacom help page' goes to Microsoft.com(!!)
__________________
Tales from America
DirtDawg is offline   Reply With Quote
Old June 12th, 2005   #5
MetalMusicAddict
Tall Cafè Ubuntu
 
MetalMusicAddict's Avatar
 
Join Date: Jan 2005
My beans are hidden!
Re: HOWTO: Enable your Wacom Intous/Graphire Tablet with Pressure Sensitivity

Wow. So does the link to the original thread.
MetalMusicAddict is offline   Reply With Quote
Old August 7th, 2005   #6
c4pp4
5 Cups of Ubuntu
 
c4pp4's Avatar
 
Join Date: Aug 2005
Location: Prague, Czechia
Beans: 23
Ubuntu 9.04 Jaunty Jackalope
Send a message via ICQ to c4pp4 Send a message via Skype™ to c4pp4
Thumbs up Re: HOWTO: Enable your Wacom Intous/Graphire Tablet with Pressure Sensitivity

Thank you very much.
__________________
ThinkPad R61i, 15.4" (1280x800), Intel Core 2 Duo T5250, 2x512MB RAM, 160GB SATA, DVD±RW DL, Intel GMA X3100, Intel HDA, Bluetooth, Intel 3945 a/b/g, Gigabit Ethernet, VGA, S-Video, IEEE 1394, Multicard Reader (SD/MMC/MS/XD), Fingerprint Reader

Last edited by c4pp4; February 9th, 2006 at 02:34 PM..
c4pp4 is offline   Reply With Quote
Old August 8th, 2005   #7
Stormy Eyes
May the Ubuntu Be With You!
 
Stormy Eyes's Avatar
 
Join Date: Apr 2005
Location: Under the Jolly Roger
Beans: 1,564
Re: HOWTO: Enable your Wacom Intous/Graphire Tablet with Pressure Sensitivity

Quote:
Originally Posted by MetalMusicAddict
I've done this on Hoary (Pre and Final) with a Graphire 2. I have confirmation it works on Warty.
Thanks. I had bought a Wacom Graphire for my wife when she came from Australia to move in with me last August, but I never was able to make the damned thing work until you posted your HOWTO.
__________________
My sole duty is to my own happiness and well-being. I recognize no other.
Stormy Eyes is offline   Reply With Quote
Old August 8th, 2005   #8
grendelkhan
Quad Shot of Ubuntu
 
grendelkhan's Avatar
 
Join Date: Feb 2005
Location: Cincinnati, OH, USA
Beans: 144
Ubuntu 7.10 Gutsy Gibbon
Send a message via ICQ to grendelkhan Send a message via AIM to grendelkhan Send a message via MSN to grendelkhan Send a message via Yahoo to grendelkhan
Re: HOWTO: Enable your Wacom Intous/Graphire Tablet with Pressure Sensitivity

My tablet's an older serial port one. what would I put in place of /dev/usb? /dev/ttyS0 ?
__________________
"If the real Jesus Christ were to stand up today
He'd be gunned down cold by the CIA"

- Armageddon Days are Here Again - The The
grendelkhan is offline   Reply With Quote
Old August 8th, 2005   #9
Stormy Eyes
May the Ubuntu Be With You!
 
Stormy Eyes's Avatar
 
Join Date: Apr 2005
Location: Under the Jolly Roger
Beans: 1,564
Re: HOWTO: Enable your Wacom Intous/Graphire Tablet with Pressure Sensitivity

Quote:
Originally Posted by grendelkhan
My tablet's an older serial port one. what would I put in place of /dev/usb? /dev/ttyS0 ?
Probably. If you already have a serial modem hooked up as well, then try /dev/ttyS1 too.
__________________
My sole duty is to my own happiness and well-being. I recognize no other.
Stormy Eyes is offline   Reply With Quote
Old September 11th, 2005   #10
Waqas
5 Cups of Ubuntu
 
Waqas's Avatar
 
Join Date: Sep 2005
Location: Jitra, Malaysia
Beans: 20
Re: HOWTO: Enable your Wacom Intous/Graphire Tablet with Pressure Sensitivity

A noob question here if you dont mind..:-

I downloaded the WacomLinux-0.6.8.tar.bz2 driver. So, how to install it. Im not sure whats the first step after downloaded the driver.. can you walk me through this briefly please??

I think you guys edited the xorg.conf file after installing the driver, right??
Waqas is offline   Reply With Quote

Bookmarks

Thread Tools
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


All times are GMT -4. The time now is 07:27 AM.


vBulletin ©2000 - 2010, Jelsoft Enterprises Ltd. Ubuntu Logo, Ubuntu and Canonical © Canonical Ltd. Tango Icons © Tango Desktop Project. lingonberry