Ubuntu This forum is for the discussion of Ubuntu Linux. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
09-21-2007, 03:57 PM
|
#1
|
Member
Registered: Mar 2005
Distribution: Ubuntu
Posts: 344
Rep:
|
How do I configure my wacom graphics tablet to work with ubuntu (inkscape,GIMP etc.)
Hello,
I just purchased a wacom graphire 4 graphics tablet because I saw that it is supossedly compatible with linux. I plugged it into the usb port of the laptop and opened up inkscape to see if I could configure it but I didnt see it, I just saw my laptop's touchpad listed.
I then installed the following packages:
wacom-kernel-source
wacom-tools
xserver-xorg-input-wacom
and then I restarted the laptop and replugged my wacom tablet, and then opened up inkscape to see if I could use it but it didnt function or could I configure it.
I hope that someone can help me on this
|
|
|
09-21-2007, 05:02 PM
|
#2
|
Senior Member
Registered: May 2004
Location: Fresno CA USA
Distribution: Ubuntu 10.10
Posts: 1,466
Rep:
|
You'll need to edit /etc/X11/xorg.conf. You'll find three Wacom Inputdevice sections. You'll need to edit as follows and the fourth one for "pen". Lastly you need to add a line for "pad" to the ServerLayout section. My four Wacom inputdevice section and my serverlayout section follow. Use them for guidance.
Section "InputDevice"
Driver "wacom"
Identifier "stylus"
Option "Device" "/dev/input/wacom"
Option "Type" "stylus"
Option "USB" "on"
EndSection
Section "InputDevice"
Driver "wacom"
Identifier "eraser"
Option "Device" "/dev/input/wacom"
Option "Type" "eraser"
Option "USB" "on"
EndSection
Section "InputDevice"
Driver "wacom"
Identifier "cursor"
Option "Device" "/dev/input/wacom"
Option "Type" "cursor"
Option "USB" "on"
EndSection
Section "InputDevice"
Driver "wacom"
Identifier "pad"
Option "Device" "/dev/input/wacom"
Option "Type" "pad"
Option "USB" "on"
EndSection
Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
InputDevice "stylus" "SendCoreEvents"
InputDevice "cursor" "SendCoreEvents"
InputDevice "eraser" "SendCoreEvents"
InputDevice "pad"
EndSection
|
|
|
09-30-2007, 04:38 PM
|
#3
|
LQ Newbie
Registered: Sep 2007
Posts: 2
Rep:
|
I've made the changes to xorg.conf that you listed, and I now have a related question: After installing xinput and wacom-tools (along with xserver-xorg-input-wacom and wacom-kernel-source), I find that I don't have any wacom files present in /dev/input. It seems that wacom-tools was supposed to have created /dev/input/wacom, but it did not. However, my xorg/conf is referring to it anyways (after I told it to). Is there another step I missed, that forces wacom-tools create that file? Thank you.
|
|
|
09-30-2007, 10:36 PM
|
#4
|
Senior Member
Registered: May 2004
Location: Fresno CA USA
Distribution: Ubuntu 10.10
Posts: 1,466
Rep:
|
I don't recall doing anything specific for /dev/input/wacom. I just looked at the /dev/input folder find it there. Note that all these files have today's date. There may be created by udev rules.
fragos@Geo:~$ ls -al /dev/input
total 0
drwxr-xr-x 4 root root 380 2007-09-30 15:43 .
drwxr-xr-x 14 root root 15000 2007-09-30 15:43 ..
drwxr-xr-x 2 root root 160 2007-09-30 15:43 by-id
drwxr-xr-x 2 root root 200 2007-09-30 15:43 by-path
crw-rw---- 1 root root 13, 64 2007-09-30 15:43 event0
crw-rw---- 1 root root 13, 65 2007-09-30 15:43 event1
crw-rw---- 1 root root 13, 66 2007-09-30 15:43 event2
crw-rw---- 1 root root 13, 67 2007-09-30 15:43 event3
crw-rw---- 1 root root 13, 68 2007-09-30 15:43 event4
crw-rw---- 1 root root 13, 69 2007-09-30 15:43 event5
crw-rw---- 1 root root 13, 70 2007-09-30 15:43 event6
crw-rw---- 1 root root 13, 71 2007-09-30 15:43 event7
crw-rw---- 1 root root 13, 63 2007-09-30 15:43 mice
crw-rw---- 1 root root 13, 32 2007-09-30 15:43 mouse0
crw-rw---- 1 root root 13, 33 2007-09-30 15:43 mouse1
crw-rw---- 1 root root 13, 34 2007-09-30 15:43 mouse2
crw-rw---- 1 root root 13, 35 2007-09-30 15:43 mouse3
lrwxrwxrwx 1 root root 6 2007-09-30 15:43 tablet-graphire4-4x5 -> event5
lrwxrwxrwx 1 root root 6 2007-09-30 15:43 wacom -> event5
|
|
|
09-30-2007, 11:26 PM
|
#5
|
LQ Newbie
Registered: Sep 2007
Posts: 2
Rep:
|
thanks for the reply, fragos! I ran that ls -al, and the output was the same as yours, except for those last two lines. I'm thinking wacom-tools and and the kernel source didn't install correctly, as that's been happening a lot lately. I've been meaning to install Gutsy soon, so I might just wait to get my Bamboo working under that distro instead. Thanks for your help!
|
|
|
10-01-2007, 12:05 AM
|
#6
|
Senior Member
Registered: May 2004
Location: Fresno CA USA
Distribution: Ubuntu 10.10
Posts: 1,466
Rep:
|
I installed Gutsy in a spare partition when the beta came out. I haven't booted to Feisty since I got Gutsy. It's amazing. As expected their are a couple of little glitches but nothing I can deal with. The full release is only about 18 days away.
|
|
|
All times are GMT -5. The time now is 06:38 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|