
Ubuntu日本語フォーラム

ログインしていません。
Ubuntu8.04でwacomタブレットを使用するための設定方法
難しいように説明されていることが多いが初心者の私でも分かってしまえば簡単でした。
一部で紹介されているようにカーネルの再コンパイルは私の環境では必要ありませんでした。
参考にしたのはこのページです。
ここは英語ですけど、細かい設定しようと思えば、見ないといけません。
少し英訳してみましたので見てください。
要約すると、
1.synapticを使用して、wacomを検索→wacom-toolsをインストール。
2.xorg.confに必要項目を追記する.
たったこれだけです。
2.を行うためには、sudo gedit /etc/X11/xorg.confでgeditを起動させなければいけません。
ちなみに私の環境(intuos3 USB接続)だと
------------------------------------------------------------------
# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
# sudo dpkg-reconfigure -phigh xserver-xorg
Section "InputDevice"
Identifier "Generic Keyboard"
Driver "kbd"
Option "XkbRules" "xorg"
Option "XkbModel" "jp106"
Option "XkbLayout" "jp,jp"
Option "XkbOptions" "grp:alt_shift_toggle,grp_led:scroll"
Option "XkbVariant" "106,"
EndSection
Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
Option "CorePointer"
EndSection
Section "InputDevice"
Driver "wacom"
Identifier "stylus"
Option "Device" "/dev/input/wacom" #USB ONLY
Option "Type" "stylus"
Option "USB" "on" #USB ONLY
EndSection
Section "InputDevice"
Driver "wacom"
Identifier "eraser"
Option "Device" "/dev/input/wacom" #USB ONLY
Option "Type" "eraser"
Option "USB" "on" #USB ONLY
EndSection
Section "InputDevice"
Driver "wacom"
Identifier "cursor"
Option "Device" "/dev/input/wacom" #USB ONLY
Option "Type" "cursor"
Option "Mode" "relative"
Option "USB" "on" #USB ONLY
EndSection
#Intuos3 or Cintiq 21UX
Section "InputDevice"
Driver "wacom"
Identifier "pad"
Option "Device" "/dev/input/wacom" #USB ONLY
Option "Type" "pad"
Option "USB" "on" #USB ONLY
EndSection
Section "Device"
Identifier "Configured Video Device"
Driver "fglrx"
EndSection
Section "Monitor"
Identifier "Configured Monitor"
EndSection
Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "Configured Video Device"
Defaultdepth 24
EndSection
Section "ServerLayout"
Identifier "Default Layout"
InputDevice "stylus""SendCoreEvents"
InputDevice "cursor""SendCoreEvents"
InputDevice "eraser""SendCoreEvents"
InputDevice "pad" #For Intuos3/Cintiq 21UX/Graphire4 tablets. It should NOT send core event
screen "Default Screen"
EndSection
Section "Module"
Load "glx"
EndSection
-------------------------------------------------------------------
となります。斜線の部分が追加した部分です.
使用するタブレットや接続方法によって、すこしずつ上記の設定が変わりますので、上記のページをご参照ください.
最後の編集者: kazupon (2008-06-23 00:23:33)
オフライン
スレッドタイトルに関係あるかなと思ったので、
書き込みます。
こちらの環境(kubuntu 7.10 Gutsy)では
タブレットドライバのインストールと、
グラフィックツールとの併用は上手くいっているのですが、
ログファイルに
情報 ProcXCloseDevice to close or not ?
↑が延々と追記されていくのが止まらない状況です。
(タブレットも、その使用自体も問題はないのですが)
これって、ubuntu 8.04 Hardy では、発生してませんか?
また、止める必要って無いんでしょうか?
どなたか詳しい方、書き込みをお願いします。
オフライン