Skip to content

Input Nodes not working anymore after renaming Physical Devices #22

@amadeusp

Description

@amadeusp

Steps

  1. On an untouched system (no PipeWire, no WirePlumber settings have been altered after a fresh installation), I renamed the Physical Devices with Simple Wireplumber GUI
  2. This created a configuration file at ~/.config/wireplumber/wireplumber.conf.d/52-SWG-rename-devices.conf
  3. I restarted the system with systemctl reboot

This is what Simple WirePlumber GUI created in Contents of 52-SWG-rename-devices.conf:

monitor.alsa.rules = [
  {
    matches = [
      {
        device.name = "alsa_card.usb-RME_Fireface_UFX__23609326__A76899246704FC8-00"
      }
    ]
    actions = {
      update-props = {
        device.description = "Fireface UFX, RME"
        device.nick = "Fireface UFX, RME"
      }
    }
  },
  {
    matches = [
      {
        device.name = "alsa_card.usb-XMOS_XMOS_USB_Audio_2.0_0000-00"
      }
    ]
    actions = {
      update-props = {
        device.description = "Source, Dangerous Music"
        device.nick = "Source, Dangerous Music"
      }
    }
  },
  {
    matches = [
      {
        device.name = "alsa_card.usb-046d_BRIO_4K_Stream_Edition_59515279-02"
      }
    ]
    actions = {
      update-props = {
        device.description = "BRIO 4K SE, logi"
        device.nick = "BRIO 4K SE, logi"
      }
    }
  },
  {
    matches = [
      {
        device.name = "alsa_card.usb-046d_Logitech_BRIO_CB721F45-03"
      }
    ]
    actions = {
      update-props = {
        device.description = "BRIO 4K, logi"
        device.nick = "BRIO 4K, logi"
      }
    }
  },
  {
    matches = [
      {
        device.name = "alsa_card.pci-0000_3e_00.1"
      }
    ]
    actions = {
      update-props = {
        device.description = "Radeon Pro WX 7100 (HDMI) #1, AMD"
        device.nick = "Radeon Pro WX 7100 (HDMI) #1, AMD"
      }
    }
  },
  {
    matches = [
      {
        device.name = "alsa_card.pci-0000_3f_00.1"
      }
    ]
    actions = {
      update-props = {
        device.description = "Radeon Pro WX 7100 (HDMI) #2, AMD"
        device.nick = "Radeon Pro WX 7100 (HDMI) #2, AMD"
      }
    }
  },
  {
    matches = [
      {
        device.name = "alsa_card.pci-0000_42_00.4"
      }
    ]
    actions = {
      update-props = {
        device.description = "ProArt X570-Creator WiFi, ASUS"
        device.nick = "ProArt X570-Creator WiFi, ASUS"
      }
    }
  },
]

Expected behavior:

The renamed devices would work like before, and initially, it made that impression.

Bug

After a while, however, I realized, that although all the Input Nodes were still visible and I could for instance still use the webcam's video signals in OBS, it would not be possible anymore to record any of those Input Nodes' audio signals anymore. They would show up as sources (e.g. in Zen Browser or Audacity) but there was no signal coming through. Additionally, Audacity as well as Zen Browser would become unresponsive trying to record from any of the Input Nodes. I looked ad journalctl but did not see anything there.

Deleting 52-SWG-rename-devices.conf and rebooting, however, made the Input Nodes work again.

Renaming the Physical Devices manually solved the issues with the Input Nodes

For this, I creaded a configuration file for every Physical Device (using wpctl status and wpctl inspect ID) and rebooted the system, after which everything worked as expected.

I no idea why it did not work with Simple WirePlumber GUI, as it looks like it did the same thing as I did (apart from me separating the configuration on a file per device basis).

I could replicate the same issues with Simple WirePlumber GUI on my laptop and ended up doing it manually there too (with the same result of everything working as expected).

These are the configuration files I created manually:

Contents of51-fireface-rename.conf

monitor.alsa.rules = [
  {
    matches = [
      {
        device.name = "alsa_card.usb-RME_Fireface_UFX__23609326__A76899246704FC8-00"
      }
    ]
    actions = {
      update-props = {
        device.description = "Fireface UFX, RME"
        device.nick = "Fireface UFX, RME"
      }
    }
  }
]

Contents of 52-source-rename.conf

monitor.alsa.rules = [
  {
    matches = [
      {
        device.name = "alsa_card.usb-XMOS_XMOS_USB_Audio_2.0_0000-00"
      }
    ]
    actions = {
      update-props = {
        device.description = "Source, Dangerous Music"
        device.nick = "Source, Dangerous Music"
      }
    }
  }
]

