I’m trying to install a capture card driver. And I get an error that the kernel-devel is not installed. I tried the following to install it without success. sudo pacman -S kernel-devel
Any help would be appreciated.
The driver gave me this error
===================================================
HWS Linux Driver Installer
===================================================
Checking for required tools ... Done.
Checking for required packages ...
Your system is missing kernel development packages which
is required to build and load the HWS Linux driver.
Required packages: kernel-devel
Please make sure that the correct versions of these packages are
installed. Versions required: 6.12.48-1-MANJARO
Please check hws_install.log for more details.
If you are experiencing difficulty with this installation
please contact sales@avmatrix.com
This is the script I used to attempt to install the driver – ./hws-dkms-install.sh
#!/bin/sh
LOGFILE=hws_install.log
if [ -h $0 ]; then
SCRIPT_PATH=`readlink $0 | xargs dirname`
else
SCRIPT_PATH="$(cd "$(dirname "$0")" && pwd)"
fi
HWS_TOP_DIR=$SCRIPT_PATH/..
SRC_DIR=$HWS_TOP_DIR/src
MODULE_NAME=HwsUHDX1Capture.ko
MODULE_INSTALL_DIR=/usr/local/share/HWS
MODULE_VERSION=1.0.0.230324
ARCH=`uname -m | sed -e 's/i.86/i386/'`
case $ARCH in
i386) ARCH_BITS=32 ;;
arm*) ARCH_BITS=arm ;;
aarch64) ARCH_BITS=aarch64 ;;
*) ARCH_BITS=64 ;;
esac
echo_string ()
{
echo "$1" | tee -a $LOGFILE
}
echo_string_nonewline ()
{
echo -n "$1" | tee -a $LOGFILE
}
error_exit ()
{
echo ""
echo "Please check $LOGFILE for more details."
echo "If you are experiencing difficulty with this installation"
echo "please contact sales@avmatrix.com"
exit 1
}
install_module ()
{
echo_string_nonewline "Installing module ... "
if [ ! -d $MODULE_INSTALL_DIR ]; then
mkdir -p $MODULE_INSTALL_DIR >> $LOGFILE 2>&1
fi
RET=$?
if [ $RET -ne 0 ] ; then
echo_string ""
echo_string "ERROR: Failed to create directory $MODULE_INSTALL_DIR !"
error_exit
fi
cp -rvf "$HWS_TOP_DIR/src" $MODULE_INSTALL_DIR >> $LOGFILE 2>&1 &&
cp -rvf "$HWS_TOP_DIR/scripts" $MODULE_INSTALL_DIR >> $LOGFILE 2>&1
RET=$?
if [ $RET -ne 0 ] ; then
echo_string ""
echo_string "ERROR: Failed to copy driver files to $MODULE_INSTALL_DIR !"
error_exit
fi
ln -sf $MODULE_INSTALL_DIR/scripts/hws-repair.sh /usr/bin/ >> $LOGFILE 2>&1
ln -sf $MODULE_INSTALL_DIR/scripts/hws-uninstall.sh /usr/bin/ >> $LOGFILE 2>&1
}
run_dkms ()
{
echo_string_nonewline "Running dkms ... "
# cleanup old/lingering
if [ -d /var/lib/dkms/${MODULE_NAME} ]; then
rm -Rf /var/lib/dkms/${MODULE_NAME}
fi
ln -sf $MODULE_INSTALL_DIR/src /usr/src/${MODULE_NAME}-${MODULE_VERSION} >> $LOGFILE 2>&1
dkms add -m ${MODULE_NAME} -v ${MODULE_VERSION}
RET=$?
if [ $RET -ne 0 ] ; then
echo_string ""
echo_string "ERROR: DKMS failed to add!"
error_exit
fi
dkms build -m ${MODULE_NAME} -v ${MODULE_VERSION} modules
RET=$?
if [ $RET -ne 0 ] ; then
echo_string ""
echo_string "ERROR: DKMS failed to build!"
error_exit
fi
dkms install ${MODULE_NAME} -v ${MODULE_VERSION} --force
RET=$?
if [ $RET -ne 0 ] ; then
echo_string ""
echo_string "ERROR: DKMS failed to install!"
error_exit
fi
}
SECOND=""
while getopts "s" flag ; do
case "$flag" in
s)SECOND="YES";;
esac
done
if [ "YES" != "$SECOND" ] ; then
echo "==================================================="
echo " HWS Linux Driver Installer"
echo "==================================================="
echo ""
fi
if [ `id -u` -ne 0 ] ; then
sudo su -c "$0 -s $*"
exit $?
fi
echo -n "" > $LOGFILE
echo_string_nonewline "Checking for required tools ... "
MISSING_TOOLS=""
REQUIRED_TOOLS="make gcc ld dkms"
for tool in $REQUIRED_TOOLS ; do
$tool --version > /dev/null 2>&1
RET=$?
if [ $RET -ne 0 ] ; then
MISSING_TOOLS="$MISSING_TOOLS $tool"
fi
done
if [ -n "$MISSING_TOOLS" ]; then
echo_string ""
echo_string ""
echo_string "Your system has one or more system tools missing which are"
echo_string "required to compile and load the HWS Linux driver."
echo_string ""
echo_string "Required tools: $MISSING_TOOLS"
error_exit
else
echo_string "Done."
fi
echo_string_nonewline "Checking for required packages ... "
KERNEL_BASE="/lib/modules/`uname -r`"
KERNEL_BUILD="$KERNEL_BASE/build"
if [ ! -d $KERNEL_BUILD ]; then
echo_string ""
echo_string ""
echo_string "Your system is missing kernel development packages which"
echo_string "is required to build and load the HWS Linux driver."
echo_string ""
echo_string "Required packages: kernel-devel"
echo_string ""
echo_string "Please make sure that the correct versions of these packages are"
echo_string "installed. Versions required: `uname -r`"
error_exit
else
echo_string "Done."
fi
DEPMOD=`which depmod 2>/dev/null`
if [ ! -e "$DEPMOD" ]; then
echo_string ""
echo_string "ERROR: Failed to find command: depmod"
echo_string " Please install depmod first!"
echo_string ""
error_exit
fi
echo_string_nonewline "Checking for previous installation ... "
KERNEL_STR=`uname -r`
MODULE_FILE=`find /lib/modules/$KERNEL_STR -iname "HwsUHDX1Capture.ko"`
if [ -n "$MODULE_FILE" -o -e "$MODULE_INSTALL_DIR" ]; then
echo_string "Found"
echo_string "Removing previous installation..."
if [ -f /usr/bin/hws-uninstall.sh ]; then
/usr/bin/hws-uninstall.sh -n
else
$SCRIPT_PATH/hws-uninstall.sh -n
fi
else
echo_string "None"
fi
echo_string "Beginning install, please wait... "
install_module
run_dkms
MODULE_LOADED=`lsmod | grep HwsCapture`
if [ -z "$MODULE_LOADED" ]; then
MODPROBE=`which modprobe 2>/dev/null`
if [ ! -e "$MODPROBE" ]; then
echo_string "modprobe is not detected! Please load driver module manually!"
else
$MODPROBE HwsUHDX1Capture
RET=$?
if [ $RET -ne 0 ] ; then
echo_string "ERROR: Load driver module failed!"
error_exit
fi
fi
echo_string ""
echo_string "========================================================"
echo_string ""
echo_string "Install Successfully!"
echo_string "For more information please check the docs directory or"
echo_string "contact alex.liu@longtimetech.com."
echo_string ""
echo_string "========================================================"
else
echo_string ""
echo_string "========================================================"
echo_string ""
echo_string "Install Successfully!"
echo_string "For more information please check the docs directory or"
echo_string "contact alex.liu@longtimetech.com."
echo_string ""
echo_string "!!!Previous installed module already loaded, reboot is needed! "
echo_string_nonewline "Do you wish to reboot now (Y/N) [N]: "
read cont
if [ "$cont" != "YES" -a "$cont" != "yes" -a \
"$cont" != "Y" -a "$cont" != "y" ] ; then
echo_string "Reboot canceled! You should reboot your system manually later."
else
reboot
fi
echo_string ""
And this is my system information from using inxi -zv8:
System:
Kernel: 6.12.48-1-MANJARO arch: x86_64 bits: 64 compiler: gcc v: 15.2.1
clocksource: tsc avail: hpet,acpi_pm
parameters: BOOT_IMAGE=/@/boot/vmlinuz-6.12-x86_64
root=UUID=c5eb3151-7957-4097-afd8-81770be76965 rw rootflags=subvol=@
quiet splash apparmor=1 security=apparmor udev.log_priority=3
Desktop: GNOME v: 48.5 tk: GTK v: 3.24.50 wm: gnome-shell
tools: gsd-screensaver-proxy dm: GDM v: 48.0 Distro: Manjaro
base: Arch Linux
Machine:
Type: Desktop System: Micro-Star product: MS-7C91 v: 1.0
serial: <superuser required>
Mobo: Micro-Star model: MAG B550 TOMAHAWK MAX WIFI (MS-7C91) v: 1.0
serial: <superuser required> uuid: <superuser required> UEFI: American
Megatrends LLC. v: 2.30 date: 03/06/2023
Battery:
Device-1: hidpp_battery_0 model: Logitech Wireless Mouse M510
serial: <filter> charge: 55% (should be ignored) rechargeable: yes
status: discharging
Device-2: hidpp_battery_1 model: Logitech K520 serial: <filter>
charge: 70% (should be ignored) rechargeable: yes status: discharging
Memory:
System RAM: total: 64 GiB available: 62.72 GiB used: 4.15 GiB (6.6%)
Message: For most reliable report, use superuser + dmidecode.
Array-1: capacity: 128 GiB slots: 4 modules: 2 EC: None
max-module-size: 32 GiB note: est.
Device-1: Channel-A DIMM 0 type: no module installed
Device-2: Channel-A DIMM 1 type: DDR4 detail: synchronous unbuffered
(unregistered) size: 32 GiB speed: 3200 MT/s volts: note: check curr: 1
min: 1 max: 1 width (bits): data: 64 total: 64 manufacturer: Corsair
part-no: CMK64GX4M2E3200C16 serial: N/A
Device-3: Channel-B DIMM 0 type: no module installed
Device-4: Channel-B DIMM 1 type: DDR4 detail: synchronous unbuffered
(unregistered) size: 32 GiB speed: 3200 MT/s volts: note: check curr: 1
min: 1 max: 1 width (bits): data: 64 total: 64 manufacturer: Corsair
part-no: CMK64GX4M2E3200C16 serial: N/A
PCI Slots:
Permissions: Unable to run dmidecode. Root privileges required.
CPU:
Info: model: AMD Ryzen 9 3950X 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: 16 threads: 32 tpc: 2
smt: enabled cache: L1: 1024 KiB desc: d-16x32 KiB; i-16x32 KiB L2: 8 MiB
desc: 16x512 KiB L3: 64 MiB desc: 4x16 MiB
Speed (MHz): avg: 1750 min/max: 550/4762 boost: enabled scaling:
driver: amd-pstate-epp governor: powersave cores: 1: 1750 2: 1750 3: 1750
4: 1750 5: 1750 6: 1750 7: 1750 8: 1750 9: 1750 10: 1750 11: 1750 12: 1750
13: 1750 14: 1750 15: 1750 16: 1750 17: 1750 18: 1750 19: 1750 20: 1750
21: 1750 22: 1750 23: 1750 24: 1750 25: 1750 26: 1750 27: 1750 28: 1750
29: 1750 30: 1750 31: 1750 32: 1750 bogomips: 224096
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 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: 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: tsa status: Not affected
Type: tsx_async_abort status: Not affected
Type: vmscape mitigation: IBPB before exit to userspace
Graphics:
Device-1: Silicon Magic AVMatrix VC12 4K HDMI Capture driver: N/A pcie:
gen: 2 speed: 5 GT/s lanes: 4 bus-ID: 04:00.0 chip-ID: 8888:8581
class-ID: 0400
Device-2: Advanced Micro Devices [AMD/ATI] Navi 44 [Radeon RX 9060 XT]
vendor: Gigabyte driver: amdgpu v: kernel arch: RDNA-4 code: Navi-4x
process: TSMC n4 (4nm) built: 2025+ pcie: gen: 5 speed: 32 GT/s lanes: 16
ports: active: DP-1,DP-2,HDMI-A-1 empty: Writeback-1 bus-ID: 2d:00.0
chip-ID: 1002:7590 class-ID: 0300
Device-3: Insta360 Link driver: snd-usb-audio,uvcvideo type: USB rev: 2.0
speed: 480 Mb/s lanes: 1 mode: 2.0 bus-ID: 1-5:5 chip-ID: 2e1a:4c01
class-ID: 0102
Device-4: Insta360 Link driver: snd-usb-audio,uvcvideo type: USB rev: 2.0
speed: 480 Mb/s lanes: 1 mode: 2.0 bus-ID: 3-1:2 chip-ID: 2e1a:4c01
class-ID: 0102
Display: wayland server: X.org v: 1.21.1.18 with: Xwayland v: 24.1.8
compositor: gnome-shell driver: gpu: amdgpu display-ID: 0
Monitor-1: DP-1 model: Dell S2421HGF serial: <filter> built: 2021
res: 1920x1080 dpi: 93 gamma: 1.2 chroma: red: x: 0.655 y: 0.333 green:
x: 0.322 y: 0.627 blue: x: 0.153 y: 0.063 white: x: 0.314 y: 0.329
size: 527x296mm (20.75x11.65") diag: 604mm (23.8") ratio: 16:9
modes: 1920x1080, 1680x1050, 1600x900, 1280x1024, 1440x900, 1280x800,
1152x864, 1280x720, 1024x768, 800x600, 720x576, 720x480, 640x480, 720x400
Monitor-2: DP-2 model: ASUS VG289 serial: <filter> built: 2023
res: 3840x2160 dpi: 157 gamma: 1.2 chroma: red: x: 0.678 y: 0.310 green:
x: 0.267 y: 0.620 blue: x: 0.145 y: 0.059 white: x: 0.314 y: 0.329
size: 621x341mm (24.45x13.43") diag: 708mm (27.9") ratio: 16:9
modes: 3840x2160, 2560x1440, 1920x1200, 1920x1080, 1600x1200, 1680x1050,
1280x1024, 1440x900, 1280x960, 1280x800, 1280x720, 1440x576, 1024x768,
1440x480, 800x600, 720x576, 720x480, 640x480
EDID-Warnings: 1: parse_edid: unhandled CEA mode 93 2: parse_edid:
unhandled CEA mode 94 3: parse_edid: unhandled CEA mode 95 4: parse_edid:
unhandled CEA mode 96 5: parse_edid: unhandled CEA mode 97
Monitor-3: HDMI-A-1 model: ASUS VG289 serial: <filter> built: 2023
res: 3840x2160 dpi: 157 gamma: 1.2 chroma: red: x: 0.678 y: 0.310 green:
x: 0.267 y: 0.620 blue: x: 0.145 y: 0.059 white: x: 0.314 y: 0.329
size: 621x341mm (24.45x13.43") diag: 708mm (27.9") ratio: 16:9
modes: 3840x2160, 2560x1440, 1920x1200, 1920x1080, 1600x1200, 1680x1050,
1280x1024, 1440x900, 1280x960, 1280x800, 1280x720, 1440x576, 1024x768,
1440x480, 800x600, 720x576, 720x480, 640x480
EDID-Warnings: 1: parse_edid: unhandled CEA mode 93 2: parse_edid:
unhandled CEA mode 94 3: parse_edid: unhandled CEA mode 95 4: parse_edid:
unhandled CEA mode 96 5: parse_edid: unhandled CEA mode 97
API: EGL v: 1.5 hw: drv: amd radeonsi platforms: device: 0 drv: radeonsi
device: 1 drv: swrast gbm: drv: kms_swrast surfaceless: drv: radeonsi
wayland: drv: radeonsi x11: drv: radeonsi
API: OpenGL v: 4.6 compat-v: 4.5 vendor: amd mesa v: 25.2.3-arch1.2
glx-v: 1.4 direct-render: yes renderer: AMD Radeon Graphics (radeonsi
gfx1200 LLVM 20.1.8 DRM 3.61 6.12.48-1-MANJARO) device-ID: 1002:7590
memory: 15.62 GiB unified: no display-ID: :0.0
API: Vulkan v: 1.4.321 layers: 7 device: 0 type: discrete-gpu name: AMD
Radeon Graphics (RADV GFX1200) driver: mesa radv v: 25.2.3-arch1.2
device-ID: 1002:7590 surfaces: N/A
Info: Tools: api: eglinfo, glxinfo, vulkaninfo x11: xprop,xrandr
Audio:
Device-1: Silicon Magic AVMatrix VC12 4K HDMI Capture driver: N/A pcie:
gen: 2 speed: 5 GT/s lanes: 4 bus-ID: 04:00.0 chip-ID: 8888:8581
class-ID: 0400
Device-2: Advanced Micro Devices [AMD/ATI] Navi 48 HDMI/DP Audio
driver: snd_hda_intel v: kernel pcie: gen: 5 speed: 32 GT/s lanes: 16
bus-ID: 2d:00.1 chip-ID: 1002:ab40 class-ID: 0403
Device-3: Advanced Micro Devices [AMD] Starship/Matisse HD Audio
vendor: Micro-Star MSI driver: snd_hda_intel v: kernel pcie: gen: 4
speed: 16 GT/s lanes: 16 bus-ID: 2f:00.4 chip-ID: 1022:1487 class-ID: 0403
Device-4: SteelSeries ApS Arctis Pro Wireless
driver: hid-generic,snd-usb-audio,usbhid type: USB rev: 1.1 speed: 12 Mb/s
lanes: 1 mode: 1.1 bus-ID: 1-2.2.3:12 chip-ID: 1038:1294 class-ID: 0300
Device-5: Insta360 Link driver: snd-usb-audio,uvcvideo type: USB rev: 2.0
speed: 480 Mb/s lanes: 1 mode: 2.0 bus-ID: 1-5:5 chip-ID: 2e1a:4c01
class-ID: 0102
Device-6: Focusrite-Novation Scarlett 2i2 3rd Gen driver: snd-usb-audio
type: USB rev: 2.0 speed: 480 Mb/s lanes: 1 mode: 2.0 bus-ID: 1-6:9
chip-ID: 1235:8210 class-ID: 0102 serial: <filter>
Device-7: Insta360 Link driver: snd-usb-audio,uvcvideo type: USB rev: 2.0
speed: 480 Mb/s lanes: 1 mode: 2.0 bus-ID: 3-1:2 chip-ID: 2e1a:4c01
class-ID: 0102
API: ALSA v: k6.12.48-1-MANJARO status: kernel-api with: aoss
type: oss-emulator tools: alsactl,alsamixer,amixer
Server-1: sndiod v: N/A status: off tools: aucat,midicat,sndioctl
Server-2: JACK v: 1.9.22 status: off tools: N/A
Server-3: PipeWire v: 1.4.8 status: active with: 1: pipewire-pulse
status: active 2: wireplumber status: active 3: pipewire-alsa type: plugin
tools: pactl,pw-cat,pw-cli,wpctl
Network:
Device-1: MEDIATEK MT7921K Wi-Fi 6E 80MHz driver: mt7921e v: kernel pcie:
gen: 2 speed: 5 GT/s lanes: 1 bus-ID: 29:00.0 chip-ID: 14c3:0608
class-ID: 0280
IF: wlo1 state: down mac: <filter>
Device-2: Realtek RTL8125 2.5GbE vendor: Micro-Star MSI driver: r8169
v: kernel pcie: gen: 2 speed: 5 GT/s lanes: 1 port: f000 bus-ID: 2a:00.0
chip-ID: 10ec:8125 class-ID: 0200
IF: enp42s0 state: up speed: 2500 Mbps duplex: full mac: <filter>
IP v4: <filter> type: dynamic noprefixroute scope: global
broadcast: <filter>
IP v6: <filter> type: dynamic noprefixroute scope: global
IP v6: <filter> type: noprefixroute scope: link
IF-ID-1: tailscale0 state: unknown speed: -1 duplex: full mac: N/A
IP v4: <filter> scope: global
IP v6: <filter> scope: global
IP v6: <filter> virtual: stable-privacy proto kernel_ll scope: link
Info: services: NetworkManager, systemd-timesyncd, wpa_supplicant
WAN IP: <filter>
Bluetooth:
Device-1: MediaTek Wireless_Device driver: btusb v: 0.8 type: USB rev: 2.1
speed: 480 Mb/s lanes: 1 mode: 2.0 bus-ID: 1-9:14 chip-ID: 0e8d:0608
class-ID: e001 serial: <filter>
Report: rfkill ID: hci0 rfk-id: 0 state: up address: see --recommends
Logical:
Message: No logical block device data found.
RAID:
Message: No RAID data found.
Drives:
Local Storage: total: 1.82 TiB used: 141.77 GiB (7.6%)
SMART Message: Required tool smartctl not installed. Check --recommends
ID-1: /dev/nvme0n1 maj-min: 259:0 vendor: Samsung model: SSD 980 PRO 2TB
size: 1.82 TiB block-size: physical: 512 B logical: 512 B speed: 63.2 Gb/s
lanes: 4 tech: SSD serial: <filter> fw-rev: 5B2QGXA7 temp: 35.9 C
scheme: GPT
Message: No optical or floppy data found.
Partition:
ID-1: / raw-size: 1.82 TiB size: 1.82 TiB (100.00%) used: 141.77 GiB (7.6%)
fs: btrfs dev: /dev/nvme0n1p2 maj-min: 259:2 label: N/A
uuid: c5eb3151-7957-4097-afd8-81770be76965
ID-2: /boot/efi raw-size: 300 MiB size: 299.4 MiB (99.80%)
used: 624 KiB (0.2%) fs: vfat dev: /dev/nvme0n1p1 maj-min: 259:1 label: N/A
uuid: 980B-1CFB
ID-3: /home raw-size: 1.82 TiB size: 1.82 TiB (100.00%)
used: 141.77 GiB (7.6%) fs: btrfs dev: /dev/nvme0n1p2 maj-min: 259:2
label: N/A uuid: c5eb3151-7957-4097-afd8-81770be76965
ID-4: /var/cache raw-size: 1.82 TiB size: 1.82 TiB (100.00%)
used: 141.77 GiB (7.6%) fs: btrfs dev: /dev/nvme0n1p2 maj-min: 259:2
label: N/A uuid: c5eb3151-7957-4097-afd8-81770be76965
ID-5: /var/log raw-size: 1.82 TiB size: 1.82 TiB (100.00%)
used: 141.77 GiB (7.6%) fs: btrfs dev: /dev/nvme0n1p2 maj-min: 259:2
label: N/A uuid: c5eb3151-7957-4097-afd8-81770be76965
Swap:
Alert: No swap data was found.
Unmounted:
Message: No unmounted partitions found.
USB:
Hub-1: 1-0:1 info: hi-speed hub with single TT ports: 10 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: 1-2:2 info: Genesys Logic Hub 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-3: 1-2.2:4 info: Texas Instruments TUSB2036 Hub ports: 3 rev: 1.1
speed: 12 Mb/s (1.4 MiB/s) lanes: 1 mode: 1.1 chip-ID: 0451:2036
class-ID: 0900
Device-1: 1-2.2.2:8 info: SteelSeries ApS Arctis Pro Wireless 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: 500mA chip-ID: 1038:1290 class-ID: 0300
Device-2: 1-2.2.3:12 info: SteelSeries ApS Arctis Pro Wireless
type: audio,HID driver: hid-generic,snd-usb-audio,usbhid interfaces: 6
rev: 1.1 speed: 12 Mb/s (1.4 MiB/s) lanes: 1 mode: 1.1 power: 100mA
chip-ID: 1038:1294 class-ID: 0300
Device-3: 1-2.3:7 info: Elgato Systems GmbH Stream Deck Plus 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:0084 class-ID: 0300 serial: <filter>
Device-4: 1-2.4:11 info: Elgato Systems GmbH Stream Deck XL 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:008f class-ID: 0300 serial: <filter>
Hub-4: 1-3:3 info: Genesys Logic Hub ports: 4 rev: 2.1
speed: 480 Mb/s (57.2 MiB/s) lanes: 1 mode: 2.0 power: 100mA
chip-ID: 05e3:0610 class-ID: 0900
Device-1: 1-3.1:6 info: Logitech Unifying Receiver
type: keyboard,mouse,HID driver: logitech-djreceiver,usbhid interfaces: 3
rev: 2.0 speed: 12 Mb/s (1.4 MiB/s) lanes: 1 mode: 1.1 power: 98mA
chip-ID: 046d:c52b class-ID: 0300
Device-2: 1-3.2:10 info: Logitech Unifying Receiver
type: keyboard,mouse,HID driver: logitech-djreceiver,usbhid interfaces: 3
rev: 2.0 speed: 12 Mb/s (1.4 MiB/s) lanes: 1 mode: 1.1 power: 98mA
chip-ID: 046d:c52b class-ID: 0300
Device-3: 1-5:5 info: Insta360 Link type: video,audio
driver: snd-usb-audio,uvcvideo interfaces: 4 rev: 2.0
speed: 480 Mb/s (57.2 MiB/s) lanes: 1 mode: 2.0 power: 100mA
chip-ID: 2e1a:4c01 class-ID: 0102
Device-4: 1-6:9 info: Focusrite-Novation Scarlett 2i2 3rd Gen type: audio
driver: snd-usb-audio interfaces: 4 rev: 2.0 speed: 480 Mb/s (57.2 MiB/s)
lanes: 1 mode: 2.0 power: 500mA chip-ID: 1235:8210 class-ID: 0102
serial: <filter>
Device-5: 1-8:13 info: Micro Star MYSTIC LIGHT type: HID
driver: hid-generic,usbhid interfaces: 1 rev: 1.1 speed: 12 Mb/s (1.4 MiB/s)
lanes: 1 mode: 1.1 power: 500mA chip-ID: 1462:7c91 class-ID: 0300
serial: <filter>
Device-6: 1-9:14 info: MediaTek Wireless_Device type: bluetooth
driver: btusb interfaces: 3 rev: 2.1 speed: 480 Mb/s (57.2 MiB/s) lanes: 1
mode: 2.0 power: 100mA chip-ID: 0e8d:0608 class-ID: e001 serial: <filter>
Hub-5: 2-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-6: 2-3:2 info: Genesys Logic Hub ports: 4 rev: 3.2
speed: 5 Gb/s (596.0 MiB/s) lanes: 1 mode: 3.2 gen-1x1 chip-ID: 05e3:0626
class-ID: 0900
Hub-7: 3-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
Device-1: 3-1:2 info: Insta360 Link type: video,audio
driver: snd-usb-audio,uvcvideo interfaces: 4 rev: 2.0
speed: 480 Mb/s (57.2 MiB/s) lanes: 1 mode: 2.0 power: 100mA
chip-ID: 2e1a:4c01 class-ID: 0102
Device-2: 3-3:3 info: Elgato Systems GmbH Stream Deck XL 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:006c class-ID: 0300 serial: <filter>
Hub-8: 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
Sensors:
System Temperatures: cpu: 41.5 C mobo: 30.0 C gpu: amdgpu temp: 33.0 C
mem: 29.0 C
Fan Speeds (rpm): N/A gpu: amdgpu fan: 0
Repos:
Packages: 1719 pm: pacman pkgs: 1710 libs: 506 tools: gnome-software,pamac
pm: flatpak pkgs: 9
Active pacman repo servers in: /etc/pacman.d/mirrorlist
1: https://forksystems.mm.fcix.net/manjaro/stable/$repo/$arch
2: https://mirror.csclub.uwaterloo.ca/manjaro/stable/$repo/$arch
3: https://nocix.mm.fcix.net/manjaro/stable/$repo/$arch
4: https://ziply.mm.fcix.net/manjaro/stable/$repo/$arch
5: https://ftp.rz.tu-bs.de/pub/mirror/manjaro.org/repos/stable/$repo/$arch
6: https://mirrors.jlu.edu.cn/manjaro/stable/$repo/$arch
7: https://mirror.nju.edu.cn/manjaro/stable/$repo/$arch
8: https://ftp.caliu.cat/pub/distribucions/manjaro/stable/$repo/$arch
Processes:
CPU top: 5 of 632
1: cpu: 26.4% command: StreamController pid: 1960 mem: 430.8 MiB (0.6%)
2: cpu: 14.2% command: localsearch-extractor-3 pid: 81277
mem: 36.9 MiB (0.0%)
3: cpu: 2.3% command: kgx pid: 5341 mem: 110.9 MiB (0.1%)
4: cpu: 2.3% command: brave pid: 72312 mem: 249.8 MiB (0.3%)
5: cpu: 1.7% command: gnome-shell pid: 1347 mem: 400.2 MiB (0.6%)
Memory top: 5 of 632
1: mem: 449.4 MiB (0.6%) command: brave pid: 26807 cpu: 1.2%
2: mem: 430.8 MiB (0.6%) command: StreamController pid: 1960 cpu: 26.4%
3: mem: 400.2 MiB (0.6%) command: gnome-shell pid: 1347 cpu: 1.7%
4: mem: 387.0 MiB (0.6%) command: brave pid: 26900 cpu: 0.7%
5: mem: 250.5 MiB (0.3%) command: brave pid: 66837 cpu: 1.2%
Info:
Processes: 632 Power: uptime: 16m 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
Compilers: gcc: 15.2.1 Shell: Zsh v: 5.9 running-in: kgx inxi: 3.3.39