ホーム
はじめに
うちのコンピュータ
Slackware3.5/3.6/4.0/7.0/7.1の設定
ALSAドキュメント作業所
Slackware7.0日本語化計画
Wacom FAVO USBを使う
  LinuxのUSBドライバーをインストールする
  ドライバーのロード/動作確認
  FAVO USB用XFree86ドライバー
  XF86Configの設定(XFree86-4.0.x編)
  XF86Configの設定(XFree86-3.3.x編)
  XFree86の動作確認
  GIMPを使ってみる
GIMPで作成したCG
リンク

XF86Configの設定(XFree86-4.0.x編)

Last update: 平成13年5月31日
設定は大体他の文書で説明されているようにすれば動くはずです。ここでは私の行なった設定の紹介をします。
FAVO USB以外にUSBデバイスを利用していないのでこんな感じです。USBマウスも接続していると変わるかもしれません。
まず、wacom_drv.oを使用した場合の設定です。
デバイスは、stylus、eraser、cursorがあり、それぞれFAVOペン、消しゴム、FAVOマウスです。stylus、eraserはAbsoluteモードとし、タブレット上に指した地点に相当する場所が仮想スクリーンの相当する地点を指します。cursorはRelativeモードとし、普通のマウスのように動かした分だけカーソルが移動します。場合によってはMaxX、MaxYを指定します。
Section "InputDevice"
       Identifier  "FavoStylus"
       Driver      "wacom"
       Option      "Device" "/dev/input/event0"
       Option      "Type" "stylus"
       Option      "Mode" "Absolute"
#       Option      "MaxX" "10206"
#       Option      "MaxY" "7422"
       Option      "USB"
EndSection 
Section "InputDevice"
       Identifier  "FavoEraser"
       Driver      "wacom"
       Option      "Device" "/dev/input/event0"
       Option      "Type" "eraser"
       Option      "Mode" "Absolute"
       Option      "AlwaysCore"
#       Option      "MaxX" "10206"
#       Option      "MaxY" "7422"
       Option      "USB"
EndSection 
Section "InputDevice"
       Identifier  "FavoMouse"
       Driver      "wacom"
       Option      "Device" "/dev/input/event0"
       Option      "Type" "cursor"
       Option      "Mode" "Relative"
#       Option      "MaxX" "10206"
#       Option      "MaxY" "7422"
       Option      "AlwaysCore"
       Option      "USB"
EndSection 
ServerLayout欄には以下の設定を追加します。
    InputDevice "FavoStylus" "AlwaysCore"
    InputDevice "FavoEraser" "AlwaysCore"
    InputDevice "FavoMouse" "AlwaysCore"
続いてgraphireusb_drv.oの設定です。
デバイスは、gstylus、geraser、gmouseがあり、それぞれFAVOペン、消しゴム、FAVOマウスです。gstylus、geraserはAbsoluteモードとし、タブレット上に指した地点に相当する場所が仮想スクリーンの相当する地点を指します。gmouseはRelativeモードとし、普通のマウスのように動かした分だけカーソルが移動します。
Section "InputDevice"
        Identifier      "gstylus"
        Driver          "graphireusb"
        Option          "Device" "/dev/input/event0"
        Option          "Mode" "Absolute"
        Option          "Type" "gstylus"
EndSection
Section "InputDevice"
        Identifier      "geraser"
        Driver          "graphireusb"
        Option          "Device" "/dev/input/event0"
        Option          "Mode" "Absolute"
        Option          "Type" "geraser"
EndSection
Section "InputDevice"
        Identifier      "gmouse"
        Driver          "graphireusb"
        Option          "Device" "/dev/input/event0"
        Option          "Mode" "relative"
        Option          "Type" "gmouse"
EndSection
ServerLayout欄には以下の設定を追加します。
    InputDevice "gstylus" "AlwaysCore"
    InputDevice "geraser" "AlwaysCore"
    InputDevice "gmouse" "AlwaysCore"