Contents of 53-brio-se-rename.conf:

monitor.alsa.rules = [
  {
    matches = [
      {
        device.name = "alsa_card.usb-046d_BRIO_4K_Stream_Edition_59515279-02"
      }
    ]
    actions = {
      update-props = {
        device.description = "BRIO 4K SE, logi"
        device.nick = "BRIO 4K SE, logi"
      }
    }
  }
]

Contents of 54-brio-rename.conf:

monitor.alsa.rules = [
  {
    matches = [
      {
        device.name = "alsa_card.usb-046d_Logitech_BRIO_CB721F45-03"
      }
    ]
    actions = {
      update-props = {
        device.description = "BRIO 4K, logi"
        device.nick = "BRIO 4K, logi"
      }
    }
  }
]

Contents of 55-wx7100-1-rename.conf:

monitor.alsa.rules = [
  {
    matches = [
      {
        device.name = "alsa_card.pci-0000_3e_00.1"
      }
    ]
    actions = {
      update-props = {
        device.description = "Radeon Pro WX 7100 (HDMI) #1, AMD"
        device.nick = "Radeon Pro WX 7100 (HDMI) #1, AMD"
      }
    }
  }
]

Contents of 56-wx7100-2-rename.conf:

monitor.alsa.rules = [
  {
    matches = [
      {
        device.name = "alsa_card.pci-0000_3f_00.1"
      }
    ]
    actions = {
      update-props = {
        device.description = "Radeon Pro WX 7100 (HDMI) #2, AMD"
        device.nick = "Radeon Pro WX 7100 (HDMI) #2, AMD"
      }
    }
  }
]

Contents of 57-proart-rename.conf:

monitor.alsa.rules = [
  {
    matches = [
      {
        device.name = "alsa_card.pci-0000_42_00.4"
      }
    ]
    actions = {
      update-props = {
        device.description = "ProArt X570-Creator WiFi, ASUS"
        device.nick = "ProArt X570-Creator WiFi, ASUS"
      }
    }
  }
]

My system

System:
  Kernel: 6.15.4-arch2-1 arch: x86_64 bits: 64 compiler: gcc v: 15.1.1
    clocksource: tsc avail: hpet,acpi_pm parameters: initrd=\initramfs-linux.img
    root=PARTUUID=702f93c0-b9a9-4a46-9f1a-1f246057ba77 zswap.enabled=0 rw
    rootfstype=ext4 splash quiet loglevel=3
  Desktop: GNOME v: 48.3 tk: GTK v: 3.24.49 wm: gnome-shell
    tools: gsd-screensaver-proxy dm: GDM v: 48.0 Distro: Arch Linux
Machine:
  Type: Desktop System: ASUS product: N/A v: N/A serial: <superuser required>
  Mobo: ASUSTeK model: ProArt X570-CREATOR WIFI v: Rev X.0x
    serial: <superuser required> part-nu: SKU uuid: <superuser required>
    UEFI: American Megatrends v: 0801 date: 04/26/2022
Battery:
  Message: No system battery data found. Is one present?
Memory:
  System RAM: total: 64 GiB available: 62.7 GiB used: 5.51 GiB (8.8%)
  Message: For most reliable report, use superuser + dmidecode.
  Array-1: capacity: 128 GiB slots: 4 modules: 4 EC: None
    max-module-size: 32 GiB note: est.
  Device-1: DIMM_A1 type: DDR4 detail: synchronous unbuffered (unregistered)
    size: 16 GiB speed: 2400 MT/s volts: note: check curr: 1 min: 1 max: 1
    width (bits): data: 64 total: 64 manufacturer: Kingston
    part-no: KF3200C16D4/16GX serial: <filter>
  Device-2: DIMM_A2 type: DDR4 detail: synchronous unbuffered (unregistered)
    size: 16 GiB speed: 2400 MT/s volts: note: check curr: 1 min: 1 max: 1
    width (bits): data: 64 total: 64 manufacturer: Kingston
    part-no: KF3200C16D4/16GX serial: <filter>
  Device-3: DIMM_B1 type: DDR4 detail: synchronous unbuffered (unregistered)
    size: 16 GiB speed: 2400 MT/s volts: note: check curr: 1 min: 1 max: 1
    width (bits): data: 64 total: 64 manufacturer: Kingston
    part-no: KF3200C16D4/16GX serial: <filter>
  Device-4: DIMM_B2 type: DDR4 detail: synchronous unbuffered (unregistered)
    size: 16 GiB speed: 2400 MT/s volts: note: check curr: 1 min: 1 max: 1
    width (bits): data: 64 total: 64 manufacturer: Kingston
    part-no: KF3200C16D4/16GX serial: <filter>
