Einen guten Abend,
entweder, udev mag mich nicht, oder ich bin betriebsblind oder ich habe etwas Grundlegendes beim Schreiben von udev-Regeln nicht verstanden.

Ich hab hier ein Lenovo X230 und ich möchte andere (höhere) Standardwerte des Trackpoints haben (für speed, sensitivity, press_to_select).
Dazu habe ich ein udev-Regelset geschrieben, das mir genau das bewerkstelligen soll:
SUBSYSTEM=="input", ATTR{name}=="TPPS/2 IBM TrackPoint", WAIT_FOR="/sys/devices/platform/i8042/serio1/serio2/sensitivity", ATTR{sensitivity}="250"
SUBSYSTEM=="input", ATTR{name}=="TPPS/2 IBM TrackPoint", WAIT_FOR="/sys/devices/platform/i8042/serio1/serio2/speed", ATTR{speed}="120"
SUBSYSTEM=="input", ATTR{name}=="TPPS/2 IBM TrackPoint", WAIT_FOR="/sys/devices/platform/i8042/serio1/serio2/press_to_select", ATTR{press_to_select}="1"
Wenn ich das Trackpoint-Device mit
udevadm test /sys/class/input/mouse2
teste, wird mir diese udev-Regel als "read rules file" aufgeführt, sie sollte also angewandt werden.

Allerdings ist es egal, was ich versuche, die Regel kommt nicht zur Ausführung, selbst bei einem Neustart nicht. Ich hatte auch mal ein Skript drin (mit RUN+="/path/to/script"), das ebenfalls nicht ausgeführt wurde. Jenes Script sollte mir zu Testzwecken auch eine dummydatei in /etc erstellen, nichteinmal das hat funktioniert.

Kann mir jemand bei der Fehlersuche helfen? Danke!
udevadm info --attribute-walk --path /sys/class/input/mouse2
ergibt?
Ich zitiere das Wiki zu tmpfiles.d:
Note: This method may not work to set options in /sys since the systemd-tmpfiles-setup service may run before the appropriate device modules is loaded. In this case you could check whether the module has a parameter for the option you want to set with modinfo <module> and set this option with a config file in /etc/modprobe.d. Otherwise you will have to write a udev rule to set the appropriate attribute as soon as the device appears.
Wär also schon nicht schlecht, wenn wir eine udev-Lösung finden 🙂
tmpfiles.d habe ich schon versucht, das funktioniert leider nicht, weil, wenn ich mich recht erinnere, die entsprechenden Dateien zu dem Zeitpunkt noch nicht vorhanden sind, weil sie erst beim Start von X erscheinen und da ich mich auf der Konsole einlogge, erst nach dem tmpfiles.d-service.
[edit]
Das mit dem "erscheint erst mit X" ist übrigens Müll, die Dateien gibt's auch ohne X, ändert jedoch nichts am Problem, dass tmpfiles.d nicht funktioniert.
[/edit]

Im ThinkPad-Wiki wird auch udev vorgeschlagen, allerdings funktionieren deren Regeln für mich nicht.

Habe auch keine Option für die xorg.conf gefunden, in der ich das einstellen kann. Ich vermute, es wird nicht umsonst immer von udev etc. statt von der xorg.conf geredet.
# udevadm info --attribute-walk --path /sys/class/input/mouse2 

Udevadm info starts with the device specified by the devpath and then
walks up the chain of parent devices. It prints for every device
found, all possible attributes in the udev rules key format.
A rule to match, can be composed by the attributes of the device
and the attributes from one single parent device.

  looking at device '/devices/platform/i8042/serio1/serio2/input/input18/mouse2':
    KERNEL=="mouse2"
    SUBSYSTEM=="input"
    DRIVER==""

  looking at parent device '/devices/platform/i8042/serio1/serio2/input/input18':
    KERNELS=="input18"
    SUBSYSTEMS=="input"
    DRIVERS==""
    ATTRS{name}=="TPPS/2 IBM TrackPoint"
    ATTRS{phys}=="synaptics-pt/serio0/input0"
    ATTRS{uniq}==""
    ATTRS{properties}=="0"

  looking at parent device '/devices/platform/i8042/serio1/serio2':
    KERNELS=="serio2"
    SUBSYSTEMS=="serio"
    DRIVERS=="psmouse"
    ATTRS{resolution}=="200"
    ATTRS{rate}=="100"
    ATTRS{bind_mode}=="auto"
    ATTRS{resync_time}=="0"
    ATTRS{jenks}=="135"
    ATTRS{reach}=="10"
    ATTRS{speed}=="97"
    ATTRS{ztime}=="38"
    ATTRS{draghys}=="255"
    ATTRS{description}=="Synaptics pass-through"
    ATTRS{mindrag}=="20"
    ATTRS{ext_dev}=="1"
    ATTRS{skipback}=="0"
    ATTRS{upthresh}=="255"
    ATTRS{resetafter}=="5"
    ATTRS{thresh}=="8"
    ATTRS{protocol}=="TPPS/2"
    ATTRS{press_to_select}=="0"
    ATTRS{sensitivity}=="128"
    ATTRS{inertia}=="6"

  looking at parent device '/devices/platform/i8042/serio1':
    KERNELS=="serio1"
    SUBSYSTEMS=="serio"
    DRIVERS=="psmouse"
    ATTRS{resolution}=="200"
    ATTRS{rate}=="80"
    ATTRS{bind_mode}=="auto"
    ATTRS{resync_time}=="0"
    ATTRS{description}=="i8042 AUX port"
    ATTRS{resetafter}=="5"
    ATTRS{protocol}=="SynPS/2"

  looking at parent device '/devices/platform/i8042':
    KERNELS=="i8042"
    SUBSYSTEMS=="platform"
    DRIVERS=="i8042"

  looking at parent device '/devices/platform':
    KERNELS=="platform"
    SUBSYSTEMS==""
    DRIVERS==""
Versuche es mal mit ATTRS{name}=="TPPS/2 IBM TrackPoint"
hydro schriebVersuche es mal mit ATTRS{name}=="TPPS/2 IBM TrackPoint"
Hat leider nichts gebracht.
Ovion schrieb Allerdings ist es egal, was ich versuche, die Regel kommt nicht zur Ausführung, selbst bei einem Neustart nicht. Ich hatte auch mal ein Skript drin (mit RUN+="/path/to/script"), das ebenfalls nicht ausgeführt wurde. Jenes Script sollte mir zu Testzwecken auch eine dummydatei in /etc erstellen, nichteinmal das hat funktioniert.
Ich hatte mangels Trackpoint testweise mal
SUBSYSTEM=="input", ATTRS{name}=="SynPS/2 Synaptics TouchPad", RUN+="/usr/local/bin/udevtest.sh"
ausprobiert und udevadm test /sys/class/input/mouse0 liefert dann auch
run: '/usr/local/bin/udevtest.sh'
das Script wird also ausgeführt, mit ATTR{} funktioniert es nicht (allerdings passt ATTR bei einem anderen Device:)
# udevadm trigger --verbose --dry-run --subsystem-match=input --attr-match=name="SynPS/2 Synaptics TouchPad"
/sys/devices/platform/i8042/serio4/input/input6
Habe mir den Output von
udevadm test /sys/class/input/mouse1 #aktuell der Trackpoint
nochmal angesehen. Dabei habe ich folgendes entdeckt:
file '/sys/devices/platform/i8042/serio1/serio2/press_to_select' appeared after 0 loops
ATTR '/sys/devices/platform/i8042/serio1/serio2/input/input17/mouse1/press_to_select' writing '1' /etc/udev/rules.d/51-trackpoint.rules:3
error opening ATTR{/sys/devices/platform/i8042/serio1/serio2/input/input17/mouse1/press_to_select} for writing: No such file or directory
entsprechend für die anderen Files. Muss ich beim letzten Mal irgendwie übersehen haben. Das file in ATTR ist nicht das, das ich in meinem Skript benutze, ich nutze (funktionierend) das file, dass hier nach 0 loops erscheint.
run: '/etc/skripte/udev/configureTrackpoint'
wird aufgeführt, wenn ich das entsprechende Device teste. Allerdings wird das Skript nicht ausgeführt. Rufe ich es manuell auf, funktioniert es problemlos.
#udevadm trigger --verbose --dry-run --subsystem-match=input --attr-match=name="TPPS/2 IBM TrackPoint"
/sys/devices/platform/i8042/serio1/serio2/input/input17
Teste ich diesen Pfad (via udevadm test $Pfad) kommt kein run bzgl. meines Scripts, lediglich
run: 'kmod load input:b0011v0002p000Ae0000-e0,1,2,k110,111,112,r0,1,amlsfw'
falls diese Info der Sache irgendwie dienlich ist.
udevadm control --reload-rules
sorgt aber schon dafür, dass die Regeln neu geladen werden und in Folge dessen das Skript ausgeführt werden müsste, oder? Habe zwar zwischenzeitlich auch Neustarts gehabt, aber nicht, dass ich beim Testen in Trockenläufen festhänge.
Ich denke du musst deine udev-Regel wohl oder übel ausgehend von den Angaben in
udevadm info --attribute-walk --path /sys/devices/platform/i8042/serio1/serio2
formulieren (ohne "/" am Ende) , denn die Dateien, in die du schreiben willst, liegen unterhalb dieses Verzeichnisses. Soweit ich feststellen konnte, ändern sowohl udevadm test als auch udevadm trigger (ohne --dry-run) in passenden udev-Regeln angegebene Attribute, aber nur udevadm trigger führt auch Scripte aus.
Ok, hab die Regel umgestellt auf /sys/devices/platform/i8042/serio1 (serio1/serio2 ist jetzt nur noch serio1, weil ich zwischenzeitlich das Touchpad im BIOS abgeschaltet habe) (warum unterscheidet sich dieses Gerät eigentlich vom entsprechenden Gerät in /dev? Ist doch beides der Trackpoint, oder?)

Via
# udevadm trigger /sys/devices/platform/i8042/serio1
greift die Regel (Skript habe ich nicht mehr drin, regle alles über ATTR), die Werte des Trackpoint werden entsprechend hochgesetzt, nur beim Booten funktioniert sie leider noch nicht. Woran kann das liegen und in welche Richtung kann man da schauen?

die Regel:
SUBSYSTEM=="serio", DRIVER=="psmouse", ATTR{description}=="i8042 AUX port", WAIT_FOR="/sys/devices/platform/i8042/serio1/sensitivity", ATTR{sensitivity}="250"
SUBSYSTEM=="serio", DRIVER=="psmouse", ATTR{description}=="i8042 AUX port", WAIT_FOR="/sys/devices/platform/i8042/serio1/speed", ATTR{speed}="130"
SUBSYSTEM=="serio", DRIVER=="psmouse", ATTR{description}=="i8042 AUX port", WAIT_FOR="/sys/devices/platform/i8042/serio1/press_to_select", ATTR{press_to_select}="1"
# udevadm info --attribute-walk --path /sys/devices/platform/i8042/serio1

