Graphik Tablet Huion wh1409

Hast Du Probleme mit Hardware, die durch die anderen Foren nicht abgedeckt werden? Schau auch in den "Tipps und Tricks"-Bereich.
wolf49
Beiträge: 233
Registriert: 27.12.2018 15:41:22

Graphik Tablet Huion wh1409

Beitrag von wolf49 » 22.02.2022 15:44:31

mit Debian 10 funktioniert das Tablet einwandfrei. mit Debian 11 bekomme ich es nicht zum funktionieren.

Code: Alles auswählen

root@k4l:/home/wolf/scripts# ./Huion_WH1409.sh
Cannot find device 'TABLET Pen Tablet Pen stylus'.
Cannot find device 'TABLET Pen Tablet Pen stylus'.
Cannot find device 'TABLET Pen Tablet Pen stylus'.
Cannot find device 'TABLET Pen Tablet Pen stylus'.
Cannot find device 'TABLET Pen Tablet Pen stylus'.
Cannot find device 'TABLET Pen Tablet Pen stylus'.
Cannot find device 'TABLET Pen Tablet Pad pad'.
Cannot find device 'TABLET Pen Tablet Pad pad'.
Cannot find device 'TABLET Pen Tablet Pad pad'.
Cannot find device 'TABLET Pen Tablet Pad pad'.
Cannot find device 'TABLET Pen Tablet Pad pad'.
Cannot find device 'TABLET Pen Tablet Pad pad'.
Cannot find device 'TABLET Pen Tablet Pad pad'.
Cannot find device 'TABLET Pen Tablet Pad pad'.
Cannot find device 'TABLET Pen Tablet Pad pad'.
unable to find device TABLET Pen Tablet Mouse
Drücken Sie eine Taste zum Fortfahren...

root@k4l:/# xsetwacom --list
PenTablet  stylus                       id: 8   type: STYLUS    
PenTablet  Pad pad                      id: 9   type: PAD       
PenTablet  Touch Strip pad              id: 10  type: PAD       
root@k4l:/# dkms status
digimend, 10, 5.10.0-11-amd64, x86_64: installed
root@k4l:/# xinput --list
⎡ Virtual core pointer                          id=2    [master pointer  (3)]
⎜   ↳ Virtual core XTEST pointer                id=4    [slave  pointer  (2)]
⎜   ↳ PenTablet  stylus                         id=8    [slave  pointer  (2)]
⎜   ↳ PenTablet  Pad pad                        id=9    [slave  pointer  (2)]
⎜   ↳ PenTablet  Touch Strip pad                id=10   [slave  pointer  (2)]
⎜   ↳ Microsoft Microsoft Basic Optical Mouse   id=11   [slave  pointer  (2)]
⎣ Virtual core keyboard                         id=3    [master keyboard (2)]
    ↳ Virtual core XTEST keyboard               id=5    [slave  keyboard (3)]
    ↳ Power Button                              id=6    [slave  keyboard (3)]
    ↳ Power Button                              id=7    [slave  keyboard (3)]
    ↳ AT Translated Set 2 keyboard              id=12   [slave  keyboard (3)]
root@k4l:/# 
was kann man da machen ?

eggy
Beiträge: 3331
Registriert: 10.05.2008 11:23:50

Re: Graphik Tablet Huion wh1409

Beitrag von eggy » 22.02.2022 16:03:49

Das Script posten, die Glaskugel ist kaputt.

(geraten: richtiges Gerät/ID eintragen, bzw mit Anführungszeichen versehen, da scheint auch mehr als ein Leerzeichen im Namen zu sein.)

wolf49
Beiträge: 233
Registriert: 27.12.2018 15:41:22

Re: Graphik Tablet Huion wh1409

Beitrag von wolf49 » 22.02.2022 17:14:54

hier das script Huion_WH1409.sh

Code: Alles auswählen

#! /bin/bash  
# Setup HUION WH1409, after bridged to wacom driver with Digimend Kernel module.  
# License: CC-0/Public-Domain license  
# author: deevad  

# Tablet definition  
tabletstylus="TABLET Pen Tablet Pen stylus"  
tabletpad="TABLET Pen Tablet Pad pad"  

# Reset  
xsetwacom --set "$tabletstylus" ResetArea  
xsetwacom --set "$tabletstylus" RawSample 4  

# Mapping  
# get maximum size geometry with:  
# xsetwacom --get "$tabletstylus" Area  
# 0 0 55200 34500  
tabletX=55200  
tabletY=34500  
# screen size:  
screenX=1920  
screenY=1080  
# map to good screen (dual nvidia)  
xsetwacom --set "$tabletstylus" MapToOutput "HEAD-0"  
# setup ratio :  
newtabletY=$(( $screenY * $tabletX / $screenX ))  
xsetwacom --set "$tabletstylus" Area 0 0 "$tabletX" "$newtabletY"  