CPU:
  Info: model: AMD Ryzen 9 3900X bits: 64 type: MT MCP arch: Zen 2 gen: 2
    level: v3 note: check built: 2020-22 process: TSMC n7 (7nm) family: 0x17 (23)
    model-id: 0x71 (113) stepping: 0 microcode: 0x8701034
  Topology: cpus: 1x dies: 1 clusters: 1 cores: 12 threads: 24 tpc: 2
    smt: enabled cache: L1: 768 KiB desc: d-12x32 KiB; i-12x32 KiB L2: 6 MiB
    desc: 12x512 KiB L3: 64 MiB desc: 4x16 MiB
  Speed (MHz): avg: 1746 min/max: 563/4674 boost: enabled scaling:
    driver: amd-pstate-epp governor: powersave cores: 1: 1746 2: 1746 3: 1746
    4: 1746 5: 1746 6: 1746 7: 1746 8: 1746 9: 1746 10: 1746 11: 1746 12: 1746
    13: 1746 14: 1746 15: 1746 16: 1746 17: 1746 18: 1746 19: 1746 20: 1746
    21: 1746 22: 1746 23: 1746 24: 1746 bogomips: 182050
  Flags: 3dnowprefetch abm adx aes aperfmperf apic arat avic avx avx2 bmi1
    bmi2 bpext cat_l3 cdp_l3 clflush clflushopt clwb clzero cmov cmp_legacy
    constant_tsc cpb cpuid cqm cqm_llc cqm_mbm_local cqm_mbm_total
    cqm_occup_llc cr8_legacy cx16 cx8 de decodeassists extapic extd_apicid
    f16c flushbyasid fma fpu fsgsbase fxsr fxsr_opt ht hw_pstate ibpb ibs
    irperf lahf_lm lbrv lm mba mca mce misalignsse mmx mmxext monitor movbe
    msr mtrr mwaitx nonstop_tsc nopl npt nrip_save nx osvw overflow_recov pae
    pat pausefilter pclmulqdq pdpe1gb perfctr_core perfctr_llc perfctr_nb
    pfthreshold pge pni popcnt pse pse36 rapl rdpid rdpru rdrand rdseed rdt_a
    rdtscp rep_good sep sev sev_es sha_ni skinit smap smca smep ssbd sse sse2
    sse4_1 sse4_2 sse4a ssse3 stibp succor svm_lock syscall tce topoext tsc
    tsc_scale umip v_spec_ctrl v_vmsave_vmload vgif vmcb_clean vme vmmcall
    wbnoinvd wdt x2apic xgetbv1 xsave xsavec xsaveerptr xsaveopt xtopology
  Vulnerabilities:
  Type: gather_data_sampling status: Not affected
  Type: ghostwrite status: Not affected
  Type: indirect_target_selection status: Not affected
  Type: itlb_multihit status: Not affected
  Type: l1tf status: Not affected
  Type: mds status: Not affected
  Type: meltdown status: Not affected
  Type: mmio_stale_data status: Not affected
  Type: reg_file_data_sampling status: Not affected
  Type: retbleed mitigation: untrained return thunk; SMT enabled with STIBP
    protection
  Type: spec_rstack_overflow mitigation: Safe RET
  Type: spec_store_bypass mitigation: Speculative Store Bypass disabled via
    prctl
  Type: spectre_v1 mitigation: usercopy/swapgs barriers and __user pointer
    sanitization
  Type: spectre_v2 mitigation: Retpolines; IBPB: conditional; STIBP:
    always-on; RSB filling; PBRSB-eIBRS: Not affected; BHI: Not affected
  Type: srbds status: Not affected
  Type: tsx_async_abort status: Not affected