[...]

  looking at device '/devices/platform/i8042/serio1':
    KERNEL=="serio1"
    SUBSYSTEM=="serio"
    DRIVER=="psmouse"
    ATTR{resolution}=="200"
    ATTR{rate}=="100"
    ATTR{bind_mode}=="auto"
    ATTR{resync_time}=="0"
    ATTR{jenks}=="135"
    ATTR{reach}=="10"
    ATTR{speed}=="97"
    ATTR{ztime}=="38"
    ATTR{draghys}=="255"
    ATTR{description}=="i8042 AUX port"
    ATTR{mindrag}=="20"
    ATTR{ext_dev}=="1"
    ATTR{skipback}=="0"
    ATTR{upthresh}=="255"
    ATTR{resetafter}=="5"
    ATTR{thresh}=="8"
    ATTR{protocol}=="TPPS/2"
    ATTR{press_to_select}=="0"
    ATTR{sensitivity}=="128"
    ATTR{inertia}=="6"

  looking at parent device '/devices/platform/i8042':
    KERNELS=="i8042"
    SUBSYSTEMS=="platform"
    DRIVERS=="i8042"

  looking at parent device '/devices/platform':
    KERNELS=="platform"
    SUBSYSTEMS==""
    DRIVERS==""

Hm, du könntest udev mit dem Kernelparameter udev.log-priority=debug gesprächiger machen, siehe man systemd-udevd, und
dann journalctl -b /usr/bin/udevd betrachten. Hier steht dazu auch etwas. Ich würde die Pfade relativ angeben, also WAIT_FOR="sensitivity" u.s.w. und evtl. ACTION=="add" hinzufügen. Beim Aufruf von udevadm trigger kann man übrigens (laut manpage) keinen devpath angeben, es werden also (wie --verbose zeigen würde) sämtliche Devices neu getriggert. Hier hat jemand das Problem sehr unorthodox gelöst.
So, ich habe mich von dem Hack inspirieren lassen und bin zurück zu meiner ursprünglichen Idee, das ganze mit einem Service-file zu machen. Das funktoniert auch, wenn ich das file nicht an das "multi-user.target" binde, wie ich es bisher versucht habe, sondern ans basic.target.
Und dann auch nur, wenn ich ein Skript schreibe, dass die Zuweisung macht, die (voneinander unabhängigen) Befehle des Skripts als ExecStart nimmt systemd ebenfalls nicht. Das heißt, es funktioniert zwar momentan, allerdings muss es doch auch via udev irgendwie zum Funktionieren gebracht werden können. Ich bin da noch nicht gewillt, aufzugeben.

journalctl -b /usr/bin/udevd liefert nichts, was ich sinnvoll verwerten kann, ein grep -i nach "serio" liefert nichts, eines nach "track" liefert mir nur die Zeile, in der meine trackpoint-regel eingelesen wird, weil track dort im Dateinamen steht.
$ journalctl -b /usr/bin/udevd

