个人工具

UbuntuHelp:WacomPenPartnerSerial

来自Ubuntu中文

Wikibot讨论 | 贡献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 :-)