Wacom Bamboo Installation

Für die Installation von dem Wacom Bamboo benötigen wir aus dem AUR das linuxwacom Package.

Falls man noch keine Erfahrung mit AUR (was ich allerdings bezweifel, wenn man Archlinux verwendet) sollte man sich im Wiki mal die kleine Anleitung durchlesen. Ist einfacher als man es sich vorstellt.

Nachdem wir das heruntergeladene tar Package entpackt haben öffnen wir die PKGBUILD Datei. In dieser Datei finden wir einen Eintrag der lautet: pkgver = 0.8.1.

Die Nummer kann inzwischen auch schon höher sein. Aufjedenfall ändern wir die Nummer in 0.8.0.

Wir speichern und führen dann wie gehabt makepkg aus und installieren , danach das erstellte neue Package. (Das gehört zur typischen Verwendung von AUR).

In dem Verzeichnis /etc/udev/rules.d/ sollte sich jetzt eine Datei namens 10-wacom.rules befinden.
Dies solltet ihr überprüfen, falls dem nicht so ist, erstellt diese Datei und fügt einfach dieses Zeile ein:

KERNEL==”event*”, SYSFS{idVendor}==”056a”, NAME=”input/%k”, SYMLINK=”input/wacom”

So, das einzige was wir jetzt noch machen müssen ist die Xorg anpassen.

Unter ServerLayout kommt:
InputDevice “cursor” “SendCoreEvents”
InputDevice “stylus” “SendCoreEvents”
InputDevice “eraser” “SendCoreEvents”

Und irgendwo weiter unten einfach:
Section “InputDevice”
Driver        “wacom”
Identifier    “stylus”
Option        “Device”       “/dev/input/wacom”
Option        “Type”         “stylus”
Option        “Button1″      “1″    #this line is important
Option        “Button2″      “1″    #this line is important
Option        “USB”          “on”                 # USB ONLY
Option        “Mode”         “RAbsolute”           # other option: “Absolute”
Option        “Vendor”       “WACOM”
Option        “tilt”         “on”  # add this if your tablet supports tilt
Option        “Threshold”    “5″   # the official linuxwacom howto advises this line
EndSection
Section “InputDevice”
Driver        “wacom”
Identifier    “eraser”
Option        “Device”       “/dev/input/wacom”
Option        “Button1″      “1″    #this line is important
Option        “Button2″      “1″    #this line is important
Option        “Type”         “eraser”
Option        “USB”          “on”                  # USB ONLY
Option        “Mode”         “Absolute”            # other option: “Absolute”
Option        “Vendor”       “WACOM”
Option        “tilt”         “on”  # add this if your tablet supports tilt
Option        “Threshold”    “5″   # the official linuxwacom howto advises this line
EndSection
Section “InputDevice”
Driver        “wacom”
Identifier    “cursor”
Option        “Device”       “/dev/input/wacom”
Option        “Type”         “cursor”
Option        “USB”          “on”                  # USB ONLY
Option        “Mode”         “Absolute”            # other option: “Absolute”
Option        “Vendor”       “WACOM”
EndSection

einfügen.

Xserver neustarten und fertig.

Probleme:

1. Udev sollte installiert sein (pacman -S udev)
2. Die neuen Linuxwacom Treiber funktionieren nicht richtig mit dem Bamboo. Der Cursor springt teilweise hin und her, oder auch Button1&2 lassen sich nicht verwenden.

Comments are closed.