-- Logs begin at Do 2013-03-21 17:34:57 CET, end at Sa 2013-05-04 14:51:55 CEST. --
Mai 04 14:51:28 Megatron systemd-udevd[233]: mknod '/dev/cpu/microcode' c10:184
Mai 04 14:51:28 Megatron systemd-udevd[233]: mknod '/dev/fuse' c10:229
Mai 04 14:51:28 Megatron systemd-udevd[233]: mknod '/dev/btrfs-control' c10:234
Mai 04 14:51:28 Megatron systemd-udevd[233]: mknod '/dev/loop-control' c10:237
Mai 04 14:51:28 Megatron systemd-udevd[233]: mknod '/dev/net/tun' c10:200
Mai 04 14:51:28 Megatron systemd-udevd[233]: mknod '/dev/ppp' c108:0
Mai 04 14:51:28 Megatron systemd-udevd[233]: mknod '/dev/uinput' c10:223
Mai 04 14:51:28 Megatron systemd-udevd[233]: mknod '/dev/mapper/control' c10:236
Mai 04 14:51:28 Megatron systemd-udevd[233]: mknod '/dev/vhost-net' c10:238
Mai 04 14:51:28 Megatron systemd-udevd[233]: mknod '/dev/snd/timer' c116:33
Mai 04 14:51:28 Megatron systemd-udevd[233]: mknod '/dev/snd/seq' c116:1
Mai 04 14:51:28 Megatron systemd-udevd[233]: ctrl=3 netlink=4
Mai 04 14:51:28 Megatron systemd-udevd[233]: === trie on-disk ===
Mai 04 14:51:28 Megatron systemd-udevd[233]: tool version:          202
Mai 04 14:51:28 Megatron systemd-udevd[233]: file size:         5615641 bytes
Mai 04 14:51:28 Megatron systemd-udevd[233]: header size             80 bytes
Mai 04 14:51:28 Megatron systemd-udevd[233]: load module index
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/10-dm.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/11-dm-lvm.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/13-dm-disk.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /etc/udev/rules.d/20-alpha-naming.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /etc/udev/rules.d/31-alpha-opening.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /etc/udev/rules.d/32-beta-opening.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /etc/udev/rules.d/33-gamma-opening.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /etc/udev/rules.d/34-delta-opening.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/40-hpet-permissions.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/42-usb-hid-pm.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/50-firmware.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /etc/udev/rules.d/50-trackpointrev.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/50-udev-default.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/60-cdrom_id.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/60-pcmcia.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/60-persistent-alsa.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/60-persistent-input.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/60-persistent-serial.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/60-persistent-storage-tape.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/60-persistent-storage.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/60-persistent-v4l.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/61-accelerometer.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/63-md-raid-arrays.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/64-btrfs.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/64-md-raid-assembly.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/65-kvm.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/69-cd-sensors.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: IMPORT found builtin 'usb_id --export %p', replacing /usr/lib/udev/rules.d/69-cd-sensors.rules:89
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/69-dm-lvm-metad.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/70-infrared.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/70-power-switch.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/70-uaccess.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/71-seat.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/73-seat-late.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/75-net-description.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/75-probe_mtd.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/75-tty-description.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/78-sound-card.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/80-drivers.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/80-net-name-slot.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/80-udisks.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/85-usbmuxd.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/90-alsa-restore.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/95-cd-devices.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/95-dm-notify.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/95-keyboard-force-release.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/95-keymap.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/95-udev-late.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/95-upower-battery-recall-dell.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/95-upower-battery-recall-fujitsu.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/95-upower-battery-recall-gateway.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/95-upower-battery-recall-ibm.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/95-upower-battery-recall-lenovo.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/95-upower-battery-recall-toshiba.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/95-upower-csr.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/95-upower-hid.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/95-upower-wup.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/97-bluetooth-hid2hci.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/99-laptop-mode.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /usr/lib/udev/rules.d/99-systemd.rules
Mai 04 14:51:28 Megatron systemd-udevd[233]: rules contain 49152 bytes tokens (4096 * 12 bytes), 23181 bytes strings
Mai 04 14:51:28 Megatron systemd-udevd[233]: 3805 strings (48688 bytes), 2566 de-duplicated (26747 bytes), 1240 trie nodes used
Mai 04 14:51:28 Megatron systemd-udevd[233]: set children_max to 16
Mai 04 14:51:28 Megatron systemd-udevd[233]: chmod '/dev/snd/seq' 0660
Mai 04 14:51:28 Megatron systemd-udevd[233]: chown '/dev/snd/seq' 0 92
Mai 04 14:51:28 Megatron systemd-udevd[233]: chmod '/dev/snd/timer' 0660
Mai 04 14:51:28 Megatron systemd-udevd[233]: chown '/dev/snd/timer' 0 92
Mai 04 14:51:28 Megatron systemd-udevd[233]: chmod '/dev/net/tun' 0666
Mai 04 14:51:28 Megatron systemd-udevd[233]: chmod '/dev/fuse' 0666
Mai 04 14:51:28 Megatron systemd-udevd[233]: validate module index
Mai 04 14:51:28 Megatron systemd-udevd[233]: seq 1355 queued, 'add' 'bus'
Mai 04 14:51:28 Megatron systemd-udevd[233]: seq 1355 forked new worker [235]
Mai 04 14:51:28 Megatron systemd-udevd[233]: seq 1356 queued, 'add' 'drivers'
Mai 04 14:51:28 Megatron systemd-udevd[233]: seq 1357 queued, 'add' 'drivers'
Mai 04 14:51:28 Megatron systemd-udevd[233]: seq 1358 queued, 'add' 'drivers'
Mai 04 14:51:28 Megatron systemd-udevd[233]: seq 1359 queued, 'add' 'drivers'
Mai 04 14:51:28 Megatron systemd-udevd[235]: seq 1355 running
Mai 04 14:51:28 Megatron systemd-udevd[233]: seq 1360 queued, 'add' 'drivers'
Mai 04 14:51:28 Megatron systemd-udevd[233]: seq 1361 queued, 'add' 'drivers'
Mai 04 14:51:28 Megatron systemd-udevd[233]: seq 1362 queued, 'add' 'drivers'
Mai 04 14:51:28 Megatron systemd-udevd[233]: seq 1364 queued, 'add' 'bus'
Mai 04 14:51:28 Megatron systemd-udevd[233]: seq 1365 forked new worker [237]
Mai 04 14:51:28 Megatron systemd-udevd[233]: passed 151 bytes to netlink monitor 0xdef5a0
Mai 04 14:51:28 Megatron systemd-udevd[235]: seq 1356 running
Mai 04 14:51:28 Megatron systemd-udevd[238]: seq 1357 processed with 0
Mai 04 14:51:28 Megatron systemd-udevd[233]: seq 1360 forked new worker [241]
Mai 04 14:51:28 Megatron systemd-udevd[243]: no db file to read /run/udev/data/+subsystem:drivers: No such file or directory
Mai 04 14:51:28 Megatron systemd-udevd[233]: seq 1357 done with 0
Mai 04 14:51:28 Megatron systemd-udevd[233]: seq 1370 queued, 'add' 'drivers'
Mai 04 14:51:28 Megatron systemd-udevd[237]: passed -1 bytes to netlink monitor 0xdf3a20
Mai 04 14:51:28 Megatron systemd-udevd[245]: seq 1366 running
Mai 04 14:51:28 Megatron systemd-udevd[233]: seq 1374 done with 0
Mai 04 14:51:28 Megatron systemd-udevd[236]: seq 1376 running
Mai 04 14:51:28 Megatron systemd-udevd[235]: no db file to read /run/udev/data/+subsystem:drivers: No such file or directory
Mai 04 14:51:28 Megatron systemd-udevd[239]: seq 1379 running
Mai 04 14:51:28 Megatron systemd-udevd[235]: no db file to read /run/udev/data/+drivers:langwell_gpio: No such file or directory
Mai 04 14:51:28 Megatron systemd-udevd[237]: seq 1383 processed with 0
Mai 04 14:51:28 Megatron systemd-udevd[236]: device 0xe141c0 has devpath '/bus/pci'
Mai 04 14:51:28 Megatron systemd-udevd[233]: seq 1389 queued, 'add' 'drivers'
Mai 04 14:51:28 Megatron systemd-udevd[236]: passed -1 bytes to netlink monitor 0xdf33c0
Mai 04 14:51:28 Megatron systemd-udevd[236]: no db file to read /run/udev/data/+drivers:i8042: No such file or directory
Mai 04 14:51:28 Megatron systemd-udevd[235]: seq 1395 running
Mai 04 14:51:28 Megatron systemd-udevd[233]: passed 131 bytes to netlink monitor 0xdef5a0
Mai 04 14:51:28 Megatron systemd-udevd[236]: device 0xe10d40 has devpath '/bus/pnp'
Mai 04 14:51:28 Megatron systemd-udevd[237]: no db file to read /run/udev/data/+subsystem:drivers: No such file or directory
Mai 04 14:51:28 Megatron systemd-udevd[236]: no db file to read /run/udev/data/+bus:sdio: No such file or directory
Mai 04 14:51:28 Megatron systemd-udevd[233]: seq 1405 done with 0
Mai 04 14:51:28 Megatron systemd-udevd[236]: passed -1 bytes to netlink monitor 0xdf33c0
Mai 04 14:51:28 Megatron systemd-udevd[233]: passed 147 bytes to netlink monitor 0xdef5a0
Mai 04 14:51:28 Megatron systemd-udevd[233]: seq 1412 done with 0
Mai 04 14:51:28 Megatron systemd-udevd[236]: seq 1415 processed with 0
Mai 04 14:51:28 Megatron systemd-udevd[233]: seq 1418 queued, 'add' 'bus'
Mai 04 14:51:28 Megatron systemd-udevd[236]: passed -1 bytes to netlink monitor 0xdf33c0
Mai 04 14:51:28 Megatron systemd-udevd[233]: passed 145 bytes to netlink monitor 0xdef5a0
Mai 04 14:51:28 Megatron systemd-udevd[235]: passed -1 bytes to netlink monitor 0xe13860
Mai 04 14:51:28 Megatron systemd-udevd[236]: no db file to read /run/udev/data/+module:configfs: No such file or directory
Mai 04 14:51:28 Megatron systemd-udevd[236]: seq 1431 running
Mai 04 14:51:28 Megatron systemd-udevd[236]: passed -1 bytes to netlink monitor 0xdf33c0
Mai 04 14:51:28 Megatron systemd-udevd[233]: seq 1435 done with 0
Mai 04 14:51:28 Megatron systemd-udevd[233]: seq 1438 queued, 'add' 'module'
Mai 04 14:51:28 Megatron systemd-udevd[235]: no db file to read /run/udev/data/+module:efivars: No such file or directory
Mai 04 14:51:28 Megatron systemd-udevd[236]: seq 1443 running
Mai 04 14:51:28 Megatron systemd-udevd[233]: passed 142 bytes to netlink monitor 0xdef5a0
Mai 04 14:51:28 Megatron systemd-udevd[236]: seq 1449 running
Mai 04 14:51:28 Megatron systemd-udevd[235]: seq 1450 processed with 0
Mai 04 14:51:28 Megatron systemd-udevd[236]: passed -1 bytes to netlink monitor 0xdf33c0
Mai 04 14:51:28 Megatron systemd-udevd[233]: seq 1456 queued, 'add' 'module'
Mai 04 14:51:28 Megatron systemd-udevd[233]: seq 1459 queued, 'add' 'module'
Mai 04 14:51:28 Megatron systemd-udevd[236]: passed -1 bytes to netlink monitor 0xdf33c0
Mai 04 14:51:28 Megatron systemd-udevd[233]: passed 141 bytes to netlink monitor 0xdef5a0
Mai 04 14:51:28 Megatron systemd-udevd[233]: passed 141 bytes to netlink monitor 0xdef5a0
Mai 04 14:51:28 Megatron systemd-udevd[235]: passed -1 bytes to netlink monitor 0xe13860
Mai 04 14:51:28 Megatron systemd-udevd[236]: no db file to read /run/udev/data/+module:rcutree: No such file or directory
Mai 04 14:51:28 Megatron systemd-udevd[236]: seq 1473 processed with 0
Mai 04 14:51:28 Megatron systemd-udevd[235]: seq 1476 running
Mai 04 14:51:28 Megatron systemd-udevd[235]: seq 1478 processed with 0
Mai 04 14:51:28 Megatron systemd-udevd[233]: seq 1482 queued, 'add' 'module'
Mai 04 14:51:28 Megatron systemd-udevd[233]: seq 1485 queued, 'add' 'module'
Mai 04 14:51:28 Megatron systemd-udevd[236]: seq 1487 running
Mai 04 14:51:28 Megatron systemd-udevd[235]: no db file to read /run/udev/data/c10:237: No such file or directory
Mai 04 14:51:28 Megatron systemd-udevd[235]: IMPORT builtin 'blkid' /usr/lib/udev/rules.d/60-persistent-storage.rules:70
Mai 04 14:51:28 Megatron systemd-udevd[233]: passed 201 bytes to netlink monitor 0xdef5a0
Mai 04 14:51:28 Megatron systemd-udevd[237]: seq 1493 processed with 0
Mai 04 14:51:28 Megatron systemd-udevd[238]: probe /dev/loop2 raid offset=0
Mai 04 14:51:28 Megatron systemd-udevd[239]: no db file to read /run/udev/data/b7:4: No such file or directory
Mai 04 14:51:28 Megatron systemd-udevd[233]: passed 201 bytes to netlink monitor 0xdef5a0
Mai 04 14:51:28 Megatron systemd-udevd[240]: passed -1 bytes to netlink monitor 0xe02770
Mai 04 14:51:28 Megatron systemd-udevd[233]: seq 1499 done with 0
Mai 04 14:51:28 Megatron systemd-udevd[242]: seq 1502 running
Mai 04 14:51:28 Megatron systemd-udevd[242]: IMPORT 'udisks-part-id /dev/loop6' /usr/lib/udev/rules.d/80-udisks.rules:84
Mai 04 14:51:28 Megatron systemd-udevd[243]: no db file to read /run/udev/data/+bdi:7:7: No such file or directory
Mai 04 14:51:28 Megatron systemd-udevd[233]: passed 167 bytes to netlink monitor 0xdef5a0
Mai 04 14:51:28 Megatron systemd-udevd[245]: passed -1 bytes to netlink monitor 0xe01c80
Mai 04 14:51:28 Megatron systemd-udevd[244]: seq 1511 running
Mai 04 14:51:28 Megatron systemd-udevd[233]: passed 146 bytes to netlink monitor 0xdef5a0
Mai 04 14:51:28 Megatron systemd-udevd[244]: seq 1514 processed with 0
Mai 04 14:51:28 Megatron systemd-udevd[233]: seq 1514 done with 0
Mai 04 14:51:28 Megatron systemd-udevd[243]: no db file to read /run/udev/data/+acpi:LNXSYSTM:00: No such file or directory
Mai 04 14:51:28 Megatron systemd-udevd[233]: seq 1515 done with 0
Mai 04 14:51:28 Megatron systemd-udevd[233]: seq 1547 queued, 'add' 'acpi'
Mai 04 14:51:28 Megatron systemd-udevd[233]: seq 1561 queued, 'add' 'acpi'
Mai 04 14:51:28 Megatron systemd-udevd[233]: seq 1581 queued, 'add' 'acpi'
Mai 04 14:51:28 Megatron systemd-udevd[233]: seq 1597 queued, 'add' 'acpi'
Mai 04 14:51:28 Megatron systemd-udevd[233]: seq 1612 queued, 'add' 'acpi'
Mai 04 14:51:28 Megatron systemd-udevd[233]: seq 1625 queued, 'add' 'acpi'
Mai 04 14:51:28 Megatron systemd-udevd[243]: RUN 'kmod load $env{MODALIAS}' /usr/lib/udev/rules.d/80-drivers.rules:5
Mai 04 14:51:28 Megatron systemd-udevd[243]: execute 'load' 'acpi:LNXSYSTM:'
Mai 04 14:51:28 Megatron systemd-udevd[233]: seq 1630 queued, 'add' 'event_source'
Mai 04 14:51:28 Megatron systemd-udevd[245]: seq 1630 running
Mai 04 14:51:28 Megatron systemd-udevd[245]: no db file to read /run/udev/data/+event_source:cpu: No such file or directory
Mai 04 14:51:28 Megatron systemd-udevd[233]: seq 1630 done with 0
Mai 04 14:51:28 Megatron systemd-udevd[243]: no db file to read /run/udev/data/+acpi:LNXCPU:00: No such file or directory
Mai 04 14:51:28 Megatron systemd-udevd[243]: passed -1 bytes to netlink monitor 0xdf6770
Mai 04 14:51:28 Megatron systemd-udevd[233]: passed 193 bytes to netlink monitor 0xdef5a0
Mai 04 14:51:28 Megatron systemd-udevd[244]: IMPORT builtin 'hwdb' /usr/lib/udev/rules.d/50-udev-default.rules:8
Mai 04 14:51:28 Megatron systemd-udevd[255]: no db file to read /run/udev/data/+acpi:LNXCPU:03: No such file or directory
Mai 04 14:51:28 Megatron systemd-udevd[233]: passed 193 bytes to netlink monitor 0xdef5a0
Mai 04 14:51:28 Megatron systemd-udevd[242]: 'udisks-part-id /dev/loop6'(err) 'libudev: udev_device_new_from_syspath: device 0x253d3c0 has devpath '/devices/virtual/block/loop6''
Mai 04 14:51:28 Megatron systemd-udevd[233]: seq 1522 forked new worker [257]
Mai 04 14:51:28 Megatron systemd-udevd[256]: no db file to read /run/udev/data/+acpi:LNXCPU:04: No such file or directory
Mai 04 14:51:28 Megatron systemd-udevd[233]: maximum number (16) of children reached
Mai 04 14:51:38 Megatron systemd-udevd[237]: LINK 'disk/by-uuid/00ce6f12-a0c6-47de-a0fa-6df03474e019' /usr/lib/udev/rules.d/60-persistent-storage.rules:76
Mai 04 14:51:38 Megatron systemd-udevd[237]: LINK 'disk/by-id/wwn-0x5000cca662e4f3a9' /usr/lib/udev/rules.d/60-persistent-storage.rules:80
Mai 04 14:51:38 Megatron systemd-udevd[237]: no db file to read /run/udev/data/+scsi:0:0:0:0: No such file or directory
Mai 04 14:51:38 Megatron systemd-udevd[237]: IMPORT 'udisks-part-id /dev/sda' /usr/lib/udev/rules.d/80-udisks.rules:84
Mai 04 14:51:38 Megatron systemd-udevd[236]: RUN '/usr/sbin/lvm pvscan --cache --activate ay --major $major --minor $minor' /usr/lib/udev/rules.d/69-dm-lvm-metad.rules:24
Mai 04 14:51:38 Megatron systemd-udevd[236]: IMPORT 'udisks-dm-export 254 4' /usr/lib/udev/rules.d/80-udisks.rules:53
Mai 04 14:51:38 Megatron systemd-udevd[237]: 'udisks-part-id /dev/sda'(err) 'libudev: udev_device_new_from_syspath: device 0x19353c0 has devpath '/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda''
Mai 04 14:51:38 Megatron systemd-udevd[237]: 'udisks-part-id /dev/sda'(err) 'libudev: udev_device_read_db: device 0x19353c0 filled with db file data'
Mai 04 14:51:38 Megatron systemd-udevd[237]: 'udisks-part-id /dev/sda'(err) 'using device_file=/dev/sda syspath=/sys/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda, offset=0 ao=0 and number=0 for /dev/sda'
Mai 04 14:51:38 Megatron systemd-udevd[237]: 'udisks-part-id /dev/sda'(err) 'Entering MS-DOS parser (offset=0, size=500107862016)'
Mai 04 14:51:38 Megatron systemd-udevd[237]: 'udisks-part-id /dev/sda'(err) ''
Mai 04 14:51:38 Megatron systemd-udevd[237]: 'udisks-part-id /dev/sda'(err) 'No MSDOS_MAGIC found'
Mai 04 14:51:38 Megatron systemd-udevd[237]: 'udisks-part-id /dev/sda'(err) 'Exiting MS-DOS parser'
Mai 04 14:51:38 Megatron systemd-udevd[237]: 'udisks-part-id /dev/sda'(err) 'Entering Apple parser'
Mai 04 14:51:38 Megatron systemd-udevd[237]: 'udisks-part-id /dev/sda'(err) 'No MAC_MAGIC found'
Mai 04 14:51:38 Megatron systemd-udevd[237]: 'udisks-part-id /dev/sda'(err) 'Leaving Apple parser'
Mai 04 14:51:38 Megatron systemd-udevd[237]: 'udisks-part-id /dev/sda'(err) 'No known partition table found'
Mai 04 14:51:38 Megatron systemd-udevd[237]: 'udisks-part-id /dev/sda'(err) 'No partition table found on /dev/sda: No such file or directory'
Mai 04 14:51:38 Megatron systemd-udevd[237]: 'udisks-part-id /dev/sda' [1129] exit with return code 0
Mai 04 14:51:38 Megatron systemd-udevd[237]: IMPORT 'udisks-probe-ata-smart /dev/sda' /usr/lib/udev/rules.d/80-udisks.rules:111
Mai 04 14:51:38 Megatron systemd-udevd[237]: 'udisks-probe-ata-smart /dev/sda'(err) 'libudev: udev_device_new_from_syspath: device 0x10199d0 has devpath '/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda''
Mai 04 14:51:38 Megatron systemd-udevd[237]: 'udisks-probe-ata-smart /dev/sda'(err) 'libudev: udev_device_read_db: device 0x10199d0 filled with db file data'
Mai 04 14:51:38 Megatron systemd-udevd[237]: 'udisks-probe-ata-smart /dev/sda'(err) 'libudev: udev_device_new_from_syspath: device 0x101c100 has devpath '/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0''
Mai 04 14:51:38 Megatron systemd-udevd[236]: 'udisks-dm-export 254 4' [1130] exit with return code 0
Mai 04 14:51:38 Megatron systemd-udevd[236]: 'udisks-part-id /dev/dm-4'(err) 'libudev: udev_device_new_from_syspath: device 0x1f9b3c0 has devpath '/devices/virtual/block/dm-4''
Mai 04 14:51:38 Megatron systemd-udevd[236]: 'udisks-part-id /dev/dm-4'(err) 'libudev: udev_device_read_db: device 0x1f9b3c0 filled with db file data'
Mai 04 14:51:38 Megatron systemd-udevd[236]: 'udisks-part-id /dev/dm-4'(err) 'using device_file=/dev/dm-4 syspath=/sys/devices/virtual/block/dm-4, offset=0 ao=0 and number=0 for /dev/dm-4'
Mai 04 14:51:38 Megatron systemd-udevd[236]: 'udisks-part-id /dev/dm-4'(err) 'Entering MS-DOS parser (offset=0, size=500105764864)'
Mai 04 14:51:38 Megatron systemd-udevd[236]: 'udisks-part-id /dev/dm-4'(err) ''
Mai 04 14:51:38 Megatron systemd-udevd[237]: 'udisks-probe-ata-smart /dev/sda'(out) 'UDISKS_ATA_SMART_IS_AVAILABLE=1'
Mai 04 14:51:38 Megatron systemd-udevd[237]: 'udisks-probe-ata-smart /dev/sda' [1131] exit with return code 0
Mai 04 14:51:38 Megatron systemd-udevd[237]: handling device node '/dev/sda', devnum=b8:0, mode=0600, uid=0, gid=0
Mai 04 14:51:38 Megatron systemd-udevd[237]: preserve already existing symlink '/dev/block/8:0' to '../sda'
Mai 04 14:51:38 Megatron systemd-udevd[237]: found 'b8:0' claiming '/run/udev/links/\x2fdisk\x2fby-id\x2fata-HGST_HTS725050A7E630_TF655AY9JM8YHC'
Mai 04 14:51:38 Megatron systemd-udevd[237]: creating link '/dev/disk/by-id/ata-HGST_HTS725050A7E630_TF655AY9JM8YHC' to '/dev/sda'
Mai 04 14:51:38 Megatron systemd-udevd[237]: preserve already existing symlink '/dev/disk/by-id/ata-HGST_HTS725050A7E630_TF655AY9JM8YHC' to '../../sda'
Mai 04 14:51:38 Megatron systemd-udevd[237]: found 'b8:0' claiming '/run/udev/links/\x2fdisk\x2fby-id\x2fwwn-0x5000cca662e4f3a9'
Mai 04 14:51:38 Megatron systemd-udevd[237]: creating link '/dev/disk/by-id/wwn-0x5000cca662e4f3a9' to '/dev/sda'
Mai 04 14:51:38 Megatron systemd-udevd[237]: preserve already existing symlink '/dev/disk/by-id/wwn-0x5000cca662e4f3a9' to '../../sda'
Mai 04 14:51:38 Megatron systemd-udevd[237]: found 'b8:0' claiming '/run/udev/links/\x2fdisk\x2fby-uuid\x2f00ce6f12-a0c6-47de-a0fa-6df03474e019'
Mai 04 14:51:38 Megatron systemd-udevd[237]: creating link '/dev/disk/by-uuid/00ce6f12-a0c6-47de-a0fa-6df03474e019' to '/dev/sda'
Mai 04 14:51:38 Megatron systemd-udevd[237]: adding watch on '/dev/sda'
Mai 04 14:51:38 Megatron systemd-udevd[236]: 'udisks-part-id /dev/dm-4'(err) 'No MSDOS_MAGIC found'
Mai 04 14:51:38 Megatron systemd-udevd[236]: 'udisks-part-id /dev/dm-4'(err) 'Exiting MS-DOS parser'
Mai 04 14:51:38 Megatron systemd-udevd[236]: 'udisks-part-id /dev/dm-4'(err) 'Entering Apple parser'
Mai 04 14:51:38 Megatron systemd-udevd[236]: 'udisks-part-id /dev/dm-4'(err) 'No MAC_MAGIC found'
Mai 04 14:51:38 Megatron systemd-udevd[236]: 'udisks-part-id /dev/dm-4'(err) 'Leaving Apple parser'
Mai 04 14:51:38 Megatron systemd-udevd[236]: 'udisks-part-id /dev/dm-4'(err) 'No known partition table found'
Mai 04 14:51:38 Megatron systemd-udevd[236]: 'udisks-part-id /dev/dm-4'(err) 'No partition table found on /dev/dm-4: No such file or directory'
Mai 04 14:51:38 Megatron systemd-udevd[236]: 'udisks-part-id /dev/dm-4' [1132] exit with return code 0
Mai 04 14:51:38 Megatron systemd-udevd[236]: RUN '/usr/sbin/dmsetup udevcomplete $env{DM_COOKIE}' /usr/lib/udev/rules.d/95-dm-notify.rules:12
Mai 04 14:51:38 Megatron systemd-udevd[236]: handling device node '/dev/dm-4', devnum=b254:4, mode=0600, uid=0, gid=0
Mai 04 14:51:38 Megatron systemd-udevd[236]: preserve already existing symlink '/dev/block/254:4' to '../dm-4'
Mai 04 14:51:38 Megatron systemd-udevd[236]: creating link '/dev/disk/by-id/dm-name-hdd' to '/dev/dm-4'
Mai 04 14:51:38 Megatron systemd-udevd[236]: creating symlink '/dev/disk/by-id/dm-name-hdd' to '../../dm-4'
Mai 04 14:51:38 Megatron systemd-udevd[236]: created db file '/run/udev/data/b254:4' for '/devices/virtual/block/dm-4'
Mai 04 14:51:38 Megatron systemd-udevd[236]: '/usr/sbin/lvm pvscan --cache --activate ay --major 254 --minor 4'(err) 'libudev: udev_device_new_from_syspath: device 0x1ea0010 has devpath '/devices/pci0000:00/0000:00:1f.2/ata1/host0/target0:0:0/0:0:0:0/block/sda''
Mai 04 14:51:38 Megatron systemd-udevd[236]: '/usr/sbin/lvm pvscan --cache --activate ay --major 254 --minor 4'(err) 'libudev: udev_device_new_from_syspath: device 0x1ea0010 has devpath '/devices/pci0000:00/0000:00:1f.2/ata3/host2/target2:0:0/2:0:0:0/block/sdb''
Mai 04 14:51:38 Megatron systemd-udevd[236]: '/usr/sbin/lvm pvscan --cache --activate ay --major 254 --minor 4'(err) 'libudev: udev_device_new_from_syspath: device 0x1ea0010 has devpath '/devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1.2/1-1.2:1.0/host6/target6:0:0/6:0:0:0/block/sdc''
Mai 04 14:51:38 Megatron systemd-udevd[236]: '/usr/sbin/lvm pvscan --cache --activate ay --major 254 --minor 4'(err) 'libudev: udev_device_new_from_syspath: device 0x1ea0010 has devpath '/devices/virtual/block/dm-0''
Mai 04 14:51:38 Megatron systemd-udevd[236]: '/usr/sbin/lvm pvscan --cache --activate ay --major 254 --minor 4'(err) 'libudev: udev_device_new_from_syspath: device 0x1ea0010 has devpath '/devices/virtual/block/dm-1''
Mai 04 14:51:38 Megatron systemd-udevd[236]: '/usr/sbin/lvm pvscan --cache --activate ay --major 254 --minor 4'(err) 'libudev: udev_device_new_from_syspath: device 0x1ea0010 has devpath '/devices/virtual/block/dm-2''
Mai 04 14:51:38 Megatron systemd-udevd[236]: '/usr/sbin/lvm pvscan --cache --activate ay --major 254 --minor 4'(err) 'libudev: udev_device_new_from_syspath: device 0x1ea0010 has devpath '/devices/virtual/block/dm-3''
Mai 04 14:51:38 Megatron systemd-udevd[236]: '/usr/sbin/lvm pvscan --cache --activate ay --major 254 --minor 4'(err) 'libudev: udev_device_new_from_syspath: device 0x1ea0010 has devpath '/devices/virtual/block/dm-4''
Mai 04 14:51:38 Megatron systemd-udevd[236]: '/usr/sbin/lvm pvscan --cache --activate ay --major 254 --minor 4'(err) 'libudev: udev_device_new_from_syspath: device 0x1ea0010 has devpath '/devices/pci0000:00/0000:00:1f.2/ata3/host2/target2:0:0/2:0:0:0/block/sdb/sdb1''
Mai 04 14:51:38 Megatron systemd-udevd[236]: '/usr/sbin/lvm pvscan --cache --activate ay --major 254 --minor 4'(err) 'libudev: udev_device_new_from_syspath: device 0x1ea0010 has devpath '/devices/pci0000:00/0000:00:1f.2/ata3/host2/target2:0:0/2:0:0:0/block/sdb/sdb2''
Mai 04 14:51:38 Megatron systemd-udevd[236]: '/usr/sbin/lvm pvscan --cache --activate ay --major 254 --minor 4'(err) 'libudev: udev_device_new_from_syspath: device 0x1ea0010 has devpath '/devices/virtual/block/loop0''
Mai 04 14:51:38 Megatron systemd-udevd[236]: '/usr/sbin/lvm pvscan --cache --activate ay --major 254 --minor 4'(err) 'libudev: udev_device_new_from_syspath: device 0x1ea0010 has devpath '/devices/virtual/block/loop1''
Mai 04 14:51:38 Megatron systemd-udevd[236]: '/usr/sbin/lvm pvscan --cache --activate ay --major 254 --minor 4'(err) 'libudev: udev_device_new_from_syspath: device 0x1ea0010 has devpath '/devices/virtual/block/loop5''
Mai 04 14:51:38 Megatron systemd-udevd[236]: '/usr/sbin/lvm pvscan --cache --activate ay --major 254 --minor 4'(err) 'libudev: udev_device_read_db: device 0x1e90690 filled with db file data'
Mai 04 14:51:38 Megatron systemd-udevd[236]: '/usr/sbin/lvm pvscan --cache --activate ay --major 254 --minor 4'(err) 'libudev: udev_device_read_db: device 0x1e90690 filled with db file data'
Mai 04 14:51:38 Megatron systemd-udevd[236]: '/usr/sbin/lvm pvscan --cache --activate ay --major 254 --minor 4'(err) 'libudev: udev_device_new_from_syspath: device 0x1e90690 has devpath '/devices/pci0000:00/0000:00:1f.2/ata3/host2/target2:0:0/2:0:0:0/block/sdb/sdb2''
Mai 04 14:51:38 Megatron systemd-udevd[236]: '/usr/sbin/lvm pvscan --cache --activate ay --major 254 --minor 4'(err) 'libudev: udev_device_read_db: device 0x1e90690 filled with db file data'
Mai 04 14:51:38 Megatron systemd-udevd[236]: '/usr/sbin/lvm pvscan --cache --activate ay --major 254 --minor 4'(err) 'libudev: udev_device_read_db: device 0x1e90690 filled with db file data'
Mai 04 14:51:38 Megatron systemd-udevd[236]: '/usr/sbin/lvm pvscan --cache --activate ay --major 254 --minor 4'(err) 'libudev: udev_device_new_from_syspath: device 0x1e90690 has devpath '/devices/virtual/block/loop6''
Mai 04 14:51:38 Megatron systemd-udevd[236]: '/usr/sbin/lvm pvscan --cache --activate ay --major 254 --minor 4'(err) 'libudev: udev_device_read_db: device 0x1e90690 filled with db file data'
Mai 04 14:51:38 Megatron systemd-udevd[236]: '/usr/sbin/lvm pvscan --cache --activate ay --major 254 --minor 4'(err) 'libudev: udev_device_read_db: device 0x1e90690 filled with db file data'
Mai 04 14:51:38 Megatron systemd-udevd[236]: '/usr/sbin/lvm pvscan --cache --activate ay --major 254 --minor 4'(err) 'libudev: udev_device_new_from_syspath: device 0x1e90690 has devpath '/devices/virtual/block/dm-4''
Mai 04 14:51:38 Megatron systemd-udevd[233]: seq 2256 queued, 'add' 'bdi'
Mai 04 14:51:38 Megatron systemd-udevd[233]: passed 149 bytes to netlink monitor 0xdef5a0
Mai 04 14:51:38 Megatron systemd-udevd[235]: seq 2256 running
Mai 04 14:51:38 Megatron systemd-udevd[233]: seq 2257 queued, 'add' 'block'
Mai 04 14:51:38 Megatron systemd-udevd[233]: passed 201 bytes to netlink monitor 0xdef5a0
Mai 04 14:51:38 Megatron systemd-udevd[237]: seq 2257 running
Mai 04 14:51:38 Megatron systemd-udevd[235]: no db file to read /run/udev/data/+bdi:254:5: No such file or directory
Mai 04 14:51:38 Megatron systemd-udevd[237]: no db file to read /run/udev/data/b254:5: No such file or directory
Mai 04 14:51:38 Megatron systemd-udevd[235]: passed -1 bytes to netlink monitor 0xe13860
Mai 04 14:51:38 Megatron systemd-udevd[233]: seq 2258 queued, 'change' 'block'
Mai 04 14:51:38 Megatron systemd-udevd[235]: seq 2256 processed with 0
Mai 04 14:51:38 Megatron systemd-udevd[233]: seq 2256 done with 0
Mai 04 14:51:38 Megatron systemd-udevd[237]: handling device node '/dev/dm-5', devnum=b254:5, mode=0660, uid=0, gid=6
Mai 04 14:51:38 Megatron systemd-udevd[235]: IMPORT '/usr/sbin/dmsetup udevflags 6354338' /usr/lib/udev/rules.d/10-dm.rules:39
Mai 04 14:51:38 Megatron systemd-udevd[233]: seq 2259 queued, 'add' 'bdi'
Mai 04 14:51:38 Megatron systemd-udevd[237]: seq 2259 running
Mai 04 14:51:38 Megatron systemd-udevd[238]: passed -1 bytes to netlink monitor 0xe0bb50
Mai 04 14:51:38 Megatron systemd-udevd[235]: '/usr/sbin/dmsetup udevflags 6354338'(out) 'DM_UDEV_DISABLE_LIBRARY_FALLBACK_FLAG='1''
Mai 04 14:51:38 Megatron systemd-udevd[235]: LINK 'mapper/vghdd-lvhddswap' /usr/lib/udev/rules.d/10-dm.rules:110
Mai 04 14:51:38 Megatron systemd-udevd[236]: '/usr/sbin/lvm pvscan --cache --activate ay --major 254 --minor 4'(out) '  2 logical volume(s) in volume group "vghdd" now active'
Mai 04 14:51:38 Megatron systemd-udevd[235]: '/usr/sbin/dmsetup splitname --nameprefixes --noheadings --rows vghdd-lvhddswap'(out) 'DM_VG_NAME='vghdd''
Mai 04 14:51:38 Megatron systemd-udevd[235]: '/usr/sbin/dmsetup splitname --nameprefixes --noheadings --rows vghdd-lvhddswap'(out) 'DM_LV_NAME='lvhddswap''
Mai 04 14:51:38 Megatron systemd-udevd[235]: '/usr/sbin/dmsetup splitname --nameprefixes --noheadings --rows vghdd-lvhddswap'(out) 'DM_LV_LAYER='''
Mai 04 14:51:38 Megatron systemd-udevd[235]: probe /dev/dm-5 raid offset=0
Mai 04 14:51:38 Megatron systemd-udevd[236]: '/usr/sbin/lvm pvscan --cache --activate ay --major 254 --minor 4' [1133] exit with return code 0
Mai 04 14:51:38 Megatron systemd-udevd[237]: '/usr/sbin/dmsetup udevflags 6354338' [1139] exit with return code 0
Mai 04 14:51:38 Megatron systemd-udevd[237]: LINK 'mapper/vghdd-lvhome' /usr/lib/udev/rules.d/10-dm.rules:110
Mai 04 14:51:38 Megatron systemd-udevd[237]: IMPORT '/usr/sbin/dmsetup splitname --nameprefixes --noheadings --rows vghdd-lvhome' /usr/lib/udev/rules.d/11-dm-lvm.rules:21
Mai 04 14:51:38 Megatron systemd-udevd[237]: '/usr/sbin/dmsetup splitname --nameprefixes --noheadings --rows vghdd-lvhome'(out) 'DM_VG_NAME='vghdd''
Mai 04 14:51:38 Megatron systemd-udevd[237]: '/usr/sbin/dmsetup splitname --nameprefixes --noheadings --rows vghdd-lvhome'(out) 'DM_LV_NAME='lvhome''
Mai 04 14:51:38 Megatron systemd-udevd[237]: '/usr/sbin/dmsetup splitname --nameprefixes --noheadings --rows vghdd-lvhome'(out) 'DM_LV_LAYER='''
Mai 04 14:51:38 Megatron systemd-udevd[237]: '/usr/sbin/dmsetup splitname --nameprefixes --noheadings --rows vghdd-lvhome' [1141] exit with return code 0
Mai 04 14:51:38 Megatron systemd-udevd[237]: LINK 'disk/by-id/dm-uuid-LVM-RnjlbMqrpKCwXi2QRJEuTdAz2YVILzg3Ux3YCfE6qDaJE3RGIY70IsJ7DhnguTTT' /usr/lib/udev/rules.d/13-dm-disk.rules:18
Mai 04 14:51:38 Megatron systemd-udevd[236]: '/usr/sbin/dmsetup udevcomplete 4217095' [1140] exit with return code 0
Mai 04 14:51:38 Megatron systemd-udevd[236]: passed -1 bytes to netlink monitor 0xdf33c0
Mai 04 14:51:38 Megatron systemd-udevd[236]: seq 2255 processed with 0
Mai 04 14:51:38 Megatron systemd-udevd[233]: seq 2255 done with 0
Mai 04 14:51:38 Megatron systemd-udevd[235]: LINK 'disk/by-uuid/e58aa76f-341e-4a36-8d7c-c8e343271d64' /usr/lib/udev/rules.d/13-dm-disk.rules:24
Mai 04 14:51:38 Megatron systemd-udevd[235]: LINK 'disk/by-label/HDDSwap' /usr/lib/udev/rules.d/13-dm-disk.rules:25
Mai 04 14:51:38 Megatron systemd-udevd[235]: IMPORT 'udisks-dm-export 254 5' /usr/lib/udev/rules.d/80-udisks.rules:53
Mai 04 14:51:38 Megatron systemd-udevd[235]: 'udisks-dm-export 254 5'(out) 'UDISKS_DM_TARGETS_COUNT=1'
Mai 04 14:51:38 Megatron systemd-udevd[235]: 'udisks-dm-export 254 5'(out) 'UDISKS_DM_TARGETS_TYPE=linear'
Mai 04 14:51:38 Megatron systemd-udevd[235]: 'udisks-dm-export 254 5'(out) 'UDISKS_DM_TARGETS_START=0'
Mai 04 14:51:38 Megatron systemd-udevd[235]: 'udisks-dm-export 254 5'(out) 'UDISKS_DM_TARGETS_LENGTH=35651584'
Mai 04 14:51:38 Megatron systemd-udevd[235]: 'udisks-dm-export 254 5'(out) 'UDISKS_DM_TARGETS_PARAMS=254:4\x202048'
Mai 04 14:51:38 Megatron systemd-udevd[235]: 'udisks-dm-export 254 5' [1144] exit with return code 0
Mai 04 14:51:38 Megatron systemd-udevd[235]: IMPORT 'udisks-part-id /dev/dm-5' /usr/lib/udev/rules.d/80-udisks.rules:84
Mai 04 14:51:38 Megatron systemd-udevd[235]: 'udisks-part-id /dev/dm-5'(err) 'libudev: udev_device_new_from_syspath: device 0x1a683c0 has devpath '/devices/virtual/block/dm-5''
Mai 04 14:51:38 Megatron systemd-udevd[235]: 'udisks-part-id /dev/dm-5'(err) 'libudev: udev_device_new_from_syspath: device 0x1a95e00 has devpath '/devices/virtual/block/dm-4''
Mai 04 14:51:38 Megatron systemd-udevd[235]: 'udisks-part-id /dev/dm-5'(err) 'Error determining partition number from DM_NAME=`vghdd-lvhddswap''
Mai 04 14:51:38 Megatron systemd-udevd[235]: 'udisks-part-id /dev/dm-5'(err) 'using device_file=(null) syspath=(null), offset=0 ao=0 and number=0 for /dev/dm-5'
Mai 04 14:51:38 Megatron systemd-udevd[235]: 'udisks-part-id /dev/dm-5'(err) 'Error opening (null): Bad address'
Mai 04 14:51:38 Megatron systemd-udevd[235]: 'udisks-part-id /dev/dm-5' [1145] exit with return code 0
Mai 04 14:51:38 Megatron systemd-udevd[235]: RUN '/usr/sbin/dmsetup udevcomplete $env{DM_COOKIE}' /usr/lib/udev/rules.d/95-dm-notify.rules:12
Mai 04 14:51:38 Megatron systemd-udevd[235]: handling device node '/dev/dm-5', devnum=b254:5, mode=0600, uid=0, gid=0
Mai 04 14:51:38 Megatron systemd-udevd[235]: preserve already existing symlink '/dev/block/254:5' to '../dm-5'
Mai 04 14:51:38 Megatron systemd-udevd[235]: creating link '/dev/disk/by-id/dm-name-vghdd-lvhddswap' to '/dev/dm-5'
Mai 04 14:51:38 Megatron systemd-udevd[235]: creating symlink '/dev/disk/by-id/dm-name-vghdd-lvhddswap' to '../../dm-5'
Mai 04 14:51:38 Megatron systemd-udevd[235]: creating link '/dev/disk/by-id/dm-uuid-LVM-RnjlbMqrpKCwXi2QRJEuTdAz2YVILzg3wr7YNEGmC6aziG2lcBh4nYSYN9CNArA4' to '/dev/dm-5'
Mai 04 14:51:38 Megatron systemd-udevd[235]: creating symlink '/dev/disk/by-id/dm-uuid-LVM-RnjlbMqrpKCwXi2QRJEuTdAz2YVILzg3wr7YNEGmC6aziG2lcBh4nYSYN9CNArA4' to '../../dm-5'
Mai 04 14:51:38 Megatron systemd-udevd[235]: creating link '/dev/disk/by-label/HDDSwap' to '/dev/dm-5'
Mai 04 14:51:38 Megatron systemd-udevd[235]: creating symlink '/dev/disk/by-label/HDDSwap' to '../../dm-5'
Mai 04 14:51:38 Megatron systemd-udevd[235]: created db file '/run/udev/data/b254:5' for '/devices/virtual/block/dm-5'
Mai 04 14:51:38 Megatron systemd-udevd[235]: '/usr/sbin/dmsetup udevcomplete 6354338' [1146] exit with return code 0
Mai 04 14:51:38 Megatron systemd-udevd[235]: adding watch on '/dev/dm-5'
Mai 04 14:51:38 Megatron systemd-udevd[235]: created db file '/run/udev/data/b254:5' for '/devices/virtual/block/dm-5'
Mai 04 14:51:38 Megatron systemd-udevd[235]: passed -1 bytes to netlink monitor 0xe13860
Mai 04 14:51:38 Megatron systemd-udevd[235]: seq 2258 processed with 0
Mai 04 14:51:38 Megatron systemd-udevd[237]: LINK 'disk/by-uuid/c06a72ce-760d-4c63-969c-d05ca481423b' /usr/lib/udev/rules.d/13-dm-disk.rules:24
Mai 04 14:51:38 Megatron systemd-udevd[237]: LINK 'disk/by-label/Home' /usr/lib/udev/rules.d/13-dm-disk.rules:25
Mai 04 14:51:38 Megatron systemd-udevd[237]: IMPORT 'udisks-dm-export 254 6' /usr/lib/udev/rules.d/80-udisks.rules:53
Mai 04 14:51:38 Megatron systemd-udevd[237]: 'udisks-dm-export 254 6'(out) 'UDISKS_DM_TARGETS_COUNT=1'
Mai 04 14:51:38 Megatron systemd-udevd[237]: 'udisks-dm-export 254 6'(out) 'UDISKS_DM_TARGETS_TYPE=linear'
Mai 04 14:51:38 Megatron systemd-udevd[237]: 'udisks-dm-export 254 6'(out) 'UDISKS_DM_TARGETS_START=0'
Mai 04 14:51:38 Megatron systemd-udevd[237]: 'udisks-dm-export 254 6'(out) 'UDISKS_DM_TARGETS_LENGTH=939524096'
Mai 04 14:51:38 Megatron systemd-udevd[237]: 'udisks-dm-export 254 6'(out) 'UDISKS_DM_TARGETS_PARAMS=254:4\x2035653632'
Mai 04 14:51:39 Megatron systemd-udevd[237]: 'udisks-dm-export 254 6' [1147] exit with return code 0
Mai 04 14:51:39 Megatron systemd-udevd[237]: IMPORT 'udisks-part-id /dev/dm-6' /usr/lib/udev/rules.d/80-udisks.rules:84
Mai 04 14:51:39 Megatron systemd-udevd[237]: 'udisks-part-id /dev/dm-6'(err) 'libudev: udev_device_new_from_syspath: device 0xae03c0 has devpath '/devices/virtual/block/dm-6''
Mai 04 14:51:39 Megatron systemd-udevd[237]: 'udisks-part-id /dev/dm-6'(err) 'libudev: udev_device_new_from_syspath: device 0xb0de00 has devpath '/devices/virtual/block/dm-4''
Mai 04 14:51:39 Megatron systemd-udevd[237]: 'udisks-part-id /dev/dm-6'(err) 'using device_file=/dev/dm-6 syspath=/sys/devices/virtual/block/dm-6, offset=0 ao=0 and number=0 for /dev/dm-6'
Mai 04 14:51:39 Megatron systemd-udevd[237]: 'udisks-part-id /dev/dm-6'(err) 'Entering MS-DOS parser (offset=0, size=481036337152)'
Mai 04 14:51:39 Megatron systemd-udevd[237]: 'udisks-part-id /dev/dm-6'(err) 'No MSDOS_MAGIC found'
Mai 04 14:51:39 Megatron systemd-udevd[237]: 'udisks-part-id /dev/dm-6'(err) 'Exiting MS-DOS parser'
Mai 04 14:51:39 Megatron systemd-udevd[237]: 'udisks-part-id /dev/dm-6'(err) 'Entering Apple parser'
Mai 04 14:51:39 Megatron systemd-udevd[237]: 'udisks-part-id /dev/dm-6'(err) 'No MAC_MAGIC found'
Mai 04 14:51:39 Megatron systemd-udevd[237]: 'udisks-part-id /dev/dm-6'(err) 'Leaving Apple parser'
Mai 04 14:51:39 Megatron systemd-udevd[237]: 'udisks-part-id /dev/dm-6'(err) 'No known partition table found'
Mai 04 14:51:39 Megatron systemd-udevd[237]: 'udisks-part-id /dev/dm-6'(err) 'No partition table found on /dev/dm-6: No such file or directory'
Mai 04 14:51:39 Megatron systemd-udevd[237]: 'udisks-part-id /dev/dm-6' [1148] exit with return code 0
Mai 04 14:51:39 Megatron systemd-udevd[237]: RUN '/usr/sbin/dmsetup udevcomplete $env{DM_COOKIE}' /usr/lib/udev/rules.d/95-dm-notify.rules:12
Mai 04 14:51:39 Megatron systemd-udevd[237]: handling device node '/dev/dm-6', devnum=b254:6, mode=0600, uid=0, gid=0
Mai 04 14:51:39 Megatron systemd-udevd[237]: preserve already existing symlink '/dev/block/254:6' to '../dm-6'
Mai 04 14:51:39 Megatron systemd-udevd[237]: creating link '/dev/mapper/vghdd-lvhome' to '/dev/dm-6'
Mai 04 14:51:39 Megatron systemd-udevd[237]: '/usr/sbin/dmsetup udevcomplete 6354338' [1149] exit with return code 0
Mai 04 14:51:39 Megatron systemd-udevd[237]: adding watch on '/dev/dm-6'
Mai 04 14:51:39 Megatron systemd-udevd[237]: created db file '/run/udev/data/b254:6' for '/devices/virtual/block/dm-6'
Mai 04 14:51:39 Megatron systemd-udevd[237]: passed -1 bytes to netlink monitor 0xdf3a20
Mai 04 14:51:39 Megatron systemd-udevd[237]: seq 2261 processed with 0
Mai 04 14:51:39 Megatron systemd-udevd[233]: device 0xdffec0 has devpath '/devices/virtual/block/dm-6'
Mai 04 14:51:39 Megatron systemd-udevd[233]: inotify event: 8 for /dev/dm-6
Mai 04 14:51:39 Megatron systemd-udevd[233]: device /dev/dm-6 closed, synthesising 'change'
Mai 04 14:51:39 Megatron systemd-udevd[233]: seq 2262 queued, 'change' 'block'
Mai 04 14:51:39 Megatron systemd-udevd[233]: passed 204 bytes to netlink monitor 0xdef5a0
Mai 04 14:51:39 Megatron systemd-udevd[235]: seq 2262 running
Mai 04 14:51:39 Megatron systemd-udevd[235]: device 0xdef5a0 filled with db file data
Mai 04 14:51:39 Megatron systemd-udevd[235]: removing watch on '/dev/dm-6'
Mai 04 14:51:39 Megatron systemd-udevd[235]: LINK 'mapper/vghdd-lvhome' /usr/lib/udev/rules.d/10-dm.rules:110
Mai 04 14:51:39 Megatron systemd-udevd[235]: IMPORT '/usr/sbin/dmsetup splitname --nameprefixes --noheadings --rows vghdd-lvhome' /usr/lib/udev/rules.d/11-dm-lvm.rules:21
Mai 04 14:51:39 Megatron systemd-udevd[235]: '/usr/sbin/dmsetup splitname --nameprefixes --noheadings --rows vghdd-lvhome'(out) 'DM_VG_NAME='vghdd''
Mai 04 14:51:39 Megatron systemd-udevd[235]: '/usr/sbin/dmsetup splitname --nameprefixes --noheadings --rows vghdd-lvhome'(out) 'DM_LV_NAME='lvhome''
Mai 04 14:51:39 Megatron systemd-udevd[235]: '/usr/sbin/dmsetup splitname --nameprefixes --noheadings --rows vghdd-lvhome'(out) 'DM_LV_LAYER='''
Mai 04 14:51:39 Megatron systemd-udevd[235]: '/usr/sbin/dmsetup splitname --nameprefixes --noheadings --rows vghdd-lvhome' [1154] exit with return code 0
Mai 04 14:51:39 Megatron systemd-udevd[235]: LINK 'vghdd/lvhome' /usr/lib/udev/rules.d/11-dm-lvm.rules:30
Mai 04 14:51:42 Megatron systemd-udevd[233]: cleanup idle workers
Mai 04 14:51:52 Megatron systemd-udevd[233]: validate module index
Mai 04 14:51:52 Megatron systemd-udevd[233]: seq 2273 queued, 'change' 'backlight'
Mai 04 14:51:52 Megatron systemd-udevd[233]: seq 2273 forked new worker [1338]
Mai 04 14:51:52 Megatron systemd-udevd[1338]: seq 2273 running
Mai 04 14:51:52 Megatron systemd-udevd[1338]: no db file to read /run/udev/data/+backlight:acpi_video0: No such file or directory
Mai 04 14:51:52 Megatron systemd-udevd[1338]: device 0xe0ade0 has devpath '/devices/pci0000:00/0000:00:02.0'
Mai 04 14:51:52 Megatron systemd-udevd[1338]: device 0xe0b380 has devpath '/devices/pci0000:00'
Mai 04 14:51:52 Megatron systemd-udevd[1338]: device 0xe0ade0 filled with db file data
Mai 04 14:51:52 Megatron systemd-udevd[1338]: passed -1 bytes to netlink monitor 0xe10450
Mai 04 14:51:52 Megatron systemd-udevd[1338]: seq 2273 processed with 0
Mai 04 14:51:52 Megatron systemd-udevd[233]: seq 2273 done with 0
Mai 04 14:51:52 Megatron systemd-udevd[233]: seq 2274 queued, 'change' 'backlight'
Mai 04 14:51:52 Megatron systemd-udevd[233]: passed 199 bytes to netlink monitor 0xdef5a0
Mai 04 14:51:52 Megatron systemd-udevd[1338]: seq 2274 processed with 0
Mai 04 14:51:55 Megatron systemd-udevd[233]: cleanup idle workers
Mai 04 14:51:55 Megatron systemd-udevd[233]: validate module index
Mai 04 14:51:55 Megatron systemd-udevd[233]: worker [1338] exit
Mai 04 14:51:55 Megatron systemd-udevd[233]: worker [1338] cleaned up
Und wenn du mal den Filter nach udevd weglässt?
journalctl -b --no-pager | grep serio
Ist jetzt nicht nur ein boot, sondern alle boots, die ich heute beim dranrumbasteln gemacht habe. Dass journalctl keine last-boot-flag hat, ist echt ein wenig schade. Der aktuelle Boot kommt vom rumspielen mit dem Service-file, deswegen kein udev-debug-log.
$journalctl --since=heute | grep -i serio