# Buttons  
# =======  
xsetwacom --set "$tabletstylus" Button 2 2   
xsetwacom --set "$tabletstylus" Button 3 3  
# ---------  
# | 1 | 2 |  
# |---|---|  
# | 3 | 8 |  
# |=======|  
# | 9 |10 |  
# |---|---|  
# |11 |12 |  
# |=======|  
# |13 | ? |  
# |---|---|  
# | ? | ? |  
# |=======|  
xsetwacom --set "$tabletpad" Button 1 "key Control_L" # color picker on ring  
xsetwacom --set "$tabletpad" Button 2 "key Shift_L" # resize brush  
xsetwacom --set "$tabletpad" Button 3 "key KP_Divide" # switch /  
xsetwacom --set "$tabletpad" Button 8 "key e" # eraser  
xsetwacom --set "$tabletpad" Button 9 "key z"  # undo  
xsetwacom --set "$tabletpad" Button 10 "key y"  
xsetwacom --set "$tabletpad" Button 11 "key tab"  
xsetwacom --set "$tabletpad" Button 12 "key r"  
xsetwacom --set "$tabletpad" Button 13 "key m"  


# Xinput option  
# =============  
# for the list:  
# xinput --list  

# xinput list-props 'TABLET Pen Tablet Mouse'  
xinput set-prop 'TABLET Pen Tablet Mouse' "Evdev Middle Button Emulation" 0  
# alternate way to map to a single screen  
# execute "xrander" in a terminal to get the screen name ( DVI-D-0 in this example )  
# xinput set-prop 'TABLET Pen Tablet Pen stylus' DVI-D-0


eggy
Beiträge: 3331
Registriert: 10.05.2008 11:23:50

Re: Graphik Tablet Huion wh1409

Beitrag von eggy » 22.02.2022 17:19:38

Vergleich mal die Namen in Zeile 8 etc mit dem was die Ausgabe oben anzeigt.

wolf49
Beiträge: 233
Registriert: 27.12.2018 15:41:22

Re: Graphik Tablet Huion wh1409

Beitrag von wolf49 » 22.02.2022 17:33:46

die Ausgabe des scripts stimmt mit den Einträgen im script unter Tablet definitionen überein und sind korrekt.
was nun ?

eggy
Beiträge: 3331
Registriert: 10.05.2008 11:23:50

Re: Graphik Tablet Huion wh1409

Beitrag von eggy » 22.02.2022 17:35:26

"TABLET Pen Tablet Pen stylus" vs "PenTablet stylus" .. fuzzi logic ist wieder in?

wolf49
Beiträge: 233
Registriert: 27.12.2018 15:41:22

Re: Graphik Tablet Huion wh1409

Beitrag von wolf49 » 22.02.2022 17:57:07

"PenTablet stylus" kommt im script und Ausgabe nicht vor. das steht nur bei xinput --list ???

Benutzeravatar
Tintom
Moderator
Beiträge: 3033
Registriert: 14.04.2006 20:55:15
Wohnort: Göttingen

Re: Graphik Tablet Huion wh1409

Beitrag von Tintom » 22.02.2022 18:05:31

wolf49 hat geschrieben: ↑ zum Beitrag ↑
22.02.2022 17:57:07
"PenTablet stylus" kommt im script und Ausgabe nicht vor. das steht nur bei xinput --list ???
Jetzt hast du den Fehler gefunden! :)

wolf49
Beiträge: 233
Registriert: 27.12.2018 15:41:22

Re: Graphik Tablet Huion wh1409

Beitrag von wolf49 » 22.02.2022 18:45:06

die Änderung im script des Authors bei den Tablet definition auf die xinit Namen ändert nichts an der Fehlerausgabe des scripts. was nun ????

Benutzeravatar
hikaru
Moderator
Beiträge: 13593
Registriert: 09.04.2008 12:48:59

Re: Graphik Tablet Huion wh1409

Beitrag von hikaru » 22.02.2022 18:51:05

wolf49 hat geschrieben: ↑ zum Beitrag ↑
22.02.2022 18:45:06
was nun ????
In Anbetracht des bisherigen Threadverlaufs:
Beweise für die gemachte Aussage liefern! ;)

wolf49
Beiträge: 233
Registriert: 27.12.2018 15:41:22

Re: Graphik Tablet Huion wh1409

Beitrag von wolf49 » 22.02.2022 19:05:18

Beweis:

Code: Alles auswählen

