Wacom on Fedora 9 made simple
I wrote this after installing a Wacom Intuos 3 on Fedora 9 which was a major pita. I'm now up to Fedora 11 and the tablet seems to Just Work so most of this is obsolete. I'm leaving it up because it may contain some useful info for others less fortunate.
Open a terminal and enter "yum install linuxwacom"
Add the highlighted lines to the Serverlayout section in /etc/X11/xorg.conf
Section "ServerLayout"
Identifier "Default Layout"
Screen 0 "Screen0" 0 0
InputDevice "Keyboard0" "CoreKeyboard"
InputDevice "stylus" "SendCoreEvents"
InputDevice "eraser" "SendCoreEvents"
InputDevice "pad" # for intuos3
EndSection
Then add all this into the body of xorg.conf
Section "InputDevice"
Driver "wacom"
Identifier "stylus"
Option "Device" "/dev/input/wacom" # USB ONLY
Option "Type" "stylus"
Option "USB" "on" # USB ONLY
EndSection
Section "InputDevice"
Driver "wacom"
Identifier "eraser"
Option "Device" "/dev/input/wacom" # USB ONLY
Option "Type" "eraser"
Option "USB" "on" # USB ONLY
EndSection
Section "InputDevice"
Driver "wacom"
Identifier "cursor"
Option "Device" "/dev/input/wacom" # USB ONLY
Option "Type" "cursor"
Option "USB" "on" # USB ONLY
EndSection
# This section is for Intuos3, CintiqV5, Graphire4, or Bamboo
Section "InputDevice"
Driver "wacom"
Identifier "pad"
Option "Device" "/dev/input/wacom" # USB ONLY
Option "Type" "pad"
Option "USB" "on" # USB ONLY
EndSection
Open Gimp
File - Preferences-input devices-configure extended input devices-,
open the drop down menu labeled < default pointer >
You should see choices for pad , eraser and stylus
Mess around with them til you are happy.
If you think you're too good to be simple, Whatever complexity I have to offer is Here.