Mai 04 11:28:56 Megatron kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Mai 04 11:28:56 Megatron kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
Mai 04 11:28:56 Megatron kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
Mai 04 11:28:57 Megatron kernel: psmouse serio1: trackpoint: IBM TrackPoint firmware: 0x0e, buttons: 3/3
Mai 04 11:28:57 Megatron kernel: input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/input/input16
Mai 04 11:29:06 Megatron udevadm[850]: file '/sys/devices/platform/i8042/serio1/sensitivity' appeared after 0 loops
Mai 04 11:29:06 Megatron udevadm[850]: ATTR '/sys/devices/platform/i8042/serio1/sensitivity' writing '250' /etc/udev/rules.d/50-trackpointrev.rules:1
Mai 04 11:29:06 Megatron udevadm[850]: file '/sys/devices/platform/i8042/serio1/speed' appeared after 0 loops
Mai 04 11:29:06 Megatron udevadm[850]: ATTR '/sys/devices/platform/i8042/serio1/speed' writing '130' /etc/udev/rules.d/50-trackpointrev.rules:2
Mai 04 11:29:06 Megatron udevadm[850]: file '/sys/devices/platform/i8042/serio1/press_to_select' appeared after 0 loops
Mai 04 11:29:06 Megatron udevadm[850]: ATTR '/sys/devices/platform/i8042/serio1/press_to_select' writing '1' /etc/udev/rules.d/50-trackpointrev.rules:3
Mai 04 11:29:06 Megatron udevadm[850]: DEVPATH=/devices/platform/i8042/serio1
Mai 04 11:29:06 Megatron udevadm[850]: MODALIAS=serio:ty01pr00id00ex00
Mai 04 11:29:06 Megatron udevadm[850]: SERIO_EXTRA=00
Mai 04 11:29:06 Megatron udevadm[850]: SERIO_ID=00
Mai 04 11:29:06 Megatron udevadm[850]: SERIO_PROTO=00
Mai 04 11:29:06 Megatron udevadm[850]: SERIO_TYPE=01
Mai 04 11:29:06 Megatron udevadm[850]: SUBSYSTEM=serio
Mai 04 13:17:52 Megatron kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Mai 04 13:17:52 Megatron kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
Mai 04 13:17:52 Megatron kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
Mai 04 13:17:53 Megatron kernel: psmouse serio1: trackpoint: IBM TrackPoint firmware: 0x0e, buttons: 3/3
Mai 04 13:17:53 Megatron kernel: input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/input/input12
Mai 04 13:18:03 Megatron udevadm[1002]: file '/sys/devices/platform/i8042/serio1/sensitivity' appeared after 0 loops
Mai 04 13:18:03 Megatron udevadm[1002]: ATTR '/sys/devices/platform/i8042/serio1/sensitivity' writing '250' /etc/udev/rules.d/50-trackpointrev.rules:1
Mai 04 13:18:03 Megatron udevadm[1002]: file '/sys/devices/platform/i8042/serio1/speed' appeared after 0 loops
Mai 04 13:18:03 Megatron udevadm[1002]: ATTR '/sys/devices/platform/i8042/serio1/speed' writing '130' /etc/udev/rules.d/50-trackpointrev.rules:2
Mai 04 13:18:04 Megatron udevadm[1002]: file '/sys/devices/platform/i8042/serio1/press_to_select' appeared after 0 loops
Mai 04 13:18:04 Megatron udevadm[1002]: ATTR '/sys/devices/platform/i8042/serio1/press_to_select' writing '1' /etc/udev/rules.d/50-trackpointrev.rules:3
Mai 04 13:18:04 Megatron udevadm[1002]: DEVPATH=/devices/platform/i8042/serio1
Mai 04 13:18:04 Megatron udevadm[1002]: MODALIAS=serio:ty01pr00id00ex00
Mai 04 13:18:04 Megatron udevadm[1002]: SERIO_EXTRA=00
Mai 04 13:18:04 Megatron udevadm[1002]: SERIO_ID=00
Mai 04 13:18:04 Megatron udevadm[1002]: SERIO_PROTO=00
Mai 04 13:18:04 Megatron udevadm[1002]: SERIO_TYPE=01
Mai 04 13:18:04 Megatron udevadm[1002]: SUBSYSTEM=serio
Mai 04 13:56:20 Megatron kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Mai 04 13:56:20 Megatron kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
Mai 04 13:56:20 Megatron kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
Mai 04 13:56:20 Megatron kernel: psmouse serio1: trackpoint: IBM TrackPoint firmware: 0x0e, buttons: 3/3
Mai 04 13:56:20 Megatron kernel: input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/input/input10
Mai 04 13:58:24 Megatron kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Mai 04 13:58:24 Megatron kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
Mai 04 13:58:24 Megatron kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
Mai 04 13:58:25 Megatron kernel: psmouse serio1: trackpoint: IBM TrackPoint firmware: 0x0e, buttons: 3/3
Mai 04 13:58:25 Megatron kernel: input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/input/input17
Mai 04 14:00:56 Megatron kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Mai 04 14:00:56 Megatron kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
Mai 04 14:00:56 Megatron kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
Mai 04 14:00:56 Megatron kernel: psmouse serio1: trackpoint: IBM TrackPoint firmware: 0x0e, buttons: 3/3
Mai 04 14:00:56 Megatron kernel: input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/input/input17
Mai 04 14:10:20 Megatron kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Mai 04 14:10:20 Megatron kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
Mai 04 14:10:20 Megatron kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
Mai 04 14:10:21 Megatron kernel: psmouse serio1: trackpoint: IBM TrackPoint firmware: 0x0e, buttons: 3/3
Mai 04 14:10:21 Megatron kernel: input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/input/input9
Mai 04 14:15:02 Megatron kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Mai 04 14:15:02 Megatron kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
Mai 04 14:15:02 Megatron kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
Mai 04 14:15:03 Megatron kernel: psmouse serio1: trackpoint: IBM TrackPoint firmware: 0x0e, buttons: 3/3
Mai 04 14:15:03 Megatron kernel: input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/input/input9
Mai 04 14:25:15 Megatron kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Mai 04 14:25:15 Megatron kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
Mai 04 14:25:15 Megatron kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
Mai 04 14:25:15 Megatron kernel: psmouse serio1: trackpoint: IBM TrackPoint firmware: 0x0e, buttons: 3/3
Mai 04 14:25:16 Megatron kernel: input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/input/input9
Mai 04 14:33:54 Megatron kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Mai 04 14:33:54 Megatron kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
Mai 04 14:33:54 Megatron kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
Mai 04 14:33:54 Megatron kernel: psmouse serio1: trackpoint: IBM TrackPoint firmware: 0x0e, buttons: 3/3
Mai 04 14:33:54 Megatron kernel: input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/input/input16
Mai 04 14:34:04 Megatron echo[1024]: 130 > /sys/devices/platform/i8042/serio1/speed
Mai 04 14:34:04 Megatron echo[1034]: 250 > /sys/devices/platform/i8042/serio1/sensitivity
Mai 04 14:34:04 Megatron echo[1036]: 1 > /sys/devices/platform/i8042/serio1/press_to_select
Mai 04 14:36:30 Megatron kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Mai 04 14:36:30 Megatron kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
Mai 04 14:36:30 Megatron kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
Mai 04 14:36:31 Megatron kernel: psmouse serio1: trackpoint: IBM TrackPoint firmware: 0x0e, buttons: 3/3
Mai 04 14:36:31 Megatron kernel: input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/input/input9
Mai 04 14:51:28 Megatron kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Mai 04 14:51:28 Megatron kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
Mai 04 14:51:28 Megatron kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
Mai 04 14:51:28 Megatron systemd-udevd[236]: no db file to read /run/udev/data/+bus:serio: No such file or directory
Mai 04 14:51:28 Megatron systemd-udevd[235]: device 0xe0c4b0 has devpath '/bus/serio/drivers'
Mai 04 14:51:28 Megatron systemd-udevd[235]: device 0xdfe160 has devpath '/bus/serio'
Mai 04 14:51:28 Megatron systemd-udevd[236]: device 0xdef5a0 has devpath '/bus/serio/drivers'
Mai 04 14:51:28 Megatron systemd-udevd[236]: device 0xe0cfc0 has devpath '/bus/serio'
Mai 04 14:51:29 Megatron kernel: psmouse serio1: trackpoint: IBM TrackPoint firmware: 0x0e, buttons: 3/3
Mai 04 14:51:29 Megatron kernel: input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/input/input16
Mai 04 14:51:29 Megatron systemd-udevd[245]: creating symlink '/dev/input/by-path/platform-i8042-serio-0-event-kbd' to '../event0'
Mai 04 14:51:30 Megatron systemd-udevd[258]: no db file to read /run/udev/data/+module:serio_raw: No such file or directory
Mai 04 14:51:30 Megatron systemd-udevd[244]: no db file to read /run/udev/data/+drivers:serio_raw: No such file or directory
Mai 04 14:51:30 Megatron systemd-udevd[244]: device 0xdfde00 has devpath '/bus/serio/drivers'
Mai 04 14:51:30 Megatron systemd-udevd[244]: device 0xe0b920 has devpath '/bus/serio'
Mai 04 14:51:30 Megatron systemd-udevd[244]: device 0xdfe130 has devpath '/bus/serio/drivers'
Mai 04 14:51:30 Megatron systemd-udevd[244]: device 0xdfcd70 has devpath '/bus/serio'
Mai 04 14:51:30 Megatron systemd-udevd[235]: device 0xdff090 has devpath '/devices/platform/i8042/serio1/input/input16'
Mai 04 14:51:30 Megatron systemd-udevd[235]: LINK 'input/by-path/platform-i8042-serio-1-mouse' /usr/lib/udev/rules.d/60-persistent-input.rules:32
Mai 04 14:51:30 Megatron systemd-udevd[235]: creating link '/dev/input/by-path/platform-i8042-serio-1-mouse' to '/dev/input/mouse1'
Mai 04 14:51:30 Megatron systemd-udevd[241]: creating symlink '/dev/input/by-path/platform-i8042-serio-1-event-mouse' to '../event16'
Mai 04 15:03:05 Megatron kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Mai 04 15:03:05 Megatron kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
Mai 04 15:03:05 Megatron kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
Mai 04 15:03:05 Megatron systemd-udevd[236]: no db file to read /run/udev/data/+bus:serio: No such file or directory
Mai 04 15:03:05 Megatron systemd-udevd[236]: device 0x15f6820 has devpath '/bus/serio/drivers'
Mai 04 15:03:05 Megatron systemd-udevd[236]: device 0x1604930 has devpath '/bus/serio'
Mai 04 15:03:05 Megatron systemd-udevd[237]: device 0x1605c50 has devpath '/bus/serio/drivers'
Mai 04 15:03:05 Megatron systemd-udevd[237]: device 0x1604b30 has devpath '/bus/serio'
Mai 04 15:03:06 Megatron kernel: psmouse serio1: trackpoint: IBM TrackPoint firmware: 0x0e, buttons: 3/3
Mai 04 15:03:06 Megatron kernel: input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/input/input9
Mai 04 15:03:06 Megatron systemd-udevd[258]: device 0x1605cb0 has devpath '/devices/platform/i8042/serio0/input/input0'
Mai 04 15:03:06 Megatron systemd-udevd[258]: creating symlink '/dev/input/by-path/platform-i8042-serio-0-event-kbd' to '../event0'
Mai 04 15:03:07 Megatron systemd-udevd[257]: no db file to read /run/udev/data/+module:serio_raw: No such file or directory
Mai 04 15:03:07 Megatron systemd-udevd[257]: no db file to read /run/udev/data/+drivers:serio_raw: No such file or directory
Mai 04 15:03:07 Megatron systemd-udevd[257]: device 0x16042d0 has devpath '/bus/serio/drivers'
Mai 04 15:03:07 Megatron systemd-udevd[257]: device 0x16045c0 has devpath '/bus/serio'
Mai 04 15:03:07 Megatron systemd-udevd[257]: device 0x1604b30 has devpath '/bus/serio/drivers'
Mai 04 15:03:07 Megatron systemd-udevd[257]: device 0x1612120 has devpath '/bus/serio'
Mai 04 15:03:07 Megatron systemd-udevd[243]: device 0x1604930 has devpath '/devices/platform/i8042/serio1'
Mai 04 15:03:07 Megatron systemd-udevd[243]: LINK 'input/by-path/platform-i8042-serio-1-mouse' /usr/lib/udev/rules.d/60-persistent-input.rules:32
Mai 04 15:03:07 Megatron systemd-udevd[243]: creating link '/dev/input/by-path/platform-i8042-serio-1-mouse' to '/dev/input/mouse1'
Mai 04 15:03:07 Megatron systemd-udevd[257]: creating link '/dev/input/by-path/platform-i8042-serio-1-event-mouse' to '/dev/input/event9'
Mai 04 15:03:07 Megatron systemd-udevd[257]: creating symlink '/dev/input/by-path/platform-i8042-serio-1-event-mouse' to '../event9'
$ journalctl --since=heute | grep -i track

