電子書籍の厳選無料作品が豊富!

CentOS 5.1でWACOMのタブレットを使おうとしているのですが、
うまく動いてくれません。
Linux Wacom Projectのサイトをみながら
ドライバのインストールを試みたりしてみたのですが、
うまく動きません。

とりあえずペンの動きにはマウスカーソルが反応します。
しかし本当にとりあえず反応するだけです。
タブレット付属のマウスには反応してくれません。

xorg.confの設定はLinux Wacom Projectを
参考に設定しました。

私はXが悪いのではないかと推測しています。
$ grep -i wacom /var/log/Xorg.0.log
(II) LoadModule: "wacom"
(II) Loading /usr/lib64/xorg/modules/input/wacom_drv.so
(II) Module wacom: vendor="X.Org Foundation"
(II) UnloadModule: "wacom"
(II) Unloading /usr/lib64/xorg/modules/input/wacom_drv.so
(EE) Failed to load module "wacom" (module requirement mismatch, 0)
(EE) No Input driver matching `wacom'
(EE) No Input driver matching `wacom'
(EE) No Input driver matching `wacom'
(EE) No Input driver matching `wacom'
の様なエラーがログに出力されていましたので。
しかし対処方法がわかりません。

$ uname -a
Linux hostname 2.6.18-53.1.4.el5 #1 SMP x86_64 x86_64 x86_64 GNU/Linux
WACOM Intuos PTZ-930
X Window System Version 7.1.1
です。

私の推測通りXが原因なのかあるいはそれ以外なのかわかりませんが、
アドバイスをいただけませんでしょうか。
よろしくお願いします。

A 回答 (1件)

まぁ、要するに設定なんですが・・・



それ以前に何でCentOSでタブレット??
そういうデスクトップの使い方ならubuntuなどデスクトップ向けのディストリビューションが良いですよ。

ubuntu7.10ならデフォルトでintuosがちゃんと動作するようですから、
そのXの設定を参考にするとか。

ちなみに、私のubuntu7.10環境のXは次のような記述です。

Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen" 0 0
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
InputDevice "stylus" "SendCoreEvents"
InputDevice "cursor" "SendCoreEvents"
InputDevice "eraser" "SendCoreEvents"
EndSection

Section "InputDevice"

# /dev/input/event
# for USB
Identifier "stylus"
Driver "wacom"
Option "Device" "/dev/wacom" # Change to
Option "Type" "stylus"
Option "ForceDevice" "ISDV4" # Tablet PC ONLY
EndSection

Section "InputDevice"

# /dev/input/event
# for USB
Identifier "eraser"
Driver "wacom"
Option "Device" "/dev/wacom" # Change to
Option "Type" "eraser"
Option "ForceDevice" "ISDV4" # Tablet PC ONLY
EndSection

Section "InputDevice"

# /dev/input/event
# for USB
Identifier "cursor"
Driver "wacom"
Option "Device" "/dev/wacom" # Change to
Option "Type" "cursor"
Option "ForceDevice" "ISDV4" # Tablet PC ONLY
EndSection

もっとも、タブレットは別のPCに接続していますので参考までに。
    • good
    • 0
この回答へのお礼

ご回答ありがとうございました。

Ubuntu Linuxで試してみました。
インストールしたわけではなくCD bootした状態で
試してみたのですが。

Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen" 0 0
InputDevice "Generic Keyboard"
#InputDevice "Configured Mouse"
InputDevice "stylus" "SendCoreEvents"
InputDevice "cursor" "SendCoreEvents"
InputDevice "eraser" "SendCoreEvents"
EndSection

とxorg.confを設定したら無事にタブレットが
使えるようになりました。

お礼日時:2008/01/20 02:31

お探しのQ&Aが見つからない時は、教えて!gooで質問しましょう!