買東西就是這樣~ 買沒多久下一代就出來了。

棍棍棍~



  還好 graphire4 只是多了些蠢功能,多花了一千多大洋,就為了那個無三小路用的滾輪而已啦,哇哈哈。( 努力的說服自己沒有吃虧 )
  要安裝在 Linux 下面真的是非常的簡單,首先~拿出廠商贈送的光碟,找出有 Driver For Linux 的那張,丟進你的 DVD-Rom ,把它 mount 進來以後,裏面有個 Install 的 script 。

# chmod +X Install
# ./Install

  完成上述動作以後,就大功告成啦!可喜可賀~可喜可賀~~

<<<<<上面我所講的都是幹古,如果廠商都那麼好心,乾脆每天僱工讀生在路上發鈔票算了。>>>>>


  其實在Linux下面安裝 Wacom 的產品是很簡單地,好吧~ 至少跟其他的 driver 比起來是相對上的簡單,我所使用的環境是 Gentoo Linux ,Kernel 是 2.6.12 ,產品是 Graphire 3 的過氣貨。如果你的指令或設定檔與我所講的不同,或是設定好之後仍然不能使用,很遺憾我沒辦法提供任何幫助,像我這種智缺人都可以安裝的東西,只要你是靈長類,我相信你一定也可以!

第一步 安裝linuxwacom
# emerge sync
# USE="sdk" emerge xorg-x11
# USE="sdk" emerge linuxwacom
我用的版本是 linuxwacom 0.6.9 版,graphire4 好像要 0.7.1才有支援,記得抓最新版就是了,還有為了要編 linuxwacom 記得 xorg 要打開 sdk 的 USE flag ,不開就編不過,不要問我為什麼知道,因為我真的編過而且卡住了。

第二步 重編核心
# cd /usr/src/linux
# make menuconfig
# 編入 Device Drivers --->
    Input device support --->
     <*> Event interface
     USB Support --->
    <M> Wacom Intuos/Graphire tablet support
# make && make modules_install (這步別忘了~)


第三步 重開機,順便貓一下設備。
# cat /proc/bus/input/devices

I: Bus=0011 Vendor=0002 Product=0006 Version=003e
N: Name="ImExPS/2 Logitech Explorer Mouse"
P: Phys=isa0060/serio1/input0
H: Handlers=mouse0 event1
B: EV=7
B: KEY=1f0000 0 0 0 0 0 0 0 0
B: REL=103

I: Bus=0003 Vendor=056a Product=0013 Version=0314
N: Name="Wacom Graphire3"
P: Phys=usb-0000:00:10.0-1/input0
H: Handlers=mouse1 event2
B: EV=f
B: KEY=1c43 0 70000 0 0 0 0 0 0 0 0
B: REL=100
B: ABS=3000003

要牢記系統的資訊喔!

第四步 設定 xorg.conf 的 InputDevice section ,加入 wacom 設定。
# **********************************************************************
# Core Pointer's InputDevice section
# **********************************************************************

Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "IMPS/2"
Option "Device" "/dev/input/mouse0"
# 若是原來設成/dev/psaux或mice的人,請將此行設成第三步H行所表示的設備名。
Option "ZAxis Mapping" "4 5"
EndSection

Section "InputDevice"
Driver "wacom"
Identifier "cursor"
Option "Device" "/dev/input/event2"
Option "Type" "cursor"
Option "USB" "on"
Option "Vendor" "WACOM"
EndSection

Section "InputDevice"
Driver "wacom"
Identifier "stylus"
Option "Device" "/dev/input/event2"
Option "Type" "stylus"
Option "USB" "on"
Option "Vendor" "WACOM"
EndSection

Section "InputDevice"
Driver "wacom"
Identifier "eraser"
Option "Device" "/dev/input/event2"
Option "Type" "eraser"
Option "USB" "on"
Option "Vendor" "WACOM"
EndSection


第四之二步 修改 xorg.conf 的 ServerLayout sections ,加入 wacom 參數。
# **********************************************************************
# ServerLayout sections.
# **********************************************************************

Section "ServerLayout"

Identifier "Simple Layout"

Screen "Screen 1"

InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard1" "CoreKeyboard"
InputDevice "cursor" "SendCoreEvents"
InputDevice "stylus" "SendCoreEvents"
InputDevice "eraser" "SendCoreEvents"

EndSection


  然後呢?然後就重啟 xorg ,打開 Gimp 開始畫畫啦!!不過....目前為止我只是驅動了 wacom tablet ,壓力階的選項,筆上的按鈕還不能自訂,橡皮擦也是無用的。 XD
  等我再多翻些文章,再把那些設定一起寫進 wiki 好了。若懶得等就自行到官方網站翻文章吧。

Linuxwacom官網點我


 相關文章 
  • 沒有相關文章。
2005/11/20 17:25 2005/11/20 17:25

Trackback :: http://geeksoul.org/trackback/25