Mai 04 11:28:57 Megatron kernel: psmouse serio1: trackpoint: IBM TrackPoint firmware: 0x0e, buttons: 3/3
Mai 04 11:28:57 Megatron kernel: input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/input/input16
Mai 04 11:29:06 Megatron udevadm[850]: read rules file: /etc/udev/rules.d/50-trackpointrev.rules
Mai 04 11:29:06 Megatron systemd[1]: Started udev-Trackpoint-Hack.
Mai 04 11:29:06 Megatron udevadm[850]: ATTR '/sys/devices/platform/i8042/serio1/sensitivity' writing '250' /etc/udev/rules.d/50-trackpointrev.rules:1
Mai 04 11:29:06 Megatron udevadm[850]: ATTR '/sys/devices/platform/i8042/serio1/speed' writing '130' /etc/udev/rules.d/50-trackpointrev.rules:2
Mai 04 11:29:06 Megatron udevadm[850]: ATTR '/sys/devices/platform/i8042/serio1/press_to_select' writing '1' /etc/udev/rules.d/50-trackpointrev.rules:3
Mai 04 13:17:53 Megatron kernel: psmouse serio1: trackpoint: IBM TrackPoint firmware: 0x0e, buttons: 3/3
Mai 04 13:17:53 Megatron kernel: input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/input/input12
Mai 04 13:18:03 Megatron udevadm[1002]: read rules file: /etc/udev/rules.d/50-trackpointrev.rules
Mai 04 13:18:03 Megatron udevadm[1002]: ATTR '/sys/devices/platform/i8042/serio1/sensitivity' writing '250' /etc/udev/rules.d/50-trackpointrev.rules:1
Mai 04 13:18:03 Megatron udevadm[1002]: ATTR '/sys/devices/platform/i8042/serio1/speed' writing '130' /etc/udev/rules.d/50-trackpointrev.rules:2
Mai 04 13:18:03 Megatron systemd[1]: Started udev-Trackpoint-Hack.
Mai 04 13:18:04 Megatron udevadm[1002]: ATTR '/sys/devices/platform/i8042/serio1/press_to_select' writing '1' /etc/udev/rules.d/50-trackpointrev.rules:3
Mai 04 12:48:23 Megatron systemd[1]: [/etc/systemd/system/configureTrackpoint.service:6] Unknown lvalue 'After' in section 'Service'
Mai 04 13:56:20 Megatron systemd[1]: [/etc/systemd/system/configureTrackpoint.service:6] Unknown lvalue 'After' in section 'Service'
Mai 04 13:56:20 Megatron kernel: psmouse serio1: trackpoint: IBM TrackPoint firmware: 0x0e, buttons: 3/3
Mai 04 13:56:20 Megatron kernel: input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/input/input10
Mai 04 13:56:30 Megatron systemd[1]: Started Configure Trackpoint-Settings.
Mai 04 13:57:25 Megatron systemd[1]: [/etc/systemd/system/configureTrackpoint.service:6] Unknown lvalue 'After' in section 'Service'
Mai 04 13:58:25 Megatron kernel: psmouse serio1: trackpoint: IBM TrackPoint firmware: 0x0e, buttons: 3/3
Mai 04 13:58:25 Megatron kernel: input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/input/input17
Mai 04 14:00:56 Megatron kernel: psmouse serio1: trackpoint: IBM TrackPoint firmware: 0x0e, buttons: 3/3
Mai 04 14:00:56 Megatron kernel: input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/input/input17
Mai 04 14:10:21 Megatron kernel: psmouse serio1: trackpoint: IBM TrackPoint firmware: 0x0e, buttons: 3/3
Mai 04 14:10:21 Megatron kernel: input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/input/input9
Mai 04 14:15:03 Megatron kernel: psmouse serio1: trackpoint: IBM TrackPoint firmware: 0x0e, buttons: 3/3
Mai 04 14:15:03 Megatron kernel: input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/input/input9
Mai 04 14:25:15 Megatron kernel: psmouse serio1: trackpoint: IBM TrackPoint firmware: 0x0e, buttons: 3/3
Mai 04 14:25:16 Megatron kernel: input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/input/input9
Mai 04 14:25:26 Megatron systemd[1]: Started setup custom Trackpoint-Settings.
Mai 04 14:33:54 Megatron kernel: psmouse serio1: trackpoint: IBM TrackPoint firmware: 0x0e, buttons: 3/3
Mai 04 14:33:54 Megatron kernel: input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/input/input16
Mai 04 14:34:04 Megatron systemd[1]: Started setup custom Trackpoint-Settings.
Mai 04 14:36:31 Megatron kernel: psmouse serio1: trackpoint: IBM TrackPoint firmware: 0x0e, buttons: 3/3
Mai 04 14:36:31 Megatron kernel: input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/input/input9
Mai 04 14:36:40 Megatron systemd[1]: Starting setup custom Trackpoint-Settings...
Mai 04 14:36:40 Megatron systemd[1]: Started setup custom Trackpoint-Settings.
Mai 04 14:51:28 Megatron systemd-udevd[233]: read rules file: /etc/udev/rules.d/50-trackpointrev.rules
Mai 04 14:51:29 Megatron kernel: psmouse serio1: trackpoint: IBM TrackPoint firmware: 0x0e, buttons: 3/3
Mai 04 14:51:29 Megatron kernel: input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/input/input16
Mai 04 13:55:57 Megatron systemd[1]: Starting setup custom Trackpoint-Settings...
Mai 04 13:55:57 Megatron systemd[1]: Started setup custom Trackpoint-Settings.
Mai 04 14:02:25 Megatron systemd-udevd[233]: read rules file: /etc/udev/rules.d/50-trackpointrev.rules
Mai 04 15:03:05 Megatron systemd-udevd[233]: read rules file: /etc/udev/rules.d/50-trackpointrev.rules
Mai 04 15:03:06 Megatron kernel: psmouse serio1: trackpoint: IBM TrackPoint firmware: 0x0e, buttons: 3/3
Mai 04 15:03:06 Megatron kernel: input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/input/input9
Mai 04 15:04:08 Megatron systemd[1]: Starting setup custom Trackpoint-Settings...
Mai 04 15:04:08 Megatron systemd[1]: Started setup custom Trackpoint-Settings.
Okay, also nach 14:51:28 kommt nichts mit file ... appeared .. ATTR ... writing .., die Regel wird also ignoriert, warum auch immer. Ich würde noch folgendes versuchen, um das Problem in #9 zu lösen, ATTR ist ja immer relativ, also müsste man auch übergeordnete Verzeichnisse erreichen können.
SUBSYSTEM=="input", ATTR{name}=="TPPS/2 IBM TrackPoint", ATTR{../../../sensitivity}="250"
Das wäre dann so ähnlich wie die zweite Lösung im ThinkWiki, aber ohne Script.
Schon mit
ACTION=="add"
in der udev-Regel probiert?
ACTION=="add" habe ich schon probiert, ohne Erfolg.
SUBSYSTEM=="input", ATTR{name}=="TPPS/2 IBM TrackPoint", ATTR{../../../sensitivity}="250"
habe ich ebenfalls versucht, allerdings kommt dann beim Boot ein "file not found", genauer ein
error opening ATTR{/sys/devices/platform/i8042/serio1/input/input16/../../.. sensitivity} for writing: No such file or directory
Interessanterweise nur für sensitivity, bricht udev ein rule-file ab, wenn die erste Regel einen Fehler produziert?
In der Fehlermeldung steht vor sensitivity tatsächlich ein Leerzeichen und kein Schrägstrich? Also wir sind in jedem Fall eine Verzeichnisebene zu hoch. Versuche es noch einmal mit
SUBSYSTEM=="input", ATTR{name}=="TPPS/2 IBM TrackPoint", ATTR{../../sensitivity}="250"
Ich habe hier mal etwas ähnliches probiert
SUBSYSTEM=="input", ATTR{name}=="SynPS/2 Synaptics TouchPad", ATTR{../../rate}="40"
und es funktioniert
# cat /sys/devices/platform/i8042/serio4/rate 
80
# udevadm trigger --verbose --attr-match=name="SynPS/2 Synaptics TouchPad"
/sys/devices/platform/i8042/serio4/input/input11
# cat /sys/devices/platform/i8042/serio4/rate 
40
Die Fehlermeldung im Journal mit ATTR{../../../rate} sieht bei mir so aus
error opening ATTR{/sys/devices/platform/i8042/serio4/input/input11/../../../rate} for writing: No such file or directory
hydro schriebIn der Fehlermeldung steht vor sensitivity tatsächlich ein Leerzeichen und kein Schrägstrich?
Hupps, da ist mir beim nutzen der Copy-Paste wohl was runtergefallen, da ist jedenfalls ein Slash.
SUBSYSTEM=="input", ATTR{name}=="TPPS/2 IBM TrackPoint", ATTR{../../sensitivity}="250"
Klick!

Allerherzlichbesten Dank, hydro! Und vielen herzlichen Dank für den netten Nebeneffekt, dass ich nebenher noch so einiges über udev-Regeln bzw. Deviceadressierung gelernt habe! 🙂