Graphics:
  Device-1: Advanced Micro Devices [AMD/ATI] Ellesmere [Radeon Pro WX 7100]
    driver: amdgpu v: kernel arch: GCN-4 code: Arctic Islands process: GF 14nm
    built: 2016-20 pcie: gen: 3 speed: 8 GT/s lanes: 8 link-max: lanes: 16
    ports: active: DP-4 empty: DP-1,DP-2,DP-3 bus-ID: 3e:00.0
    chip-ID: 1002:67c4 class-ID: 0300 temp: 65.0 C
  Device-2: Advanced Micro Devices [AMD/ATI] Ellesmere [Radeon Pro WX 7100]
    driver: amdgpu v: kernel arch: GCN-4 code: Arctic Islands process: GF 14nm
    built: 2016-20 pcie: gen: 1 speed: 2.5 GT/s lanes: 4 link-max: gen: 3
    speed: 8 GT/s lanes: 16 ports: active: none empty: DP-5, DP-6, DP-7, DP-8
    bus-ID: 3f:00.0 chip-ID: 1002:67c4 class-ID: 0300 temp: 40.0 C
  Device-3: BRIO 4K Stream Edition
    driver: hid-generic,snd-usb-audio,usbhid,uvcvideo type: USB rev: 3.1
    speed: 5 Gb/s lanes: 1 mode: 3.2 gen-1x1 bus-ID: 6-3.4.3:6
    chip-ID: 046d:086b class-ID: 0300 serial: <filter>
  Device-4: Logitech BRIO driver: hid-generic,snd-usb-audio,usbhid,uvcvideo
    type: USB rev: 3.1 speed: 5 Gb/s lanes: 1 mode: 3.2 gen-1x1
    bus-ID: 6-4.4.4.1:9 chip-ID: 046d:085e class-ID: 0300 serial: <filter>
  Display: wayland server: X.org v: 1.21.1.18 with: Xwayland v: 24.1.8
    compositor: gnome-shell driver: X: loaded: amdgpu
    unloaded: modesetting,radeon alternate: fbdev,vesa dri: radeonsi
    gpu: amdgpu display-ID: 0
  Monitor-1: DP-4 model: VP32UQ serial: <filter> built: 2023 res: 3840x2160
    dpi: 139 gamma: 1.2 size: 700x390mm (27.56x15.35") diag: 801mm (31.5")
    ratio: 16:9 modes: max: 3840x2160 min: 640x480
  API: EGL Message: EGL data requires eglinfo. Check --recommends.
  Info: Tools: x11: xprop
Audio:
  Device-1: Advanced Micro Devices [AMD/ATI] Ellesmere HDMI Audio [Radeon RX
    470/480 / 570/580/590] driver: snd_hda_intel v: kernel pcie: gen: 3
    speed: 8 GT/s lanes: 8 link-max: lanes: 16 bus-ID: 3e:00.1
    chip-ID: 1002:aaf0 class-ID: 0403
  Device-2: Advanced Micro Devices [AMD/ATI] Ellesmere HDMI Audio [Radeon RX
    470/480 / 570/580/590] driver: snd_hda_intel v: kernel pcie: gen: 1
    speed: 2.5 GT/s lanes: 4 link-max: gen: 3 speed: 8 GT/s lanes: 16
    bus-ID: 3f:00.1 chip-ID: 1002:aaf0 class-ID: 0403
  Device-3: Advanced Micro Devices [AMD] Starship/Matisse HD Audio
    vendor: ASUSTeK driver: snd_hda_intel v: kernel pcie: gen: 4 speed: 16 GT/s
    lanes: 16 bus-ID: 42:00.4 chip-ID: 1022:1487 class-ID: 0403
  Device-4: RME Fireface UFX (23609326) driver: snd-usb-audio type: USB
    rev: 2.0 speed: 480 Mb/s lanes: 1 mode: 2.0 bus-ID: 3-4:2 chip-ID: 0424:3fb8
    class-ID: 0103 serial: <filter>
  Device-5: XMOS USB Audio 2.0 driver: snd-usb-audio type: USB rev: 2.0
    speed: 480 Mb/s lanes: 1 mode: 2.0 bus-ID: 3-5:4 chip-ID: 20b1:2001
    class-ID: fe01 serial: <filter>
  Device-6: Intech Studio: Grid
    driver: cdc_acm,hid-generic,snd-usb-audio,usbhid type: USB rev: 2.0
    speed: 12 Mb/s lanes: 1 mode: 1.1 bus-ID: 5-3.3:5 chip-ID: 03eb:ecad
    class-ID: 0103
  Device-7: BRIO 4K Stream Edition
    driver: hid-generic,snd-usb-audio,usbhid,uvcvideo type: USB rev: 3.1
    speed: 5 Gb/s lanes: 1 mode: 3.2 gen-1x1 bus-ID: 6-3.4.3:6
    chip-ID: 046d:086b class-ID: 0300 serial: <filter>
  Device-8: Logitech BRIO driver: hid-generic,snd-usb-audio,usbhid,uvcvideo
    type: USB rev: 3.1 speed: 5 Gb/s lanes: 1 mode: 3.2 gen-1x1
    bus-ID: 6-4.4.4.1:9 chip-ID: 046d:085e class-ID: 0300 serial: <filter>
  API: ALSA v: k6.15.4-arch2-1 status: kernel-api tools: N/A
  Server-1: PipeWire v: 1.4.6 status: active with: 1: pipewire-pulse
    status: active 2: wireplumber status: active 3: pipewire-alsa type: plugin
    4: pw-jack type: plugin tools: pactl,pw-cat,pw-cli,wpctl
