个人工具

UbuntuHelp:WacomTroubleshooting

来自Ubuntu中文

Wikibot讨论 | 贡献2007年12月6日 (四) 11:00的版本

跳转至: 导航, 搜索

This section is intended to collect useful advices and solutions for configuring Wacom Tablets under Ubuntu 6.06 Dapper Drake when the method recommended in https://wiki.ubuntu.com/Wacom doesn't work.

Editing /etc/X11/xorg.conf

  • Here is an extract of Dapper Drake default xorg.conf relating to Wacom USB tablets, that you can use if these lines weren't automatically added :

Section "InputDevice"

 Driver        "wacom"
 Identifier    "stylus"
 Option        "Device"        "/dev/wacom"          # Change to 
                                                     # /dev/input/event
                                                     # for USB
 Option        "Type"          "stylus"
 Option        "ForceDevice"   "ISDV4"               # Tablet PC ONLY

EndSection

Section "InputDevice"

 Driver        "wacom"
 Identifier    "eraser"
 Option        "Device"        "/dev/wacom"          # Change to 
                                                     # /dev/input/event
                                                     # for USB
 Option        "Type"          "eraser"
 Option        "ForceDevice"   "ISDV4"               # Tablet PC ONLY

EndSection

Section "InputDevice"

 Driver        "wacom"
 Identifier    "cursor"
 Option        "Device"        "/dev/wacom"          # Change to 
                                                     # /dev/input/event
                                                     # for USB
 Option        "Type"          "cursor"
 Option        "ForceDevice"   "ISDV4"               # Tablet PC ONLY
EndSection

You should replace the 3 /dev/wacom occurences to point to /dev/input/wacom

Here is the above section of /etc/X11/xorg.conf after modification :
Section "InputDevice"
  Driver        "wacom"
  Identifier    "stylus"
  Option        "Device"        "/dev/input/wacom"          # Change to 
                                                      # /dev/input/event
                                                      # for USB
  Option        "Type"          "stylus"
  Option        "ForceDevice"   "ISDV4"               # Tablet PC ONLY
EndSection

Section "InputDevice"
  Driver        "wacom"
  Identifier    "eraser"
  Option        "Device"        "/dev/input/wacom"          # Change to 
                                                      # /dev/input/event
                                                      # for USB
  Option        "Type"          "eraser"
  Option        "ForceDevice"   "ISDV4"               # Tablet PC ONLY
EndSection

Section "InputDevice"
  Driver        "wacom"
  Identifier    "cursor"
  Option        "Device"        "/dev/input/wacom"          # Change to 
                                                      # /dev/input/event
                                                      # for USB
  Option        "Type"          "cursor"
  Option        "ForceDevice"   "ISDV4"               # Tablet PC ONLY
EndSection
  • This lines are added in the section "ServerLayout"

InputDevice "stylus" "SendCoreEvents" InputDevice "cursor" "SendCoreEvents"

InputDevice "eraser" "SendCoreEvents" If they are not present, you can paste them into the section, which will look like this :
Section "ServerLayout"
	Identifier	"Default Layout"
	Screen		"Default Screen"
	InputDevice	"Generic Keyboard"
	InputDevice	"Configured Mouse"
	InputDevice     "stylus" "SendCoreEvents"
	InputDevice     "cursor" "SendCoreEvents"
	InputDevice     "eraser" "SendCoreEvents"
EndSection