wolf@k4l:~/scripts$ ./Huion_WH1409.sh
Cannot find device 'PenTablet stylus'.
Cannot find device 'PenTablet stylus'.
Cannot find device 'PenTablet stylus'.
Cannot find device 'PenTablet stylus'.
Cannot find device 'PenTablet stylus'.
Cannot find device 'PenTablet stylus'.
Cannot find device 'PenTablet Pad pad'.
Cannot find device 'PenTablet Pad pad'.
Cannot find device 'PenTablet Pad pad'.
Cannot find device 'PenTablet Pad pad'.
Cannot find device 'PenTablet Pad pad'.
Cannot find device 'PenTablet Pad pad'.
Cannot find device 'PenTablet Pad pad'.
Cannot find device 'PenTablet Pad pad'.
Cannot find device 'PenTablet Pad pad'.
unable to find device TABLET Pen Tablet Mouse
Drücken Sie eine Taste zum Fortfahren...

Benutzeravatar
Tintom
Moderator
Beiträge: 3033
Registriert: 14.04.2006 20:55:15
Wohnort: Göttingen

Re: Graphik Tablet Huion wh1409

Beitrag von Tintom » 22.02.2022 19:16:48

Vergleiche mal:

Code: Alles auswählen

PenTablet  Pad pad
(xinput)
und

Code: Alles auswählen

PenTablet Pad pad
(Skript)

wolf49
Beiträge: 233
Registriert: 27.12.2018 15:41:22

Re: Graphik Tablet Huion wh1409

Beitrag von wolf49 » 22.02.2022 19:26:12

Code: Alles auswählen

wolf@k4l:~/scripts$ ./Huion_WH1409.sh
Unable to find output 'HEAD-0'. Output may not be connected.
unable to find device TABLET Pen Tablet Mouse
wolf@k4l:~/scripts$ 
???

Benutzeravatar
Tintom
Moderator
Beiträge: 3033
Registriert: 14.04.2006 20:55:15
Wohnort: Göttingen

Re: Graphik Tablet Huion wh1409

Beitrag von Tintom » 22.02.2022 19:59:41

Unable to find output 'HEAD-0'. Output may not be connected.
Zeig' mal die Ausgabe von xrandr
unable to find device TABLET Pen Tablet Mouse
Es ist kein Gerät mit diesem Namen angeschlossen.

Nur zum Verständnis: Arbeitest du dieses Tutorial ab? Den Hinweis des Autors ganz zu Beginn hast du gelesen? Das Paket Debiandigimend-dkms kennst du?

eggy
Beiträge: 3331
Registriert: 10.05.2008 11:23:50

Re: Graphik Tablet Huion wh1409

Beitrag von eggy » 22.02.2022 20:26:39

wolf49 hat geschrieben: ↑ zum Beitrag ↑
22.02.2022 19:05:18
Beweis:
Dein Beweis hat ein Leerzeichen. Die Ausgabe von xinput zwei.

wolf49
Beiträge: 233
Registriert: 27.12.2018 15:41:22

Re: Graphik Tablet Huion wh1409

Beitrag von wolf49 » 22.02.2022 20:41:12

dieses Tutorial habe ich verwendet und digimed-dkms, aber nicht den source code.

Code: Alles auswählen

root@k4l:/# xrandr
Screen 0: minimum 320 x 200, current 3840 x 1200, maximum 16384 x 16384
DVI-D-1 connected primary 1920x1080+1920+0 (normal left inverted right x axis y axis) 521mm x 293mm
   1920x1080     60.00*+  59.96    59.93  
   1920x1200     59.95  
   1600x1200     65.00    60.00  
   1680x1050     69.88    59.95    59.88  
   1600x1024     60.17  
   1400x1050     74.76    70.00    59.98    59.95  
   1600x900      59.95    59.82  
   1280x1024     75.02    60.02  
   1440x900      74.98    59.89    59.90  
   1400x900      59.96    59.88  
   1280x960      60.00  
   1440x810      59.97  
   1368x768      59.88    59.85  
   1360x768      60.02    59.80    59.96  
   1280x800      59.99    59.97    59.81    59.91  
   1152x864      75.00    75.00    70.00    60.00  
   1280x720      60.00    59.99    59.86    59.74  
   1024x768      75.05    60.04    75.03    70.07    60.00  
   960x720       75.00    60.00  
   928x696       75.00    60.05  
   896x672       75.05    60.01  
   1024x576      59.95    59.96    59.90    59.82  
   960x600       59.93    60.00  
   832x624       74.55  
   960x540       59.96    59.99    59.63    59.82  
   800x600       75.00    70.00    65.00    60.00    72.19    75.00    60.32    56.25  
   840x525       74.96    69.88    60.01    59.88  
   864x486       59.92    59.57  
   800x512       60.17  
   700x525       74.76    70.06    59.98  
   800x450       59.95    59.82  
   640x512       75.02    60.02  
   720x450       59.89  
   700x450       59.96    59.88  
   640x480       60.00    75.00    72.81    75.00    66.67    59.94  
   720x405       59.51    58.99  
   720x400       70.08  
   684x384       59.88    59.85  
   680x384       59.80    59.96  
   640x400       59.88    59.98  
   576x432       75.00    75.00    70.00    60.06  
   640x360       59.86    59.83    59.84    59.32  
   512x384       75.03    70.07    60.00  
   512x288       60.00    59.92  
   416x312       74.66  
   480x270       59.63    59.82  
   400x300       72.19    75.12    60.32    56.34  
   432x243       59.92    59.57  
   320x240       72.81    75.00    60.05  
   360x202       59.51    59.13  
   320x180       59.84    59.32  