Network:
  Device-1: Aquantia AQtion AQC113CS NBase-T/IEEE 802.3an Ethernet [Antigua
    10G] vendor: ASUSTeK ProArt X570-CREATOR WIFI driver: atlantic v: kernel
    pcie: gen: 4 speed: 16 GT/s lanes: 2 port: N/A bus-ID: 38:00.0
    chip-ID: 1d6a:94c0 class-ID: 0200
  IF: enp56s0 state: up speed: 1000 Mbps duplex: full mac: <filter>
  IP v4: <filter> type: noprefixroute scope: global broadcast: <filter>
  IP v6: <filter> type: dynamic noprefixroute scope: global
  IP v6: <filter> type: dynamic noprefixroute scope: global
  IP v6: <filter> type: noprefixroute scope: link
  Device-2: Intel Wi-Fi 6E AX210/AX1675 2x2 [Typhoon Peak] driver: iwlwifi
    v: kernel pcie: gen: 2 speed: 5 GT/s lanes: 1 bus-ID: 39:00.0
    chip-ID: 8086:2725 class-ID: 0280
  IF: wlan0 state: down mac: <filter>
  Device-3: Intel Ethernet I225-V vendor: ASUSTeK driver: igc v: kernel pcie:
    gen: 2 speed: 5 GT/s lanes: 1 port: N/A bus-ID: 3a:00.0 chip-ID: 8086:15f3
    class-ID: 0200
  IF: enp58s0 state: down mac: <filter>
  IF-ID-1: docker0 state: down mac: <filter>
  IP v4: <filter> scope: global broadcast: <filter>
  Info: services: NetworkManager, sshd, systemd-timesyncd, wpa_supplicant
  WAN IP: <filter>
Bluetooth:
  Device-1: N/A driver: btusb v: 0.8 type: USB rev: 2.0 speed: 12 Mb/s lanes: 1
    mode: 1.1 bus-ID: 5-2:2 chip-ID: 8087:0032 class-ID: e001
  Report: rfkill ID: hci0 rfk-id: 0 state: down bt-service: enabled,running
    rfk-block: hardware: no software: yes address: see --recommends
Logical:
  Message: No logical block device data found.
RAID:
  Message: No RAID data found.
Drives:
  Local Storage: total: 3.64 TiB used: 1.99 TiB (54.8%)
  SMART Message: Unable to run smartctl. Root privileges required.
  ID-1: /dev/nvme0n1 maj-min: 259:1 vendor: Samsung
    model: SSD 970 EVO Plus 2TB size: 1.82 TiB block-size: physical: 512 B
    logical: 512 B speed: 31.6 Gb/s lanes: 4 tech: SSD serial: <filter>
    fw-rev: 2B2QEXM7 temp: 46.9 C scheme: GPT
  ID-2: /dev/nvme1n1 maj-min: 259:0 vendor: Samsung
    model: SSD 970 EVO Plus 2TB size: 1.82 TiB block-size: physical: 512 B
    logical: 512 B speed: 31.6 Gb/s lanes: 4 tech: SSD serial: <filter>
    fw-rev: 2B2QEXM7 temp: 46.9 C scheme: GPT
  Message: No optical or floppy data found.
