wacomタブレット

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
Option "Twinview""horizontal"
EndSection

Section "InputDevice"
Driver "wacom"
Identifier "eraser"
Option "Device" "/dev/input/wacom" #USB ONLY
Option "Type" "eraser"
Option "USB" "on" #USB ONLY
Option "Twinview""horizontal"
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
Option "Twinview""horizontal"
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



使用するタブレットや接続方法によって、すこしずつ変わりますので、上記のページをご参照ください.

タグ:

+ タグ編集
  • タグ:

このサイトはreCAPTCHAによって保護されており、Googleの プライバシーポリシー利用規約 が適用されます。

最終更新:2008年06月22日 23:03