HDMI-1 connected 1920x1200+0+0 (normal left inverted right x axis y axis) 520mm x 320mm
   1920x1200     59.95*+
   1920x1080     59.96    60.00    59.94    59.93  
   1920x1080i    60.00    50.00    59.94  
   1600x1200     65.00    60.00  
   1680x1050     69.88    59.95    59.88  
   1600x1024     60.17  
   1400x1050     74.76    70.00    59.98  
   1600x900      59.94    59.95    59.82  
   1280x1024     75.02    60.02  
   1440x900      59.89  
   1400x900      59.96    59.88  
   1280x960      60.00  
   1440x810      59.97  
   1368x768      59.88    59.85  
   1360x768      59.80    59.96  
   1280x800      59.99    59.97    59.81    59.91  
   1152x864      75.00    75.00    70.00    60.00  
   1280x720      60.00    59.99    59.86    60.00    50.00    59.94    59.74  
   1024x768      75.05    60.04    75.03    70.07    60.00  
   960x720       75.00    60.00  
   928x696       75.00    60.05  
   896x672       75.05    60.01  
   1024x576      59.95    59.96    59.90    59.82  
   960x600       59.93    60.00  
   832x624       74.55  
   960x540       59.96    59.99    59.63    59.82  
   800x600       75.00    70.00    65.00    60.00    72.19    75.00    60.32    56.25  
   840x525       74.96    69.88    60.01    59.88  
   864x486       59.92    59.57  
   720x576       50.00  
   800x512       60.17  
   700x525       74.76    70.06    59.98  
   800x450       59.95    59.82  
   720x480       60.00    59.94  
   640x512       75.02    60.02  
   720x450       59.89  
   700x450       59.96    59.88  
   640x480       60.00    75.00    72.81    75.00    60.00    59.94  
   720x405       59.51    58.99  
   720x400       70.08  
   684x384       59.88    59.85  
   680x384       59.80    59.96  
   640x400       59.88    59.98  
   576x432       75.00    75.00    70.00    60.06  
   640x360       59.86    59.83    59.84    59.32  
   512x384       75.03    70.07    60.00  
   512x288       60.00    59.92  
   416x312       74.66  
   480x270       59.63    59.82  
   400x300       72.19    75.12    60.32    56.34  
   432x243       59.92    59.57  
   320x240       72.81    75.00    60.05  
   360x202       59.51    59.13  
   320x180       59.84    59.32  
VGA-1 disconnected (normal left inverted right x axis y axis)
root@k4l:/#

Benutzeravatar
Tintom
Moderator
Beiträge: 3033
Registriert: 14.04.2006 20:55:15
Wohnort: Göttingen

Re: Graphik Tablet Huion wh1409

Beitrag von Tintom » 22.02.2022 23:56:37

Unable to find output 'HEAD-0'. Output may not be connected.
wolf49 hat geschrieben: ↑ zum Beitrag ↑
22.02.2022 20:41:12

Code: Alles auswählen

root@k4l:/# xrandr
Screen 0: minimum 320 x 200, current 3840 x 1200, maximum 16384 x 16384
DVI-D-1 connected primary 1920x1080+1920+0 (normal left inverted right x axis y axis) 521mm x 293mm
<...>
HDMI-1 connected 1920x1200+0+0 (normal left inverted right x axis y axis) 520mm x 320mm
<...>
VGA-1 disconnected (normal left inverted right x axis y axis)
Der Ausgang HEAD-0 existiert nicht, dürfte aber (lt. man xsetwacom) ein Hinweis auf das prop. Nvidia-Modul sein. Wie auch immer, du ersetzt im Skript HEAD-0 durch deinen bevorzugten Anschluss auf dem du das Tablet nutzen willst, also entweder DVI-D-1, HDMI-1 oder (falls verbunden) VGA-1.

wolf49
Beiträge: 233
Registriert: 27.12.2018 15:41:22

Re: Graphik Tablet Huion wh1409

Beitrag von wolf49 » 23.02.2022 08:12:44

"DVI-D-1" wird akzeptiert, nächstes Problem:

Code: Alles auswählen

wolf@k4l:~/scripts$ ./Huion_WH1409.sh
unable to find device TABLET Pen Tablet Mouse
Drücken Sie eine Taste zum Fortfahren...
wolf@k4l:~/scripts$ 

Code: Alles auswählen

root@k4l:/# xinput list-props 'TABLET Pen Tablet Mouse'
unable to find device TABLET Pen Tablet Mouse
root@k4l:/# 

Code: Alles auswählen

root@k4l:/# xinput enable 'TABLET Pen Tablet Mouse'
unable to find device TABLET Pen Tablet Mouse
root@k4l:/# 

Code: Alles auswählen

root@k4l:/# xsetwacom list devices
PenTablet  stylus                       id: 8   type: STYLUS    
PenTablet  Pad pad                      id: 9   type: PAD       
PenTablet  Touch Strip pad              id: 10  type: PAD       
root@k4l:/# 

eggy
Beiträge: 3331
Registriert: 10.05.2008 11:23:50

Re: Graphik Tablet Huion wh1409

Beitrag von eggy » 23.02.2022 13:07:34

Wird vermutlich an dem Treiber liegen.

wolf49
Beiträge: 233
Registriert: 27.12.2018 15:41:22

Re: Graphik Tablet Huion wh1409

Beitrag von wolf49 » 23.02.2022 20:39:09

mit Debian 10 (buster) funktioniert die Maus-Funktion mit dem wacom-Treiber

Benutzeravatar
Tintom
Moderator
Beiträge: 3033
Registriert: 14.04.2006 20:55:15
Wohnort: Göttingen

Re: Graphik Tablet Huion wh1409

Beitrag von Tintom » 23.02.2022 20:49:21

Dann wird es Zeit für einen Bugreport. Mit Debianreportbug kannst du das erledigen.

wolf49
Beiträge: 233
Registriert: 27.12.2018 15:41:22

Re: Graphik Tablet Huion wh1409

Beitrag von wolf49 » 26.02.2022 15:40:24

hallo. in /var/log/messages finde ich folgendes:

Code: Alles auswählen

Feb 26 11:28:05 k4l kernel: [    2.010285] usb 5-1.5: New USB device found, idVendor=256c, idProduct=006e, bcdDevice= 0.00
Feb 26 11:28:05 k4l kernel: [    2.010287] usb 5-1.5: New USB device strings: Mfr=5, Product=6, SerialNumber=0
Feb 26 11:28:05 k4l kernel: [    2.010288] usb 5-1.5: Product: PenTablet 
Feb 26 11:28:05 k4l kernel: [    2.017218] hid: raw HID events driver (C) Jiri Kosina
Feb 26 11:28:05 k4l kernel: [    2.033142] usbcore: registered new interface driver usbhid
Feb 26 11:28:05 k4l kernel: [    2.033143] usbhid: USB HID core driver
Feb 26 11:28:05 k4l kernel: [    2.034498] input: PenTablet  as /devices/pci0000:00/0000:00:1a.0/usb5/5-1/5-1.5/5-1.5:1.0/0003:256C:006E.0001/input/input3
Feb 26 11:28:05 k4l kernel: [    2.034562] input: PenTablet  Mouse as /devices/pci0000:00/0000:00:1a.0/usb5/5-1/5-1.5/5-1.5:1.0/0003:256C:006E.0001/input/input4
Feb 26 11:28:05 k4l kernel: [    2.034615] hid-generic 0003:256C:006E.0001: input,hidraw0: USB HID v1.11 Mouse [PenTablet ] on usb-0000:00:1a.0-1.5/input0
Feb 26 11:28:05 k4l kernel: [    2.038583] input: PenTablet  Mouse as /devices/pci0000:00/0000:00:1a.0/usb5/5-1/5-1.5/5-1.5:1.1/0003:256C:006E.0002/input/input5
Feb 26 11:28:05 k4l kernel: [    2.038705] input: PenTablet  as /devices/pci0000:00/0000:00:1a.0/usb5/5-1/5-1.5/5-1.5:1.1/0003:256C:006E.0002/input/input6
Feb 26 11:28:05 k4l kernel: [    2.038996] hid-generic 0003:256C:006E.0002: input,hiddev0,hidraw1: USB HID v1.11 Mouse [PenTablet ] on usb-0000:00:1a.0-1.5/input1
Feb 26 11:28:05 k4l kernel: [    2.039143] input: PenTablet  Keyboard as /devices/pci0000:00/0000:00:1a.0/usb5/5-1/5-1.5/5-1.5:1.2/0003:256C:006E.0003/input/input7
Feb 26 11:28:05 k4l kernel: [    2.089258] usb 5-1.6: new low-speed USB device number 4 using ehci-pci
Feb 26 11:28:05 k4l kernel: [    2.097311] input: PenTablet  Consumer Control as /devices/pci0000:00/0000:00:1a.0/usb5/5-1/5-1.5/5-1.5:1.2/0003:256C:006E.0003/input/input8
Feb 26 11:28:05 k4l kernel: [    2.097339] input: PenTablet  System Control as /devices/pci0000:00/0000:00:1a.0/usb5/5-1/5-1.5/5-1.5:1.2/0003:256C:006E.0003/input/input9
Feb 26 11:28:05 k4l kernel: [    2.097392] hid-generic 0003:256C:006E.0003: input,hidraw2: USB HID v1.0b Keyboard [PenTablet ] on usb-0000:00:1a.0-1.5/input2
die PenTablet Mouse wird also erkannt und deshalb muss es eine Möglichkeit geben diese irgendwo einzutragen so das sie auch ohne oder mit das Huion-WH1409 script funktioniert wie mit Debian 10. trotz tagelanger Suche kann ich nicht finden wie und wo was eingetragen werden muss. wer weiß es ?

Benutzeravatar
Tintom
Moderator
Beiträge: 3033
Registriert: 14.04.2006 20:55:15
Wohnort: Göttingen

Re: Graphik Tablet Huion wh1409

Beitrag von Tintom » 26.02.2022 22:31:06

wolf49 hat geschrieben: ↑ zum Beitrag ↑
26.02.2022 15:40:24
trotz tagelanger Suche kann ich nicht finden wie und wo was eingetragen werden muss. wer weiß es ?
Zeig' mal den Inhalt der Datei ~/.local/share/xorg/Xorg.0.log (bitte nach nopaste!)

wolf49
Beiträge: 233
Registriert: 27.12.2018 15:41:22

Re: Graphik Tablet Huion wh1409

Beitrag von wolf49 » 27.02.2022 08:39:07

Zeig' mal den Inhalt der Datei ~/.local/share/xorg/Xorg.0.log (bitte nach nopaste!)
diese Datei existiert nicht, aber es gibt /var/log/Xorg.0.log. hier der Teil der sich auf das Tablet bezieht:

Code: Alles auswählen

[    37.576] (II) Using input driver 'wacom' for 'PenTablet '
[    37.576] (**) PenTablet : always reports core events
[    37.576] (**) Option "Device" "/dev/input/event3"
[    37.634] (II) PenTablet : type not specified, assuming 'stylus'.
[    37.634] (II) PenTablet : other types will be automatically added.
[    37.634] (--) PenTablet  stylus: using pressure threshold of 851 for button 1
[    37.634] (--) PenTablet  stylus: maxX=55200 maxY=34500 maxZ=2047 resX=157000 resY=157000  tilt=enabled
[    37.634] (II) PenTablet  stylus: hotplugging dependent devices.
[    37.634] (EE) PenTablet  stylus: Invalid type 'eraser' for this device.
[    37.634] (EE) PenTablet  stylus: Invalid type 'cursor' for this device.
[    37.634] (EE) PenTablet  stylus: Invalid type 'touch' for this device.
[    37.634] (EE) PenTablet  stylus: Invalid type 'pad' for this device.
[    37.634] (II) PenTablet  stylus: hotplugging completed.
[    37.666] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5:1.0/0003:256C:006E.0001/input/input12/event3"
[    37.666] (II) XINPUT: Adding extended input device "PenTablet  stylus" (type: STYLUS, id 8)
[    37.666] (**) PenTablet  stylus: (accel) keeping acceleration scheme 1
[    37.666] (**) PenTablet  stylus: (accel) acceleration profile 0
[    37.666] (**) PenTablet  stylus: (accel) acceleration factor: 2.000
[    37.666] (**) PenTablet  stylus: (accel) acceleration threshold: 4
[    37.727] (II) config/udev: Adding input device PenTablet  (/dev/input/mouse0)
[    37.727] (II) No input driver specified, ignoring this device.
[    37.727] (II) This device may have been added with another device file.
[    37.728] (II) config/udev: Adding input device PenTablet  Pad (/dev/input/event4)
[    37.728] (**) PenTablet  Pad: Applying InputClass "libinput tablet catchall"
[    37.728] (**) PenTablet  Pad: Applying InputClass "Huion tablets with Wacom driver"
[    37.728] (**) PenTablet  Pad: Applying InputClass "Huion tablets with Wacom driver"
[    37.728] (**) PenTablet  Pad: Applying InputClass "Huion tablets with Wacom driver"
[    37.728] (II) Using input driver 'wacom' for 'PenTablet  Pad'
[    37.728] (**) PenTablet  Pad: always reports core events
[    37.728] (**) Option "Device" "/dev/input/event4"
[    37.728] (EE) PenTablet  Pad: Invalid type 'stylus' for this device.
[    37.728] (EE) PenTablet  Pad: Invalid type 'eraser' for this device.
[    37.728] (EE) PenTablet  Pad: Invalid type 'cursor' for this device.
[    37.728] (EE) PenTablet  Pad: Invalid type 'touch' for this device.
[    37.728] (II) PenTablet  Pad: type not specified, assuming 'pad'.
[    37.728] (II) PenTablet  Pad: other types will be automatically added.
[    37.728] (II) PenTablet  Pad pad: hotplugging dependent devices.
[    37.728] (EE) PenTablet  Pad pad: Invalid type 'stylus' for this device.
[    37.728] (EE) PenTablet  Pad pad: Invalid type 'eraser' for this device.
[    37.728] (EE) PenTablet  Pad pad: Invalid type 'cursor' for this device.
[    37.728] (EE) PenTablet  Pad pad: Invalid type 'touch' for this device.
[    37.728] (II) PenTablet  Pad pad: hotplugging completed.
[    37.758] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5:1.0/0003:256C:006E.0001/input/input13/event4"
[    37.758] (II) XINPUT: Adding extended input device "PenTablet  Pad pad" (type: PAD, id 9)
[    37.758] (**) PenTablet  Pad pad: (accel) keeping acceleration scheme 1
[    37.758] (**) PenTablet  Pad pad: (accel) acceleration profile 0
[    37.758] (**) PenTablet  Pad pad: (accel) acceleration factor: 2.000
[    37.758] (**) PenTablet  Pad pad: (accel) acceleration threshold: 4
[    37.759] (II) config/udev: Adding input device PenTablet  Pad (/dev/input/js0)
[    37.759] (II) No input driver specified, ignoring this device.
[    37.759] (II) This device may have been added with another device file.
[    37.760] (II) config/udev: Adding input device PenTablet  Touch Strip (/dev/input/event12)
[    37.760] (**) PenTablet  Touch Strip: Applying InputClass "libinput tablet catchall"
[    37.760] (**) PenTablet  Touch Strip: Applying InputClass "Huion tablets with Wacom driver"
[    37.760] (**) PenTablet  Touch Strip: Applying InputClass "Tablet low-res touch controls with Wacom driver"
[    37.760] (**) PenTablet  Touch Strip: Applying InputClass "Huion tablets with Wacom driver"
[    37.760] (**) PenTablet  Touch Strip: Applying InputClass "Tablet low-res touch controls with Wacom driver"
[    37.760] (**) PenTablet  Touch Strip: Applying InputClass "Huion tablets with Wacom driver"
[    37.761] (**) PenTablet  Touch Strip: Applying InputClass "Tablet low-res touch controls with Wacom driver"
[    37.761] (II) Using input driver 'wacom' for 'PenTablet  Touch Strip'
[    37.761] (**) PenTablet  Touch Strip: always reports core events
[    37.761] (**) Option "Device" "/dev/input/event12"
[    37.761] (EE) PenTablet  Touch Strip: Invalid type 'stylus' for this device.
[    37.761] (EE) PenTablet  Touch Strip: Invalid type 'eraser' for this device.
[    37.761] (EE) PenTablet  Touch Strip: Invalid type 'cursor' for this device.
[    37.761] (EE) PenTablet  Touch Strip: Invalid type 'touch' for this device.
[    37.761] (II) PenTablet  Touch Strip: type not specified, assuming 'pad'.
[    37.761] (II) PenTablet  Touch Strip: other types will be automatically added.
[    37.761] (**) Option "Suppress" "0"
[    37.761] (II) PenTablet  Touch Strip pad: hotplugging dependent devices.
[    37.761] (EE) PenTablet  Touch Strip pad: Invalid type 'stylus' for this device.
[    37.761] (EE) PenTablet  Touch Strip pad: Invalid type 'eraser' for this device.
[    37.761] (EE) PenTablet  Touch Strip pad: Invalid type 'cursor' for this device.
[    37.761] (EE) PenTablet  Touch Strip pad: Invalid type 'touch' for this device.
[    37.761] (II) PenTablet  Touch Strip pad: hotplugging completed.
[    37.790] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5:1.0/0003:256C:006E.0001/input/input14/event12"
[    37.790] (II) XINPUT: Adding extended input device "PenTablet  Touch Strip pad" (type: PAD, id 10)
[    37.790] (**) PenTablet  Touch Strip pad: (accel) keeping acceleration scheme 1
[    37.790] (**) PenTablet  Touch Strip pad: (accel) acceleration profile 0
[    37.790] (**) PenTablet  Touch Strip pad: (accel) acceleration factor: 2.000
[    37.790] (**) PenTablet  Touch Strip pad: (accel) acceleration threshold: 4
[    37.791] (II) config/udev: Adding input device PenTablet  Touch Strip (/dev/input/js1)
[    37.791] (II) No input driver specified, ignoring this device.
[    37.791] (II) This device may have been added with another device file.
[    37.792] (II) config/udev: Adding input device PenTablet  Dial (/dev/input/event13)
[    37.792] (**) PenTablet  Dial: Applying InputClass "libinput keyboard catchall"
[    37.792] (**) PenTablet  Dial: Applying InputClass "libinput tablet catchall"
[    37.792] (II) Using input driver 'libinput' for 'PenTablet  Dial'
[    37.792] (**) PenTablet  Dial: always reports core events
[    37.792] (**) Option "Device" "/dev/input/event13"
[    37.792] (**) Option "_source" "server/udev"
[    37.795] (II) event13 - PenTablet  Dial: is tagged by udev as: Keyboard Tablet
[    37.904] (EE) event13 - PenTablet  Dial: libinput bug: missing tablet capabilities: pen btn-stylus resolution. Ignoring this device.
[    37.904] (II) event13 - PenTablet  Dial: device is a tablet
[    37.934] (II) event13 - failed to create input device '/dev/input/event13'.
[    37.934] (EE) libinput: PenTablet  Dial: Failed to create a device for /dev/input/event13
[    37.934] (EE) PreInit returned 2 for "PenTablet  Dial"
[    37.934] (II) UnloadModule: "libinput"
[    37.934] (II) config/udev: Adding input device PenTablet  Dial (/dev/input/js2)
[    37.934] (II) No input driver specified, ignoring this device.
[    37.934] (II) This device may have been added with another device file.
[    37.935] (II) config/udev: Adding input device PenTablet  Dial (/dev/input/mouse1)
[    37.935] (II) No input driver specified, ignoring this device.
[    37.935] (II) This device may have been added with another device file.
[    37.935] (II) config/udev: Adding input device PenTablet  Mouse (/dev/input/event5)
[    37.935] (**) PenTablet  Mouse: Applying InputClass "libinput pointer catchall"
[    37.935] (**) PenTablet  Mouse: Applying InputClass "libinput tablet catchall"
[    37.935] (**) PenTablet  Mouse: Applying InputClass "Huion tablets with Wacom driver"
[    37.935] (**) PenTablet  Mouse: Applying InputClass "Huion tablets with Wacom driver"
[    37.935] (**) PenTablet  Mouse: Applying InputClass "Huion tablets with Wacom driver"
[    37.935] (II) Using input driver 'wacom' for 'PenTablet  Mouse'
[    37.935] (**) PenTablet  Mouse: always reports core events
[    37.935] (**) Option "Device" "/dev/input/event5"
[    37.994] (EE) PenTablet  Mouse: Invalid type 'stylus' for this device.
[    37.994] (EE) PenTablet  Mouse: Invalid type 'eraser' for this device.
[    37.994] (EE) PenTablet  Mouse: Invalid type 'cursor' for this device.
[    37.994] (EE) PenTablet  Mouse: Invalid type 'touch' for this device.
[    37.994] (EE) PenTablet  Mouse: Invalid type 'pad' for this device.
[    37.994] (EE) PenTablet  Mouse: No type specified
[    38.034] (EE) PreInit returned 8 for "PenTablet  Mouse"
[    38.034] (II) UnloadModule: "wacom"
[    38.035] (II) config/udev: Adding input device PenTablet  Mouse (/dev/input/mouse2)
[    38.035] (II) No input driver specified, ignoring this device.
[    38.035] (II) This device may have been added with another device file.
[    38.036] (II) config/udev: Adding input device Microsoft Microsoft Basic Optical Mouse (/dev/input/event10)

