ふじたです。
At 7:14 AM +0900 02.8.3, Satoshi SAKAI wrote:
On Sun, 28 Jul 2002 02:28:44 +0900
vine <vine@xxxxxxxxxxxxxxxxxxx> wrote:
お使いのタブレットは何でしょう?
ArtPad2 Pro です。
ワコム製のシリアル接続タブレットですよね?
ちょうど先日
http://www.tldp.org/HOWTO/Wacom-Tablet-HOWTO.html
を参考にして、シリアル接続のワコム FAVO(ET-0405-R)を
Vine-2.5 + XFree86-4.2.0で動作させたところなので、
手順を書きます。
---------------
VineLinux2.5 (XFree86 4.2.0)には、
wacom用のmoduleが入ってなかったので、
wacom_drv.o
を何処かから探してきて(googleで検索して適当にダウンロード)
/usr/X11R6/lib/modules/input/
以下にコピーして、必要であれば
# chmod 755 /usr/X11R6/lib/modules/input/wacom_drv.o
して、その後
/etc/X11/XFree86Config-4
を編集
------- /etc/X11/XFree86Config-4 ----------
Section "Module"
Load "wacom" # wacom_drv.o モジュールを読込
を追加
EndSection
Section "ServerLayout"
InputDevice "stylus" "AlwaysCore"
InputDevice "eraser" "AlwaysCore"
InputDevice "cursor" "AlwaysCore"
を追加
EndSection
Section "InputDevice"
Identifier "stylus"
Driver "wacom"
Option "Type" "stylus"
Option "Device" "/dev/ttyS0" # com1ポート
Option "Mode" "absolute" # ペンは絶対値モード
EndSection
Section "InputDevice"
Identifier "eraser"
Driver "wacom"
Option "Type" "eraser"
Option "Device" "/dev/ttyS0"
EndSection
Section "InputDevice"
Identifier "cursor"
Driver "wacom"
Option "Type" "cursor"
Option "Device" "/dev/ttyS0"
EndSection
を追加
------------------------------------------------
なんか間違ってるような気もしますが、これで動作してます。
------------
Takayuki Fujita
H.I.T.
fujita@xxxxxxxxxxxxxxxxxxxxxxxxxxxx
----