Partition:
  ID-1: / raw-size: 1.82 TiB size: 1.79 TiB (98.37%) used: 482.8 GiB (26.4%)
    fs: ext4 dev: /dev/nvme0n1p2 maj-min: 259:4 label: N/A
    uuid: 28b356ed-cb72-406c-9ad4-ac8fcd474dec
  ID-2: /boot raw-size: 1024 MiB size: 1022 MiB (99.80%)
    used: 175.2 MiB (17.1%) fs: vfat dev: /dev/nvme0n1p1 maj-min: 259:3
    label: N/A uuid: B16A-9A9D
  ID-3: /mnt/e410ce8d-4e17-4b15-801a-c3419dfa69ca raw-size: 1.82 TiB
    size: 1.79 TiB (98.37%) used: 1.52 TiB (85.1%) fs: ext4 dev: /dev/nvme1n1p1
    maj-min: 259:2 label: backup uuid: e410ce8d-4e17-4b15-801a-c3419dfa69ca
  ID-4: /mnt/smb/vault/amadeus raw-size: N/A size: 21.65 TiB
    used: 13.3 TiB (61.4%) fs: cifs dev: /dev/amadeus
  ID-5: /mnt/smb/vault/backup raw-size: N/A size: 21.65 TiB
    used: 13.3 TiB (61.4%) fs: cifs dev: /dev/backup
  ID-6: /mnt/smb/vault/shared raw-size: N/A size: 21.65 TiB
    used: 13.3 TiB (61.4%) fs: cifs dev: /dev/shared
Swap:
  Kernel: swappiness: 10 (default 60) cache-pressure: 100 (default) zswap: no
  ID-1: swap-1 type: zram size: 4 GiB used: 0 KiB (0.0%) priority: 100
    comp: zstd avail: lzo-rle,lzo,lz4,lz4hc,deflate,842 dev: /dev/zram0
Unmounted:
  Message: No unmounted partitions found.