Benutzeravatar
Tintom
Moderator
Beiträge: 3033
Registriert: 14.04.2006 20:55:15
Wohnort: Göttingen

Re: Graphik Tablet Huion wh1409

Beitrag von Tintom » 27.02.2022 10:27:14

diese Datei existiert nicht, aber es gibt /var/log/Xorg.0.log.
Das wundert mich. Meldest du dich als root beim Login an?

Code: Alles auswählen

[    37.935] (**) PenTablet  Mouse: Applying InputClass "Huion tablets with Wacom driver"
[    37.935] (**) PenTablet  Mouse: Applying InputClass "Huion tablets with Wacom driver"
[    37.935] (**) PenTablet  Mouse: Applying InputClass "Huion tablets with Wacom driver"
Du hast bei dir eine Konfigurationsdatei im System, die krampfhaft versucht, alles, was sich im System mit "Huion" anmeldet mit dem wacom-Modul von Xorg zu betreiben. Das klappt soweit anscheinend für Tablet, Stylus, etc, aber bei der Maus klappt das nicht:

Code: Alles auswählen

[    38.034] (EE) PreInit returned 8 for "PenTablet  Mouse"
[    38.034] (II) UnloadModule: "wacom"
Die Maus muss also mit einem anderen Xorg-Modul betrieben werden.
Daneben deutet

Code: Alles auswählen

[    37.761] (**) Option "Suppress" "0"
darauf hin, dass scheinbar (noch?) eine Konfigurationsdatei für den Xserver existiert.

Ich würde sämtliche Konfigurationsdateien für den Xserver löschen (vorher sicherheitshalber an einen anderen Ort kopieren) und den Xserver selbst die einzelnen Geräte konfigurieren lassen. Anschließend werden nur die Geräte von Hand konfiguriert, bei denen die Autokonfiguration fehlschlägt.

Antworten