个人工具

“UbuntuHelp:WacomTroubleshooting”的版本间的差异

来自Ubuntu中文

跳转至: 导航, 搜索
第1行: 第1行:
 
{{From|https://help.ubuntu.com/community/WacomTroubleshooting}}
 
{{From|https://help.ubuntu.com/community/WacomTroubleshooting}}
 
{{Languages|UbuntuHelp:WacomTroubleshooting}}
 
{{Languages|UbuntuHelp:WacomTroubleshooting}}
 +
{|border="1" cellspacing="0"
 +
| '''This content is quite old and may not be applicable to current versions of Ubuntu.'''  (please remove this note if the page is updated)
 +
|}
 
'''''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.'''''
 
'''''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 ===
 
=== Editing /etc/X11/xorg.conf ===

2008年10月19日 (日) 18:01的版本

This content is quite old and may not be applicable to current versions of Ubuntu. (please remove this note if the page is updated)

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