USB:
  Hub-1: 1-0:1 info: hi-speed hub with single TT ports: 2 rev: 2.0
    speed: 480 Mb/s (57.2 MiB/s) lanes: 1 mode: 2.0 chip-ID: 1d6b:0002
    class-ID: 0900
  Hub-2: 2-0:1 info: super-speed hub ports: 2 rev: 3.1
    speed: 10 Gb/s (1.16 GiB/s) lanes: 1 mode: 3.2 gen-2x1 chip-ID: 1d6b:0003
    class-ID: 0900
  Hub-3: 3-0:1 info: hi-speed hub with single TT ports: 6 rev: 2.0
    speed: 480 Mb/s (57.2 MiB/s) lanes: 1 mode: 2.0 chip-ID: 1d6b:0002
    class-ID: 0900
  Device-1: 3-4:2 info: RME Fireface UFX (23609326) type: audio
    driver: snd-usb-audio interfaces: 5 rev: 2.0 speed: 480 Mb/s (57.2 MiB/s)
    lanes: 1 mode: 2.0 power: 100mA chip-ID: 0424:3fb8 class-ID: 0103
    serial: <filter>
  Device-2: 3-5:4 info: XMOS USB Audio 2.0 type: audio driver: snd-usb-audio
    interfaces: 3 rev: 2.0 speed: 480 Mb/s (57.2 MiB/s) lanes: 1 mode: 2.0
    power: 500mA chip-ID: 20b1:2001 class-ID: fe01 serial: <filter>
  Hub-4: 4-0:1 info: super-speed hub ports: 4 rev: 3.1
    speed: 10 Gb/s (1.16 GiB/s) lanes: 1 mode: 3.2 gen-2x1 chip-ID: 1d6b:0003
    class-ID: 0900
  Hub-5: 5-0:1 info: hi-speed hub with single TT ports: 6 rev: 2.0
    speed: 480 Mb/s (57.2 MiB/s) lanes: 1 mode: 2.0 chip-ID: 1d6b:0002
    class-ID: 0900
  Device-1: 5-2:2 info: N/A type: bluetooth driver: btusb interfaces: 2
    rev: 2.0 speed: 12 Mb/s (1.4 MiB/s) lanes: 1 mode: 1.1 power: 100mA
    chip-ID: 8087:0032 class-ID: e001
  Hub-6: 5-3:3 info: hi-speed hub with single TT ports: 4 rev: 2.1
    speed: 480 Mb/s (57.2 MiB/s) lanes: 1 mode: 2.0 chip-ID: 2109:2813
    class-ID: 0900
  Device-1: 5-3.3:5 info: Intech Studio: Grid
    type: abstract (modem),CDC-data,mouse,keyboard,audio
    driver: cdc_acm,hid-generic,snd-usb-audio,usbhid interfaces: 6 rev: 2.0
    speed: 12 Mb/s (1.4 MiB/s) lanes: 1 mode: 1.1 power: 500mA
    chip-ID: 03eb:ecad class-ID: 0103
  Hub-7: 5-3.4:8 info: hi-speed hub with single TT ports: 4 rev: 2.1
    speed: 480 Mb/s (57.2 MiB/s) lanes: 1 mode: 2.0 chip-ID: 2109:2813
    class-ID: 0900
  Device-1: 5-3.4.1:10 info: Elgato Stream Deck MK.2 type: HID driver: usbfs
    interfaces: 1 rev: 2.0 speed: 480 Mb/s (57.2 MiB/s) lanes: 1 mode: 2.0
    power: 500mA chip-ID: 0fd9:0080 class-ID: 0300 serial: <filter>
  Hub-8: 5-3.4.4:13 info: hi-speed hub with single TT ports: 4 rev: 2.1
    speed: 480 Mb/s (57.2 MiB/s) lanes: 1 mode: 2.0 chip-ID: 2109:2813
    class-ID: 0900
  Hub-9: 5-3.4.4.4:15 info: hi-speed hub with single TT ports: 4 rev: 2.1
    speed: 480 Mb/s (57.2 MiB/s) lanes: 1 mode: 2.0 chip-ID: 2109:2813
    class-ID: 0900
  Hub-10: 5-4:4 info: hi-speed hub with single TT ports: 4 rev: 2.1
    speed: 480 Mb/s (57.2 MiB/s) lanes: 1 mode: 2.0 chip-ID: 2109:2813
    class-ID: 0900
  Device-1: 5-4.1:7 info: USB-HID Keyboard type: keyboard,HID
    driver: hid-generic,usbhid interfaces: 3 rev: 1.1 speed: 12 Mb/s (1.4 MiB/s)
    lanes: 1 mode: 1.1 power: 100mA chip-ID: 04d9:0192 class-ID: 0300
  Device-2: 5-4.2:11 info: Wings Tech Xtrfy MZ1 type: mouse,HID
    driver: hid-generic,usbhid interfaces: 2 rev: 1.1 speed: 12 Mb/s (1.4 MiB/s)
    lanes: 1 mode: 1.1 power: 480mA chip-ID: 2ea8:2203 class-ID: 0301
  Hub-11: 5-4.4:14 info: hi-speed hub with single TT ports: 4 rev: 2.1
    speed: 480 Mb/s (57.2 MiB/s) lanes: 1 mode: 2.0 chip-ID: 2109:2813
    class-ID: 0900
  Device-1: 5-4.4.2:16 info: Arduino LLC Leonardo
    type: abstract (modem),CDC-data,HID driver: cdc_acm,hid-generic,usbhid
    interfaces: 3 rev: 2.0 speed: 12 Mb/s (1.4 MiB/s) lanes: 1 mode: 1.1
    power: 500mA chip-ID: 2341:8036 class-ID: 0300 serial: <filter>
  Hub-12: 5-4.4.4:17 info: hi-speed hub with single TT ports: 4 rev: 2.1
    speed: 480 Mb/s (57.2 MiB/s) lanes: 1 mode: 2.0 chip-ID: 2109:2813
    class-ID: 0900
  Hub-13: 5-4.4.4.4:18 info: hi-speed hub with single TT ports: 4 rev: 2.1
    speed: 480 Mb/s (57.2 MiB/s) lanes: 1 mode: 2.0 chip-ID: 2109:2813
    class-ID: 0900
  Hub-14: 5-5:6 info: hi-speed hub with single TT ports: 4 rev: 2.0
    speed: 480 Mb/s (57.2 MiB/s) lanes: 1 mode: 2.0 power: 100mA
    chip-ID: 05e3:0608 class-ID: 0900
  Hub-15: 5-6:9 info: hi-speed hub with single TT ports: 3 rev: 2.0
    speed: 480 Mb/s (57.2 MiB/s) lanes: 1 mode: 2.0 power: 100mA
    chip-ID: 05e3:0608 class-ID: 0900
  Device-1: 5-6.1:12 info: AsusTek AURA LED Controller type: HID
    driver: hid-generic,usbhid interfaces: 2 rev: 2.0 speed: 12 Mb/s (1.4 MiB/s)
    lanes: 1 mode: 1.1 power: 16mA chip-ID: 0b05:19af class-ID: 0300
    serial: <filter>
  Hub-16: 6-0:1 info: super-speed hub ports: 4 rev: 3.1
    speed: 10 Gb/s (1.16 GiB/s) lanes: 1 mode: 3.2 gen-2x1 chip-ID: 1d6b:0003
    class-ID: 0900
  Hub-17: 6-3:2 info: super-speed hub ports: 4 rev: 3.0
    speed: 5 Gb/s (596.0 MiB/s) lanes: 1 mode: 3.2 gen-1x1 chip-ID: 2109:0813
    class-ID: 0900
  Hub-18: 6-3.4:4 info: super-speed hub ports: 4 rev: 3.0
    speed: 5 Gb/s (596.0 MiB/s) lanes: 1 mode: 3.2 gen-1x1 chip-ID: 2109:0813
    class-ID: 0900
  Device-1: 6-3.4.3:6 info: BRIO 4K Stream Edition type: video,audio,HID
    driver: hid-generic,snd-usb-audio,usbhid,uvcvideo interfaces: 5 rev: 3.1
    speed: 5 Gb/s (596.0 MiB/s) lanes: 1 mode: 3.2 gen-1x1 power: 896mA
    chip-ID: 046d:086b class-ID: 0300 serial: <filter>
  Hub-19: 6-3.4.4:8 info: super-speed hub ports: 4 rev: 3.0
    speed: 5 Gb/s (596.0 MiB/s) lanes: 1 mode: 3.2 gen-1x1 chip-ID: 2109:0813
    class-ID: 0900
  Hub-20: 6-3.4.4.4:10 info: super-speed hub ports: 4 rev: 3.0
    speed: 5 Gb/s (596.0 MiB/s) lanes: 1 mode: 3.2 gen-1x1 chip-ID: 2109:0813
    class-ID: 0900
  Device-1: 6-3.4.4.4.4:12 info: Generic USB Storage type: mass storage
    driver: usb-storage interfaces: 1 rev: 3.0 speed: 5 Gb/s (596.0 MiB/s)
    lanes: 1 mode: 3.2 gen-1x1 power: 896mA chip-ID: 05e3:0743 class-ID: 0806
    serial: <filter>
  Hub-21: 6-4:3 info: super-speed hub ports: 4 rev: 3.0
    speed: 5 Gb/s (596.0 MiB/s) lanes: 1 mode: 3.2 gen-1x1 chip-ID: 2109:0813
    class-ID: 0900
  Hub-22: 6-4.4:5 info: super-speed hub ports: 4 rev: 3.0
    speed: 5 Gb/s (596.0 MiB/s) lanes: 1 mode: 3.2 gen-1x1 chip-ID: 2109:0813
    class-ID: 0900
  Hub-23: 6-4.4.4:7 info: super-speed hub ports: 4 rev: 3.0
    speed: 5 Gb/s (596.0 MiB/s) lanes: 1 mode: 3.2 gen-1x1 chip-ID: 2109:0813
    class-ID: 0900
  Device-1: 6-4.4.4.1:9 info: Logitech BRIO type: video,audio,HID
    driver: hid-generic,snd-usb-audio,usbhid,uvcvideo interfaces: 6 rev: 3.1
    speed: 5 Gb/s (596.0 MiB/s) lanes: 1 mode: 3.2 gen-1x1 power: 896mA
    chip-ID: 046d:085e class-ID: 0300 serial: <filter>
  Hub-24: 6-4.4.4.4:11 info: super-speed hub ports: 4 rev: 3.0
    speed: 5 Gb/s (596.0 MiB/s) lanes: 1 mode: 3.2 gen-1x1 chip-ID: 2109:0813
    class-ID: 0900
  Hub-25: 7-0:1 info: hi-speed hub with single TT ports: 4 rev: 2.0
    speed: 480 Mb/s (57.2 MiB/s) lanes: 1 mode: 2.0 chip-ID: 1d6b:0002
    class-ID: 0900
  Hub-26: 8-0:1 info: super-speed hub ports: 4 rev: 3.1
    speed: 10 Gb/s (1.16 GiB/s) lanes: 1 mode: 3.2 gen-2x1 chip-ID: 1d6b:0003
    class-ID: 0900
Sensors:
  System Temperatures: cpu: 42.0 C mobo: 41.0 C
  Fan Speeds (rpm): cpu: 0
  GPU: device: amdgpu temp: 40.0 C watts: 10.24 device: amdgpu temp: 65.0 C
    fan: 1167 watts: 21.07
Info:
  Processes: 601 Power: uptime: 50m states: freeze,mem,disk suspend: deep
    avail: s2idle wakeups: 0 hibernate: platform avail: shutdown, reboot,
    suspend, test_resume image: 25.06 GiB services: gsd-power,
    power-profiles-daemon, upowerd Init: systemd v: 257 default: graphical
    tool: systemctl
  Packages: 915 pm: pacman pkgs: 814 libs: 252 tools: gnome-software,yay
    pm: flatpak pkgs: 101 Compilers: gcc: 15.1.1 Shell: sh default: Zsh v: 5.9
    running-in: kgx inxi: 3.3.38

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions