引き続きVine Linux 4.1へのWACOM社のペンタブレットFAVO ET-0405-Uのドライバインストールです。対象は、ThinkPad i1200 TYPE 1161-264上のVine Linux 4.1です。
ドライバは、2種類あって、WACOM社製(http://www.wacom.com/productsupport/select.cfm)と独自に作られたものGraphire USB(http://www.pxh.de/fs/graphire/)があります。調べてみると、Graphire USBの方が良さそうなので、こちらにしました。
まず、rootになってから作業を開始です。まず、以下のドライバをサイト(http://www.pxh.de/fs/graphire/)から入手します。
graphire-1.8.tar.gz
ダウンロードしたファイルを展開し、展開したフォルダにgraphireUSB_drv.oというファイルがあるので、/usr/X11R6/lib/modules/inputに置きます。
そして、/etc/X11/xorg.confを以下のように変更します。
Section "ServerLayout"
[...]
InputDevice "gstylus" "AlwaysCore"
InputDevice "geraser" "AlwaysCore"
InputDevice "gmouse" "AlwaysCore"
EndSection
Section "Module"
[...]
Load "graphireUSB_drv.o"
EndSection
Section "InputDevice"
Identifier "gstylus"
Driver "graphireusb"
Option "Device" "/dev/input/event0"
Option "Mode" "Absolute"
Option "Type" "gstylus"
Option "Suppress" "30"
EndSection
Section "InputDevice"
Identifier "geraser"
Driver "graphireusb"
Option "Device" "/dev/input/event0"
Option "Mode" "Absolute"
Option "Type" "geraser"
Option "Suppress" "30"
EndSection
Section "InputDevice"
Identifier "gmouse"
Driver "graphireusb"
Option "Device" "/dev/input/event0"
Option "Mode" "relative"
Option "Type" "gmouse"
Option "Suppress" "30"
EndSection
そして、再起動し、GIMPを起動して、試してみると、どうも感圧されてない感じ…。調査してみると、ペンタブレットのイベントが、event0以外に割り当てられている可能性があることが判った(参考URL(http://www.atmarkit.co.jp/flinux/rensai/linuxtips/590usetablet.html))。
そこで、cat /proc/bus/input/devicesを使って調べてみると、ペンタブレットのイベントがevent2に割り当てられていることが判った。そこで、以下のように/etc/X11/xorg.confを修正してみました。
Section "InputDevice"
Identifier "gstylus"
Driver "graphireusb"
Option "Device" "/dev/input/event2"
Option "Mode" "Absolute"
Option "Type" "gstylus"
Option "Suppress" "30"
EndSection
Section "InputDevice"
Identifier "geraser"
Driver "graphireusb"
Option "Device" "/dev/input/event2"
Option "Mode" "Absolute"
Option "Type" "geraser"
Option "Suppress" "30"
EndSection
Section "InputDevice"
Identifier "gmouse"
Driver "graphireusb"
Option "Device" "/dev/input/event2"
Option "Mode" "relative"
Option "Type" "gmouse"
Option "Suppress" "30"
EndSection
すると、GIMPで感圧するじゃないですか(^ ^)。
ただ、描画ウィンドウでペンタブレットで操作を行うと、カーソルがウィンドウから出せない現象が発生。一応、ペンタブレットのペンを描画ウィンドウに落とし、ペンのボタンを押すと回避できることが判ったが、これは仕様なんだろうか?とりあえず、使えているので、良しとした。
参考URL:
http://linuxwacom.sourceforge.net/
http://www.pxh.de/fs/graphire/ Graphire USB
http://www.wacom.com/productsupport/linux.cfm
http://www.wacom.com/productsupport/select.cfm
http://www.atmarkit.co.jp/flinux/rensai/linuxtips/590usetablet.html
[0回]
PR