Differences between revisions 1 and 5 (spanning 4 versions)
Revision 1 as of 2004-01-11 21:34:16
Size: 2055
Editor: anonymous
Comment:
Revision 5 as of 2004-08-06 12:24:58
Size: 2176
Editor: anonymous
Comment:
Deletions are marked like this. Additions are marked like this.
Line 2: Line 2:
Setting up the Wacom ["ArtPadII"]
Line 3: Line 4:
Setting up the Wacom ["ArtPadII"] '''Note''': ''The device nodes listed here will not work for USB wacom tablets. Also, the wacom driver is not fantastic under Linux kernel 2.6.x''
Line 9: Line 10:
<BR>a) Find the line starting <B>Section "Module"</B> and add in <B>Load "wacom"</B>
<BR>b) Find <B>!InputDevice "Generic Keyboard"</B> and append <B>"CoreKeyboard"</B> to the end of the line.
<BR>c) Find <B>!InputDevice "Generic Mouse"</B> and append <B>"CorePointer"</B> to the end of the line
<BR>d) Add the following block after the end of the last <B>Section "InputDevice"</B>, substituing in the correct tty device::
 * a) Find the line starting '''Section "Module"''' and add in '''Load "wacom"'''
 ''' b) Find !InputDevice '''"Generic Keyboard"* and append "CoreKeyboard" to the end of the line.
 ''' c) Find !InputDevice '''"Generic Mouse"* and append "CorePointer" to the end of the line
 * d) Add the following block after the end of the last '''Section''' "InputDevice", substituing in the correct tty device::
Line 39: Line 40:
<BR>e) Find <B>Section "!ServerLayout"</B> and put in the following three lines::  * e) Find !'''Section''' "ServerLayout" and put in the following three lines::
Line 46: Line 47:
<BR>f) Restart the X server, and the pen should now function like the mouse  * f) Restart the X server, and the pen should now function like the mouse

Setting up the Wacom ["ArtPadII"]

Note: The device nodes listed here will not work for USB wacom tablets. Also, the wacom driver is not fantastic under Linux kernel 2.6.x

I did this under Debian Woody, and it took a few extra steps. But in the end it's great, and even works with the Gimp!

- You'll have to edit /etc/X11/["XF86Config"]-4

  • a) Find the line starting Section "Module" and add in Load "wacom" b) Find InputDevice "Generic Keyboard"* and append "?CoreKeyboard" to the end of the line. c) Find InputDevice "Generic Mouse"* and append "?CorePointer" to the end of the line

  • * d) Add the following block after the end of the last '''Section''' "InputDevice", substituing in the correct tty device

   Section "InputDevice"
        Identifier   "pen1"
        Driver       "wacom"
        Option       "Mode" "Absolute"
        Option       "Type" "stylus"
        Option       "Device" "/dev/ttyS0"
   Endsection
   # Settings for wacom eraser
   Section "InputDevice"
        Identifier   "eraser1"
        Driver       "wacom"
        Option       "Mode" "Absolute"
        Option       "Type" "eraser"
        Option       "Device" "/dev/ttyS0"
   Endsection
   # Settings for wacom cursor (mouse)
   Section "InputDevice"
        Identifier   "cursor1"
        Driver       "wacom"
        Option       "Mode" "Absolute"
        Option       "Type" "cursor"
        Option       "Device" "/dev/ttyS0"
   Endsection::
* e) Find !'''Section''' "ServerLayout" and put in the following three lines

    InputDevice    "pen1"      "AlwaysCore"
    InputDevice    "eraser1"   "AlwaysCore"
    InputDevice    "cursor1"   "AlwaysCore"
  • f) Restart the X server, and the pen should now function like the mouse

- To make pressure sensitivity work in the Gimp, open the "Input Devices" dialog and choose Pen1 from the device dropdown. Then set the mode dropdown to the mode you'd like the table to use. *Window* means the tablet input will be mapped to the current image window, and *Screen* means the tablet will be mapped to the screen as usual.