沈黙を破ってひさしぶりに更新したと思えば、面白くない記事です。スミマセン。
「CentOSでWacomタブレットを有効にする」の巻です、なぜそんなことやるかって言うと質問されたから、、、です。
CentOS 5.4の場合です。カーネルの再構築とかドライバのコンパイルとか面倒だろなと思って始めましたが全く必要無し。使用したのはIntuos3 PTZ-631W。
ちなみにCentOSのインストール時に
- Linuxwacom-0.7.8.3-6.el5.i386
- wdaemon-0.14-4.i386
が入っていました。
HOWTO: Red Hat Enterprise Linux 5 + Wacomが参考になります。ってゆーかほぼそのまま。
/etc/X11/xorg.confへ追記します、まずは「Section “ServerLayout”」の中に、
InputDevice "stylus" "SendCoreEvents" InputDevice "eraser" "SendCoreEvents" InputDevice "cursor" "SendCoreEvents" InputDevice "pad"
そしてファイル末尾に以下を追記
# Wacom stuff Section "InputDevice" Driver "wacom" Identifier "stylus" Option "Device" "/dev/input/wacom" Option "Type" "stylus" Option "USB" "on" Option "Mode" "Absolute" Option "Threshold" "10" EndSection Section "InputDevice" Driver "wacom" Identifier "eraser" Option "Device" "/dev/input/wacom" Option "Type" "eraser" Option "USB" "on" Option "Mode" "Absolute" Option "Threshold" "10" EndSection Section "InputDevice" Driver "wacom" Identifier "cursor" Option "Device" "/dev/input/wacom" Option "Type" "cursor" Option "USB" "on" Option "Mode" "Relative" Option "Threshold" "10" EndSection Section "InputDevice" Driver "wacom" Identifier "pad" Option "Device" "/dev/input/wacom" Option "Type" "pad" Option "USB" "on" EndSection # End wacom stuff
続いて「/etc/udev/rules.d」以下にあるudevルールファイルの改名。
mv 60-wacom.rules 40-wacom.rules
以上。タブレットを接続してXを再起動(Ctrl+Alt+Backspace)、ログインしなおすとタブレットが有効になります。
冒頭で紹介したサイトではデバイスを「/dev/input/wacom0」としていますがここでは「/dev/input/wacom」としています。環境によってちがうのかも知れません。
$ ls -al /dev/input
として確認できます。僕の環境では、
drwxr-xr-x 3 root root 220 4月 20 21:16 . drwxr-xr-x 12 root root 4080 4月 20 21:35 .. crw------- 1 root root 13, 64 4月 20 21:16 event0 crw------- 1 root root 13, 65 4月 20 21:16 event1 crw------- 1 root root 13, 66 4月 20 21:16 event2 crw------- 1 root root 13, 67 4月 20 21:16 event3 crw------- 1 root root 13, 63 4月 20 21:16 mice crw------- 1 root root 13, 32 4月 20 21:16 mouse0 crw------- 1 root root 13, 33 4月 20 21:16 mouse1 lrwxrwxrwx 1 root root 6 4月 20 21:16 wacom -> event3 drwxr-xr-x 2 root root 80 4月 20 21:16 wacom-tablets
となりました。
これでいいかな?
筆圧もバッチリ。
チラオカ
2010-04-23 — 22:11
面白くないことないっす。十分有益! まぁ質問した本人ですからw
ありがとうございます!
htaka
2010-04-23 — 23:38
お疲れ様です。
お役にたてて良かったっす。
ほか、僕に出来る「難しくない」コトがあればなんなりと。