个人工具

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

来自Ubuntu中文

跳转至: 导航, 搜索
(新页面: {{From|https://help.ubuntu.com/community/WacomTroubleshooting}} {{Languages|UbuntuHelp:WacomTroubleshooting}} '''''This section is intended to collect useful advices and solutions for con...)
 
第2行: 第2行:
 
{{Languages|UbuntuHelp:WacomTroubleshooting}}
 
{{Languages|UbuntuHelp:WacomTroubleshooting}}
 
'''''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>
第17行: 第14行:
 
Option        "ForceDevice"  "ISDV4"              # Tablet PC ONLY
 
Option        "ForceDevice"  "ISDV4"              # Tablet PC ONLY
 
EndSection
 
EndSection
 
 
Section "InputDevice"
 
Section "InputDevice"
 
Driver        "wacom"
 
Driver        "wacom"
第27行: 第23行:
 
Option        "ForceDevice"  "ISDV4"              # Tablet PC ONLY
 
Option        "ForceDevice"  "ISDV4"              # Tablet PC ONLY
 
EndSection
 
EndSection
 
 
Section "InputDevice"
 
Section "InputDevice"
 
Driver        "wacom"
 
Driver        "wacom"
第37行: 第32行:
 
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>
第51行: 第44行:
 
Option        "ForceDevice"  "ISDV4"              # Tablet PC ONLY
 
Option        "ForceDevice"  "ISDV4"              # Tablet PC ONLY
 
EndSection
 
EndSection
 
 
Section "InputDevice"
 
Section "InputDevice"
 
Driver        "wacom"
 
Driver        "wacom"
第61行: 第53行:
 
Option        "ForceDevice"  "ISDV4"              # Tablet PC ONLY
 
Option        "ForceDevice"  "ISDV4"              # Tablet PC ONLY
 
EndSection
 
EndSection
 
 
Section "InputDevice"
 
Section "InputDevice"
 
Driver        "wacom"
 
Driver        "wacom"
第71行: 第62行:
 
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>
第78行: 第67行:
 
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>

2007年11月30日 (五) 22:12的版本

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