个人工具

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

来自Ubuntu中文

跳转至: 导航, 搜索
(新页面: {{From|https://help.ubuntu.com/community/WacomPenPartnerSerial}} {{Languages|UbuntuHelp:WacomPenPartnerSerial}} == Using Wacom PenPartner Serial with Hoary == What I did. And it seems to...)
 
第2行: 第2行:
 
{{Languages|UbuntuHelp:WacomPenPartnerSerial}}
 
{{Languages|UbuntuHelp:WacomPenPartnerSerial}}
 
== Using Wacom PenPartner Serial with Hoary ==
 
== Using Wacom PenPartner Serial with Hoary ==
 
 
What I did. And it seems to work:
 
What I did. And it seems to work:
 
* Download linuxwacom-0.6.8  from http://linuxwacom.sourceforge.net
 
* Download linuxwacom-0.6.8  from http://linuxwacom.sourceforge.net
第23行: 第22行:
 
Option        "Type"          "cursor"
 
Option        "Type"          "cursor"
 
EndSection
 
EndSection
 
 
Section "InputDevice"
 
Section "InputDevice"
 
Driver        "wacom"
 
Driver        "wacom"
第30行: 第28行:
 
Option        "Type"          "stylus"
 
Option        "Type"          "stylus"
 
EndSection
 
EndSection
 
 
Section "InputDevice"
 
Section "InputDevice"
 
Driver        "wacom"
 
Driver        "wacom"
第37行: 第34行:
 
Option        "Type"          "eraser"
 
Option        "Type"          "eraser"
 
EndSection
 
EndSection
 
 
Section "ServerLayout"
 
Section "ServerLayout"
 
...
 
...
第45行: 第41行:
 
EndSection
 
EndSection
 
</nowiki></pre>
 
</nowiki></pre>
 
 
* And thats it. My very old pad works perfect :-)
 
* And thats it. My very old pad works perfect :-)
 
 
[[category:CategoryDocumentation]] [[category:CategoryCleanup]]
 
[[category:CategoryDocumentation]] [[category:CategoryCleanup]]
  
 
[[category:UbuntuHelp]]
 
[[category:UbuntuHelp]]

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

Using Wacom PenPartner Serial with Hoary

What I did. And it seems to work:

uname -a
X -version

- Copy the right driver to the X-Server module folder

cd /usr/X11R6/lib/modules/input
sudo mv wacom_drv.o wacom_drv.o.orgsudo cp /home/andreas/Desktop/linuxwacom-0.6.8/prebuilt/wacom_drv.o_6.8k2.6 wacom_drv.o
  • add the following to your /etc/X11/xorg.conf file
Section "InputDevice"
Driver        "wacom"
Identifier    "cursor"
Option        "Device"        "/dev/ttyS0"          # SERIAL ONLY
Option        "Type"          "cursor"
EndSection
Section "InputDevice"
Driver        "wacom"
Identifier    "stylus"
Option        "Device"        "/dev/ttyS0"          # SERIAL ONLY
Option        "Type"          "stylus"
EndSection
Section "InputDevice"
Driver        "wacom"
Identifier    "eraser"
Option        "Device"        "/dev/ttyS0"          # SERIAL ONLY
Option        "Type"          "eraser"
EndSection
Section "ServerLayout"
	...
	InputDevice	"cursor"    "SendCoreEvents"
InputDevice	"stylus"    "SendCoreEvents"
InputDevice	"eraser"    "SendCoreEvents"
EndSection
  • And thats it. My very old pad works perfect :-)