个人工具

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

来自Ubuntu中文

跳转至: 导航, 搜索
第3行: 第3行:
 
'''''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 ===
* 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 :
+
* 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 :<pre><nowiki>
<pre><nowiki>
+
 
Section "InputDevice"
 
Section "InputDevice"
Driver        "wacom"
+
  Driver        "wacom"
Identifier    "stylus"
+
  Identifier    "stylus"
Option        "Device"        "/dev/wacom"          # Change to  
+
  Option        "Device"        "/dev/wacom"          # Change to  
# /dev/input/event
+
                                                      # /dev/input/event
# for USB
+
                                                      # for USB
Option        "Type"          "stylus"
+
  Option        "Type"          "stylus"
Option        "ForceDevice"  "ISDV4"              # Tablet PC ONLY
+
  Option        "ForceDevice"  "ISDV4"              # Tablet PC ONLY
 
EndSection
 
EndSection
 +
 
Section "InputDevice"
 
Section "InputDevice"
Driver        "wacom"
+
  Driver        "wacom"
Identifier    "eraser"
+
  Identifier    "eraser"
Option        "Device"        "/dev/wacom"          # Change to  
+
  Option        "Device"        "/dev/wacom"          # Change to  
# /dev/input/event
+
                                                      # /dev/input/event
# for USB
+
                                                      # for USB
Option        "Type"          "eraser"
+
  Option        "Type"          "eraser"
Option        "ForceDevice"  "ISDV4"              # Tablet PC ONLY
+
  Option        "ForceDevice"  "ISDV4"              # Tablet PC ONLY
 
EndSection
 
EndSection
 +
 
Section "InputDevice"
 
Section "InputDevice"
Driver        "wacom"
+
  Driver        "wacom"
Identifier    "cursor"
+
  Identifier    "cursor"
Option        "Device"        "/dev/wacom"          # Change to  
+
  Option        "Device"        "/dev/wacom"          # Change to  
# /dev/input/event
+
                                                      # /dev/input/event
# for USB
+
                                                      # for USB
Option        "Type"          "cursor"
+
  Option        "Type"          "cursor"
Option        "ForceDevice"  "ISDV4"              # Tablet PC ONLY
+
  Option        "ForceDevice"  "ISDV4"              # Tablet PC ONLY
 
EndSection</nowiki></pre>
 
EndSection</nowiki></pre>
 
You should replace the 3 /dev/wacom occurences to point to /dev/input/wacom
 
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 :
+
Here is the above section of /etc/X11/xorg.conf after modification :<pre><nowiki>
<pre><nowiki>
+
 
Section "InputDevice"
 
Section "InputDevice"
Driver        "wacom"
+
  Driver        "wacom"
Identifier    "stylus"
+
  Identifier    "stylus"
Option        "Device"        "/dev/input/wacom"          # Change to  
+
  Option        "Device"        "/dev/input/wacom"          # Change to  
# /dev/input/event
+
                                                      # /dev/input/event
# for USB
+
                                                      # for USB
Option        "Type"          "stylus"
+
  Option        "Type"          "stylus"
Option        "ForceDevice"  "ISDV4"              # Tablet PC ONLY
+
  Option        "ForceDevice"  "ISDV4"              # Tablet PC ONLY
 
EndSection
 
EndSection
 +
 
Section "InputDevice"
 
Section "InputDevice"
Driver        "wacom"
+
  Driver        "wacom"
Identifier    "eraser"
+
  Identifier    "eraser"
Option        "Device"        "/dev/input/wacom"          # Change to  
+
  Option        "Device"        "/dev/input/wacom"          # Change to  
# /dev/input/event
+
                                                      # /dev/input/event
# for USB
+
                                                      # for USB
Option        "Type"          "eraser"
+
  Option        "Type"          "eraser"
Option        "ForceDevice"  "ISDV4"              # Tablet PC ONLY
+
  Option        "ForceDevice"  "ISDV4"              # Tablet PC ONLY
 
EndSection
 
EndSection
 +
 
Section "InputDevice"
 
Section "InputDevice"
Driver        "wacom"
+
  Driver        "wacom"
Identifier    "cursor"
+
  Identifier    "cursor"
Option        "Device"        "/dev/input/wacom"          # Change to  
+
  Option        "Device"        "/dev/input/wacom"          # Change to  
# /dev/input/event
+
                                                      # /dev/input/event
# for USB
+
                                                      # for USB
Option        "Type"          "cursor"
+
  Option        "Type"          "cursor"
Option        "ForceDevice"  "ISDV4"              # Tablet PC ONLY
+
  Option        "ForceDevice"  "ISDV4"              # Tablet PC ONLY
 
EndSection</nowiki></pre>
 
EndSection</nowiki></pre>
* This lines are added in the section "ServerLayout"
+
* This lines are added in the section "ServerLayout"<pre><nowiki>
<pre><nowiki>
+
 
InputDevice    "stylus" "SendCoreEvents"
 
InputDevice    "stylus" "SendCoreEvents"
 
InputDevice    "cursor" "SendCoreEvents"
 
InputDevice    "cursor" "SendCoreEvents"
 
InputDevice    "eraser" "SendCoreEvents"</nowiki></pre>
 
InputDevice    "eraser" "SendCoreEvents"</nowiki></pre>
If they are not present, you can paste them into the section, which will look like this :
+
If they are not present, you can paste them into the section, which will look like this :<pre><nowiki>
<pre><nowiki>
+
 
Section "ServerLayout"
 
Section "ServerLayout"
 
Identifier "Default Layout"
 
Identifier "Default Layout"

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