Install some additional components
echo 'Ukraine/Kyiv' >/etc/timezone apt install -y intel-gpu-tools intel-media-va-driver-non-free intel-ocloc intel-opencl-icd-legacy intel-opencl-icd libdrm-intel1 libze-intel-gpu-raytracing mesa-vulkan-drivers# Intel apt install -y lm-sensors smartmontools nvme-cli mmc-utils # dsik utils apt install -y devmem2 msr-tools # for ./setPL apt install -y net-tools btop ncdu duf # some additional tools apt install -y zabbix-agent2 # in case of Zabbix monitoring apt install -y jdupes btrfs-compsize # for file deduplication and compression check apt install -y libonnxruntime1.21 python3-onnx python3-onnxruntime onnxruntime-tools # Open Neural Network Exchange
Install Docker
# USE NVMe space instead of eMMC mkdir /storage/docker/system ln -s /storage/docker/system /var/lib/docker # Docker install for pkg in docker.io docker-doc docker-compose docker-compose-v2 podman-docker containerd runc; do sudo apt-get remove -y $pkg; done apt update apt install ca-certificates curl install -m 0755 -d /etc/apt/keyrings curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc chmod a+r /etc/apt/keyrings/docker.asc echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \ $(. /etc/os-release && echo "$VERSION_CODENAME") stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null apt update apt install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
Compile Intel drivers (optional)
apt remove -y intel-gpu-tools intel-media-va-driver-non-free intel-ocloc-legacy intel-ocloc intel-opencl-icd-legacy intel-opencl-icd libze-intel-gpu-raytracing apt install -y peg bison flex libcairo2-dev libudev-dev libprocess-cpp-dev libunwind-dev valgrind libpixman-1-dev libdw-dev libproc2-dev libkmod-dev libdrm-intel1 libdrm-dev meson cmake git clone https://github.com/intel/gmmlib.git cd gmmlib/ mkdir build cd build cmake ../ make -j 4 make install cd ../.. git clone https://github.com/intel/libva.git cd libva ./autogen.sh --prefix=/usr --libdir=/usr/lib/x86_64-linux-gnu make make install cd .. git clone https://github.com/intel/libva-utils.git cd libva-utils ./autogen.sh --prefix=/usr --libdir=/usr/lib/x86_64-linux-gnu make make install cd .. git clone https://github.com/intel/media-driver.git cd media-driver/ mkdir build cd build cmake ../ make -j 4 make install cd ../.. # Intel_gpu_tools compilation is optional apt install -y peg bison flex libcairo2-dev libudev-dev libprocess-cpp-dev libunwind-dev valgrind libpixman-1-dev libdw-dev libproc2-dev libkmod-dev git clone https://gitlab.freedesktop.org/drm/igt-gpu-tools cd igt-gpu-tools meson build && ninja -C build ./meson.sh install cd ..
compile btop with Intel GPU support (optional)
apt remove -y btop apt install -y make g++ git clone https://github.com/aristocratos/btop.git cd btop/ make make install update-alternatives --install /usr/bin/btop btop /usr/local/bin/btop 1
with both Intel drivers and btop recompiled btop shows not only load on GPU but also power consumption
Make sensors show voltages and fan rpm
ITE IT8613E Super I/O driver is missing in kernel drivers, so to add it we need to compile patched version like below
apt install -y dkms git clone https://github.com/rpavlik/it87 cd it87 make dkms dkms status it87 sensors
root@server5:/storage/apps/ITE/it87# dkms status it87 it87/v1.0-47-g109b7e0, 6.14.0-15-generic, x86_64: installed
root@server5:/storage/apps/ITE/it87# sensors iwlwifi_1-virtual-0 Adapter: Virtual device temp1: +44.0°C nvme-pci-0800 Adapter: PCI adapter Composite: +37.9°C (low = -273.1°C, high = +81.8°C) (crit = +84.8°C) Sensor 1: +37.9°C (low = -273.1°C, high = +65261.8°C) Sensor 2: +43.9°C (low = -273.1°C, high = +65261.8°C) nvme-pci-0200 Adapter: PCI adapter Composite: +35.9°C (low = -273.1°C, high = +81.8°C) (crit = +84.8°C) Sensor 1: +35.9°C (low = -273.1°C, high = +65261.8°C) Sensor 2: +44.9°C (low = -273.1°C, high = +65261.8°C) acpitz-acpi-0 Adapter: ACPI interface temp1: +27.8°C it8613-isa-0a30 Adapter: ISA adapter in0: 1.12 V (min = +0.00 V, max = +2.81 V) in1: 1.06 V (min = +0.00 V, max = +2.81 V) in2: 2.00 V (min = +0.00 V, max = +2.81 V) in4: 2.05 V (min = +0.00 V, max = +2.81 V) in5: 2.04 V (min = +0.00 V, max = +2.81 V) 3VSB: 3.30 V (min = +0.00 V, max = +5.61 V) Vbat: 3.08 V +3.3V: 3.28 V fan2: 4354 RPM (min = 0 RPM) fan3: 4720 RPM (min = 105 RPM) fan4: 0 RPM (min = 0 RPM) temp1: +75.0°C (low = -128.0°C, high = +127.0°C) temp2: -109.0°C (low = -128.0°C, high = +127.0°C) sensor = thermal diode temp3: -128.0°C (low = -128.0°C, high = +127.0°C) intrusion0: ALARM coretemp-isa-0000 Adapter: ISA adapter Package id 0: +77.0°C (high = +105.0°C, crit = +105.0°C) Core 0: +77.0°C (high = +105.0°C, crit = +105.0°C) Core 1: +77.0°C (high = +105.0°C, crit = +105.0°C) Core 2: +77.0°C (high = +105.0°C, crit = +105.0°C) Core 3: +77.0°C (high = +105.0°C, crit = +105.0°C) nvme-pci-0700 Adapter: PCI adapter Composite: +35.9°C (low = -273.1°C, high = +81.8°C) (crit = +84.8°C) Sensor 1: +35.9°C (low = -273.1°C, high = +65261.8°C) Sensor 2: +43.9°C (low = -273.1°C, high = +65261.8°C) nvme-pci-0100 Adapter: PCI adapter Composite: +32.9°C (low = -273.1°C, high = +81.8°C) (crit = +84.8°C) Sensor 1: +32.9°C (low = -273.1°C, high = +65261.8°C) Sensor 2: +40.9°C (low = -273.1°C, high = +65261.8°C)
root@server5:~# for file in `ls -1 /sys/devices/platform/it87.2608/hwmon/hwmon7/*`; do echo -n "$file ="; echo "`cat $file 2>/dev/null`"; done /sys/devices/platform/it87.2608/hwmon/hwmon7/alarms =144 /sys/devices/platform/it87.2608/hwmon/hwmon7/fan2_alarm =0 /sys/devices/platform/it87.2608/hwmon/hwmon7/fan2_beep =0 /sys/devices/platform/it87.2608/hwmon/hwmon7/fan2_input =4383 /sys/devices/platform/it87.2608/hwmon/hwmon7/fan2_min =0 /sys/devices/platform/it87.2608/hwmon/hwmon7/fan3_alarm =0 /sys/devices/platform/it87.2608/hwmon/hwmon7/fan3_beep =0 /sys/devices/platform/it87.2608/hwmon/hwmon7/fan3_input =4856 /sys/devices/platform/it87.2608/hwmon/hwmon7/fan3_min =105 /sys/devices/platform/it87.2608/hwmon/hwmon7/fan4_alarm =0 /sys/devices/platform/it87.2608/hwmon/hwmon7/fan4_beep =0 /sys/devices/platform/it87.2608/hwmon/hwmon7/fan4_input =0 /sys/devices/platform/it87.2608/hwmon/hwmon7/fan4_min =0 /sys/devices/platform/it87.2608/hwmon/hwmon7/in0_alarm =0 /sys/devices/platform/it87.2608/hwmon/hwmon7/in0_beep =0 /sys/devices/platform/it87.2608/hwmon/hwmon7/in0_input =1243 /sys/devices/platform/it87.2608/hwmon/hwmon7/in0_max =2805 /sys/devices/platform/it87.2608/hwmon/hwmon7/in0_min =0 /sys/devices/platform/it87.2608/hwmon/hwmon7/in1_alarm =0 /sys/devices/platform/it87.2608/hwmon/hwmon7/in1_beep =0 /sys/devices/platform/it87.2608/hwmon/hwmon7/in1_input =1056 /sys/devices/platform/it87.2608/hwmon/hwmon7/in1_max =2805 /sys/devices/platform/it87.2608/hwmon/hwmon7/in1_min =0 /sys/devices/platform/it87.2608/hwmon/hwmon7/in2_alarm =0 /sys/devices/platform/it87.2608/hwmon/hwmon7/in2_beep =0 /sys/devices/platform/it87.2608/hwmon/hwmon7/in2_input =2002 /sys/devices/platform/it87.2608/hwmon/hwmon7/in2_max =2805 /sys/devices/platform/it87.2608/hwmon/hwmon7/in2_min =0 /sys/devices/platform/it87.2608/hwmon/hwmon7/in4_alarm =0 /sys/devices/platform/it87.2608/hwmon/hwmon7/in4_beep =0 /sys/devices/platform/it87.2608/hwmon/hwmon7/in4_input =2035 /sys/devices/platform/it87.2608/hwmon/hwmon7/in4_max =2805 /sys/devices/platform/it87.2608/hwmon/hwmon7/in4_min =0 /sys/devices/platform/it87.2608/hwmon/hwmon7/in5_alarm =0 /sys/devices/platform/it87.2608/hwmon/hwmon7/in5_beep =0 /sys/devices/platform/it87.2608/hwmon/hwmon7/in5_input =2035 /sys/devices/platform/it87.2608/hwmon/hwmon7/in5_max =2805 /sys/devices/platform/it87.2608/hwmon/hwmon7/in5_min =0 /sys/devices/platform/it87.2608/hwmon/hwmon7/in7_alarm =0 /sys/devices/platform/it87.2608/hwmon/hwmon7/in7_beep =0 /sys/devices/platform/it87.2608/hwmon/hwmon7/in7_input =3300 /sys/devices/platform/it87.2608/hwmon/hwmon7/in7_label =3VSB /sys/devices/platform/it87.2608/hwmon/hwmon7/in7_max =5610 /sys/devices/platform/it87.2608/hwmon/hwmon7/in7_min =0 /sys/devices/platform/it87.2608/hwmon/hwmon7/in8_input =3080 /sys/devices/platform/it87.2608/hwmon/hwmon7/in8_label =Vbat /sys/devices/platform/it87.2608/hwmon/hwmon7/in9_input =3278 /sys/devices/platform/it87.2608/hwmon/hwmon7/in9_label =+3.3V /sys/devices/platform/it87.2608/hwmon/hwmon7/intrusion0_alarm =1 /sys/devices/platform/it87.2608/hwmon/hwmon7/name =it8613 /sys/devices/platform/it87.2608/hwmon/hwmon7/pwm2 =40 /sys/devices/platform/it87.2608/hwmon/hwmon7/pwm2_auto_channels_temp =1 /sys/devices/platform/it87.2608/hwmon/hwmon7/pwm2_auto_point1_temp =10000 /sys/devices/platform/it87.2608/hwmon/hwmon7/pwm2_auto_point1_temp_hyst =10000 /sys/devices/platform/it87.2608/hwmon/hwmon7/pwm2_auto_point2_temp =24000 /sys/devices/platform/it87.2608/hwmon/hwmon7/pwm2_auto_point3_temp =60000 /sys/devices/platform/it87.2608/hwmon/hwmon7/pwm2_auto_slope =64 /sys/devices/platform/it87.2608/hwmon/hwmon7/pwm2_auto_start =40 /sys/devices/platform/it87.2608/hwmon/hwmon7/pwm2_enable =2 /sys/devices/platform/it87.2608/hwmon/hwmon7/pwm2_freq =23437 /sys/devices/platform/it87.2608/hwmon/hwmon7/pwm3 =60 /sys/devices/platform/it87.2608/hwmon/hwmon7/pwm3_auto_channels_temp =1 /sys/devices/platform/it87.2608/hwmon/hwmon7/pwm3_auto_point1_temp =35000 /sys/devices/platform/it87.2608/hwmon/hwmon7/pwm3_auto_point1_temp_hyst =35000 /sys/devices/platform/it87.2608/hwmon/hwmon7/pwm3_auto_point2_temp =55000 /sys/devices/platform/it87.2608/hwmon/hwmon7/pwm3_auto_point3_temp =88000 /sys/devices/platform/it87.2608/hwmon/hwmon7/pwm3_auto_slope =64 /sys/devices/platform/it87.2608/hwmon/hwmon7/pwm3_auto_start =60 /sys/devices/platform/it87.2608/hwmon/hwmon7/pwm3_enable =2 /sys/devices/platform/it87.2608/hwmon/hwmon7/pwm3_freq =23437 /sys/devices/platform/it87.2608/hwmon/hwmon7/pwm4 =127 /sys/devices/platform/it87.2608/hwmon/hwmon7/pwm4_auto_channels_temp =1 /sys/devices/platform/it87.2608/hwmon/hwmon7/pwm4_auto_point1_temp =35000 /sys/devices/platform/it87.2608/hwmon/hwmon7/pwm4_auto_point1_temp_hyst =35000 /sys/devices/platform/it87.2608/hwmon/hwmon7/pwm4_auto_point2_temp =55000 /sys/devices/platform/it87.2608/hwmon/hwmon7/pwm4_auto_point3_temp =88000 /sys/devices/platform/it87.2608/hwmon/hwmon7/pwm4_auto_slope =0 /sys/devices/platform/it87.2608/hwmon/hwmon7/pwm4_enable =1 /sys/devices/platform/it87.2608/hwmon/hwmon7/pwm4_freq =23437 /sys/devices/platform/it87.2608/hwmon/hwmon7/pwm5 =127 /sys/devices/platform/it87.2608/hwmon/hwmon7/pwm5_auto_channels_temp =1 /sys/devices/platform/it87.2608/hwmon/hwmon7/pwm5_auto_point1_temp =35000 /sys/devices/platform/it87.2608/hwmon/hwmon7/pwm5_auto_point1_temp_hyst =35000 /sys/devices/platform/it87.2608/hwmon/hwmon7/pwm5_auto_point2_temp =55000 /sys/devices/platform/it87.2608/hwmon/hwmon7/pwm5_auto_point3_temp =88000 /sys/devices/platform/it87.2608/hwmon/hwmon7/pwm5_auto_slope =0 /sys/devices/platform/it87.2608/hwmon/hwmon7/pwm5_enable =1 /sys/devices/platform/it87.2608/hwmon/hwmon7/pwm5_freq =23437 /sys/devices/platform/it87.2608/hwmon/hwmon7/temp1_alarm =0 /sys/devices/platform/it87.2608/hwmon/hwmon7/temp1_beep =0 /sys/devices/platform/it87.2608/hwmon/hwmon7/temp1_input =74000 /sys/devices/platform/it87.2608/hwmon/hwmon7/temp1_max =127000 /sys/devices/platform/it87.2608/hwmon/hwmon7/temp1_min =-128000 /sys/devices/platform/it87.2608/hwmon/hwmon7/temp1_offset =100000 /sys/devices/platform/it87.2608/hwmon/hwmon7/temp2_alarm =0 /sys/devices/platform/it87.2608/hwmon/hwmon7/temp2_beep =0 /sys/devices/platform/it87.2608/hwmon/hwmon7/temp2_input =-109000 /sys/devices/platform/it87.2608/hwmon/hwmon7/temp2_max =127000 /sys/devices/platform/it87.2608/hwmon/hwmon7/temp2_min =-128000 /sys/devices/platform/it87.2608/hwmon/hwmon7/temp2_offset =0 /sys/devices/platform/it87.2608/hwmon/hwmon7/temp2_type =3 /sys/devices/platform/it87.2608/hwmon/hwmon7/temp3_alarm =0 /sys/devices/platform/it87.2608/hwmon/hwmon7/temp3_beep =0 /sys/devices/platform/it87.2608/hwmon/hwmon7/temp3_input =-128000 /sys/devices/platform/it87.2608/hwmon/hwmon7/temp3_max =127000 /sys/devices/platform/it87.2608/hwmon/hwmon7/temp3_min =-128000 /sys/devices/platform/it87.2608/hwmon/hwmon7/temp3_offset =0 root@server5:~# for file in `ls -1 /sys/devices/platform/it87.2608/hwmon/hwmon7/device/*`; do echo -n "$file ="; echo "`cat $file 2>/dev/null`"; done /sys/devices/platform/it87.2608/hwmon/hwmon7/device/driver_override =(null) /sys/devices/platform/it87.2608/hwmon/hwmon7/device/modalias =platform:it87 /sys/devices/platform/it87.2608/hwmon/hwmon7/device/uevent =DRIVER=it87 MODALIAS=platform:it87 root@server5:~# for file in `ls -1 /sys/devices/platform/it87.2608/hwmon/hwmon7/power/*`; do echo -n "$file ="; echo "`cat $file 2>/dev/null`"; done /sys/devices/platform/it87.2608/hwmon/hwmon7/power/async =disabled /sys/devices/platform/it87.2608/hwmon/hwmon7/power/autosuspend_delay_ms = /sys/devices/platform/it87.2608/hwmon/hwmon7/power/control =auto /sys/devices/platform/it87.2608/hwmon/hwmon7/power/runtime_active_kids =0 /sys/devices/platform/it87.2608/hwmon/hwmon7/power/runtime_active_time =0 /sys/devices/platform/it87.2608/hwmon/hwmon7/power/runtime_enabled =disabled /sys/devices/platform/it87.2608/hwmon/hwmon7/power/runtime_status =unsupported /sys/devices/platform/it87.2608/hwmon/hwmon7/power/runtime_suspended_time =0 /sys/devices/platform/it87.2608/hwmon/hwmon7/power/runtime_usage =0
Download Geekbench tests
mkdir -p /storage/apps/Geekbench cd /storage/apps/Geekbench wget https://cdn.geekbench.com/Geekbench-6.4.0-Linux.tar.gz tar xvzf Geekbench-6.4.0-Linux.tar.gz rm -f Geekbench-6.4.0-Linux.tar.gz wget https://cdn.geekbench.com/GeekbenchAI-1.3.0-Linux.tar.gz tar xvzf GeekbenchAI-1.3.0-Linux.tar.gz rm -f GeekbenchAI-1.3.0-Linux.tar.gz
root@server5:/storage/apps/Geekbench/Geekbench-6.4.0-Linux# cpupower frequency-info analyzing CPU 1: driver: intel_pstate CPUs which run at the same hardware frequency: 1 CPUs which need to have their frequency coordinated by software: 1 energy performance preference: balance_performance hardware limits: 700 MHz - 3.60 GHz available cpufreq governors: performance powersave current policy: frequency should be within 700 MHz and 3.60 GHz. The governor "powersave" may decide which speed to use within this range. current CPU frequency: 1.06 GHz (asserted by call to kernel) boost state support: Supported: yes Active: yes root@server5:/storage/apps/Geekbench/Geekbench-6.4.0-Linux# cpupower frequency-set --governor performance Setting cpu: 0 Setting cpu: 1 Setting cpu: 2 Setting cpu: 3 root@server5:/storage/apps/Geekbench/Geekbench-6.4.0-Linux# cpupower frequency-info analyzing CPU 2: driver: intel_pstate CPUs which run at the same hardware frequency: 2 CPUs which need to have their frequency coordinated by software: 2 energy performance preference: performance hardware limits: 700 MHz - 3.60 GHz available cpufreq governors: performance powersave current policy: frequency should be within 700 MHz and 3.60 GHz. The governor "performance" may decide which speed to use within this range. current CPU frequency: 3.41 GHz (asserted by call to kernel) boost state support: Supported: yes Active: yes
Ubuntu 25.04 Geekbench 6.4.0
Power Limits | OS Setings | Single core | Multi core | Vulkan | OpenCL | llvmpipe |
---|---|---|---|---|---|---|
15/15 | powersave | 1288 | 3278 | 3899 | 4279 | 329 |
15/15 | balance_performance | 1289 | 3292 | 3911 | 4293 | 330 |
15/15 | performance | 1291 | 3196 | 4015 | 3647 | 335 |
24.04 to 25.04 info changes
/proc/cpuinfo diff
flags : ..., pcid, ... d. Process Context IDentifiers (PCID) is a CPU feature that allows us to skip flushing the entire TLB when switching page tables by setting a special bit in CR3 when the page tables are changed. This makes switching the page tables (at context switch, or kernel entry/exit) cheaper. But, on systems with PCID support, the context switch code must flush both the user and kernel entries out of the TLB. The user PCID TLB flush is deferred until the exit to userspace, minimizing the cost. See intel.com/sdm for the gory PCID/INVPCID details.
dmidecode diff
root@server5:/storage/backup/server5# diff dmidecode.txt dmidecode-2504-1.txt 1c1 < # dmidecode 3.5 --- > # dmidecode 3.6 4,5d3 < # SMBIOS implementations newer than version 3.5.0 are not < # fully supported by this version of dmidecode. 128c126,127 < Type: 32-bit PCI Express x1 --- > Type: PCI Express x1 > Data Bus Width: 32 bit 140c139,140 < Type: 32-bit PCI Express x1 --- > Type: PCI Express x1 > Data Bus Width: 32 bit 152c152,153 < Type: 32-bit PCI Express x1 --- > Type: PCI Express x1 > Data Bus Width: 32 bit 164c165,166 < Type: 32-bit PCI Express x1 --- > Type: PCI Express x1 > Data Bus Width: 32 bit 176c178,179 < Type: 32-bit PCI Express x1 --- > Type: PCI Express x1 > Data Bus Width: 32 bit 1359c1362 < DB 6A 7C 00 01 04 01 55 02 00 90 06 01 10 8B 20 --- > DB 6A 7C 00 01 04 01 55 02 00 90 06 01 10 80 20
lshw
root@server5:/storage/backup/server5# diff lshw-2504-1.txt lshw.txt 108c108 < size: 2989MHz --- > size: 1134MHz 112c112 < capabilities: lm fpu fpu_exception wp vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp x86-64 constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l2 cdp_l2 ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid rdt_a rdseed adx smap clflushopt clwb intel_pt sha_ni xsaveopt xsavec xgetbv1 xsaves split_lock_detect user_shstk avx_vnni dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp hwp_pkg_req vnmi umip pku ospke waitpkg gfni vaes vpclmulqdq rdpid movdiri movdir64b fsrm md_clear serialize arch_lbr ibt flush_l1d arch_capabilities cpufreq --- > capabilities: lm fpu fpu_exception wp vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp x86-64 constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l2 cdp_l2 ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid rdt_a rdseed adx smap clflushopt clwb intel_pt sha_ni xsaveopt xsavec xgetbv1 xsaves split_lock_detect user_shstk avx_vnni dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp hwp_pkg_req vnmi umip pku ospke waitpkg gfni vaes vpclmulqdq rdpid movdiri movdir64b fsrm md_clear serialize arch_lbr ibt flush_l1d arch_capabilities cpufreq 116c116 < product: Alder Lake-N Processor Host Bridge/DRAM Registers --- > product: Intel Corporation 130a131 > logical name: /dev/fb0 134,135c135,136 < capabilities: pciexpress msi pm vga_controller bus_master cap_list rom < configuration: driver=i915 latency=0 --- > capabilities: pciexpress msi pm vga_controller bus_master cap_list rom fb > configuration: depth=32 driver=i915 latency=0 mode=1920x1080 resolution=1920,1080 visual=truecolor xres=1920 yres=1080 151c152 < product: Alder Lake-N Thunderbolt 4 USB Controller --- > product: Intel Corporation 163c164 < vendor: Linux 6.14.0-15-generic xhci-hcd --- > vendor: Linux 6.11.0-24-generic xhci-hcd 167c168 < version: 6.14 --- > version: 6.11 172c173 < vendor: Linux 6.14.0-15-generic xhci-hcd --- > vendor: Linux 6.11.0-24-generic xhci-hcd 176c177 < version: 6.14 --- > version: 6.11 188a190,246 > *-usb > description: Mass storage device > product: SanDisk 3.2Gen1 > vendor: USB > physical id: 2 > bus info: usb@2:2.2 > logical name: scsi0 > version: 1.00 > serial: 0101d719748ea55d9111dbeb43a7383f0c2ec19e442c8b355e114d7b46e1900bcd4c000000000000 > capabilities: usb-3.20 scsi emulated scsi-host > configuration: driver=usb-storage maxpower=896mA speed=5000Mbit/s > *-disk > description: SCSI Disk > product: SanDisk 3.2Gen1 > vendor: USB > physical id: 0.0.0 > bus info: scsi@0:0.0.0 > logical name: /dev/sda > version: 1.00 > serial: 0101d719748ea55d9111 > size: 232GiB (250GB) > capabilities: removable > configuration: ansiversion=6 logicalsectorsize=512 sectorsize=512 > *-medium > physical id: 0 > logical name: /dev/sda > size: 232GiB (250GB) > capabilities: gpt-1.00 partitioned partitioned:gpt > configuration: guid=9fdb049c-4f15-487c-b891-ee152a14c9db > *-volume:0 > description: data partition > vendor: Windows > physical id: 1 > logical name: /dev/sda1 > serial: 9fdb049c-4f15-487c-b890-ee152a14c9db > capacity: 1922MiB > capabilities: precious readonly > configuration: name=ISO9660 > *-volume:1 > description: Windows FAT volume > vendor: mkfs.fat > physical id: 2 > logical name: /dev/sda2 > version: FAT12 > serial: fd87-286a > size: 15EiB > capabilities: boot fat initialized > configuration: FATs=2 filesystem=fat label=ESP name=Appended2 > *-volume:2 > description: data partition > vendor: Windows > physical id: 3 > logical name: /dev/sda3 > serial: 9fdb049c-4f15-487c-b892-ee152a14c9db > capacity: 299KiB > capabilities: precious readonly > configuration: name=Gap1 200c258 < resources: iomemory:600-5ff irq:134 memory:6001100000-600110ffff --- > resources: iomemory:600-5ff irq:138 memory:6001100000-600110ffff 203c261 < vendor: Linux 6.14.0-15-generic xhci-hcd --- > vendor: Linux 6.11.0-24-generic xhci-hcd 207c265 < version: 6.14 --- > version: 6.11 231c289 < vendor: Linux 6.14.0-15-generic xhci-hcd --- > vendor: Linux 6.11.0-24-generic xhci-hcd 235c293 < version: 6.14 --- > version: 6.11 250c308 < *-network --- > *-network DISABLED 262c320 < configuration: broadcast=yes driver=iwlwifi driverversion=6.14.0-15-generic firmware=89.4d42c933.0 so-a0-hr-b0-89.uc ip=10.9.8.181 latency=0 link=yes multicast=yes wireless=IEEE 802.11 --- > configuration: broadcast=yes driver=iwlwifi driverversion=6.11.0-24-generic firmware=89.202a2f7b.0 so-a0-hr-b0-89.uc latency=0 link=no multicast=yes wireless=IEEE 802.11 330c388 < configuration: guid=a5f5db4c-fb10-4c43-b1a6-4b4c79c7e7d6 logicalsectorsize=512 sectorsize=512 --- > configuration: guid=55e1cfea-2508-4380-8048-86466a3c7475 logicalsectorsize=512 sectorsize=512 338c396 < serial: 20b3-8998 --- > serial: f557-b88c 350c408 < serial: 9287ad7a-5311-4eeb-9689-456818547e2b --- > serial: dda5b65e-2cb5-4648-9867-1eaa0e717e2e 353c411 < configuration: created=2025-04-25 21:18:53 filesystem=ext4 lastmountpoint=/boot modified=2025-04-26 18:16:57 mount.fstype=ext4 mount.options=rw,relatime mounted=2025-04-26 18:16:57 state=mounted --- > configuration: created=2025-04-14 17:01:11 filesystem=ext4 lastmountpoint=/boot modified=2025-04-25 12:07:35 mount.fstype=ext4 mount.options=rw,relatime mounted=2025-04-25 12:07:35 state=mounted 355c413 < description: Linux swap volume --- > description: EXT4 volume 359,368d416 < version: 1 < serial: 937971e3-ac4c-458e-bca1-ac773c0a461b < size: 6142MiB < capacity: 6143MiB < capabilities: nofs swap initialized < configuration: filesystem=swap pagesize=4095 < *-volume:3 < description: EFI partition < physical id: 4 < logical name: /dev/mmcblk0p4 370,372c418,422 < serial: eb79ce2f-6aca-4d3e-83b8-caa6909badd8 < capacity: 50GiB < configuration: mount.fstype=btrfs mount.options=rw,relatime,ssd,discard=async,space_cache=v2,subvolid=5,subvol=/ state=mounted --- > version: 1.0 > serial: 04b08549-62d1-41eb-818d-bf301872b67e > size: 56GiB > capabilities: journaled extended_attributes large_files huge_files dir_nlink recover 64bit extents ext4 ext2 initialized > configuration: created=2025-04-14 17:01:13 filesystem=ext4 lastmountpoint=/ modified=2025-04-25 17:07:51 mount.fstype=ext4 mount.options=rw,relatime mounted=2025-04-25 12:07:32 state=mounted 375c425 < product: Alder Lake-N PCI Express Root Port #1 --- > product: Intel Corporation 391c441 < logical name: /dev/nvme2 --- > logical name: /dev/nvme0 402c452 < logical name: hwmon4 --- > logical name: hwmon3 406c456 < logical name: /dev/ng2n1 --- > logical name: /dev/ng0n1 410,411c460,461 < bus info: nvme@2:1 < logical name: /dev/nvme2n1 --- > bus info: nvme@0:1 > logical name: /dev/nvme0n1 419,420c469,470 < bus info: nvme@2:1,1 < logical name: /dev/nvme2n1p1 --- > bus info: nvme@0:1,1 > logical name: /dev/nvme0n1p1 428c478 < product: Alder Lake-N PCI Express Root Port #3 --- > product: Intel Corporation 444c494 < logical name: /dev/nvme0 --- > logical name: /dev/nvme1 455c505 < logical name: hwmon3 --- > logical name: hwmon4 459c509 < logical name: /dev/ng0n1 --- > logical name: /dev/ng1n1 463,464c513,514 < bus info: nvme@0:1 < logical name: /dev/nvme0n1 --- > bus info: nvme@1:1 > logical name: /dev/nvme1n1 472,473c522,523 < bus info: nvme@0:1,1 < logical name: /dev/nvme0n1p1 --- > bus info: nvme@1:1,1 > logical name: /dev/nvme1n1p1 479c529 < product: Alder Lake-N PCI Express Root Port #7 --- > product: Intel Corporation 526c576 < configuration: autonegotiation=on broadcast=yes driver=igc driverversion=6.14.0-15-generic firmware=2022:889d latency=0 link=no multicast=yes port=twisted pair --- > configuration: autonegotiation=on broadcast=yes driver=igc driverversion=6.11.0-24-generic firmware=2022:889d latency=0 link=no multicast=yes port=twisted pair 553c603 < configuration: autonegotiation=on broadcast=yes driver=igc driverversion=6.14.0-15-generic duplex=full firmware=2022:889d ip=10.9.8.201 latency=0 link=yes multicast=yes port=twisted pair --- > configuration: autonegotiation=on broadcast=yes driver=igc driverversion=6.11.0-24-generic duplex=full firmware=2022:889d ip=10.9.8.201 latency=0 link=yes multicast=yes port=twisted pair 557c607 < product: Alder Lake-N PCI Express Root Port #9 --- > product: Intel Corporation 573c623 < logical name: /dev/nvme1 --- > logical name: /dev/nvme3 588c638 < logical name: /dev/ng1n1 --- > logical name: /dev/ng3n1 592,593c642,643 < bus info: nvme@1:1 < logical name: /dev/nvme1n1 --- > bus info: nvme@3:1 > logical name: /dev/nvme3n1 601,602c651,652 < bus info: nvme@1:1,1 < logical name: /dev/nvme1n1p1 --- > bus info: nvme@3:1,1 > logical name: /dev/nvme3n1p1 608c658 < product: Alder Lake-N PCI Express Root Port #11 --- > product: Intel Corporation 624c674 < logical name: /dev/nvme3 --- > logical name: /dev/nvme2 639c689 < logical name: /dev/ng3n1 --- > logical name: /dev/ng2n1 643,644c693,694 < bus info: nvme@3:1 < logical name: /dev/nvme3n1 --- > bus info: nvme@2:1 > logical name: /dev/nvme2n1 652,653c702,703 < bus info: nvme@3:1,1 < logical name: /dev/nvme3n1p1 --- > bus info: nvme@2:1,1 > logical name: /dev/nvme2n1p1 752c802 < product: Alder Lake-N SMBus --- > product: Intel Corporation 763c813 < product: Alder Lake-N SPI (flash) Controller --- > product: Intel Corporation root@server5:/storage/backup/server5# root@server5:/storage/backup/server5# diff lshw-2504-1.txt lshw.txt 108c108 < size: 2989MHz --- > size: 1134MHz 112c112 < capabilities: lm fpu fpu_exception wp vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp x86-64 constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l2 cdp_l2 ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid rdt_a rdseed adx smap clflushopt clwb intel_pt sha_ni xsaveopt xsavec xgetbv1 xsaves split_lock_detect user_shstk avx_vnni dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp hwp_pkg_req vnmi umip pku ospke waitpkg gfni vaes vpclmulqdq rdpid movdiri movdir64b fsrm md_clear serialize arch_lbr ibt flush_l1d arch_capabilities cpufreq --- > capabilities: lm fpu fpu_exception wp vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp x86-64 constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb cat_l2 cdp_l2 ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid rdt_a rdseed adx smap clflushopt clwb intel_pt sha_ni xsaveopt xsavec xgetbv1 xsaves split_lock_detect user_shstk avx_vnni dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp hwp_pkg_req vnmi umip pku ospke waitpkg gfni vaes vpclmulqdq rdpid movdiri movdir64b fsrm md_clear serialize arch_lbr ibt flush_l1d arch_capabilities cpufreq 116c116 < product: Alder Lake-N Processor Host Bridge/DRAM Registers --- > product: Intel Corporation 130a131 > logical name: /dev/fb0 134,135c135,136 < capabilities: pciexpress msi pm vga_controller bus_master cap_list rom < configuration: driver=i915 latency=0 --- > capabilities: pciexpress msi pm vga_controller bus_master cap_list rom fb > configuration: depth=32 driver=i915 latency=0 mode=1920x1080 resolution=1920,1080 visual=truecolor xres=1920 yres=1080 151c152 < product: Alder Lake-N Thunderbolt 4 USB Controller --- > product: Intel Corporation 163c164 < vendor: Linux 6.14.0-15-generic xhci-hcd --- > vendor: Linux 6.11.0-24-generic xhci-hcd 167c168 < version: 6.14 --- > version: 6.11 172c173 < vendor: Linux 6.14.0-15-generic xhci-hcd --- > vendor: Linux 6.11.0-24-generic xhci-hcd 176c177 < version: 6.14 --- > version: 6.11 188a190,246 > *-usb > description: Mass storage device > product: SanDisk 3.2Gen1 > vendor: USB > physical id: 2 > bus info: usb@2:2.2 > logical name: scsi0 > version: 1.00 > serial: 0101d719748ea55d9111dbeb43a7383f0c2ec19e442c8b355e114d7b46e1900bcd4c000000000000 > capabilities: usb-3.20 scsi emulated scsi-host > configuration: driver=usb-storage maxpower=896mA speed=5000Mbit/s > *-disk > description: SCSI Disk > product: SanDisk 3.2Gen1 > vendor: USB > physical id: 0.0.0 > bus info: scsi@0:0.0.0 > logical name: /dev/sda > version: 1.00 > serial: 0101d719748ea55d9111 > size: 232GiB (250GB) > capabilities: removable > configuration: ansiversion=6 logicalsectorsize=512 sectorsize=512 > *-medium > physical id: 0 > logical name: /dev/sda > size: 232GiB (250GB) > capabilities: gpt-1.00 partitioned partitioned:gpt > configuration: guid=9fdb049c-4f15-487c-b891-ee152a14c9db > *-volume:0 > description: data partition > vendor: Windows > physical id: 1 > logical name: /dev/sda1 > serial: 9fdb049c-4f15-487c-b890-ee152a14c9db > capacity: 1922MiB > capabilities: precious readonly > configuration: name=ISO9660 > *-volume:1 > description: Windows FAT volume > vendor: mkfs.fat > physical id: 2 > logical name: /dev/sda2 > version: FAT12 > serial: fd87-286a > size: 15EiB > capabilities: boot fat initialized > configuration: FATs=2 filesystem=fat label=ESP name=Appended2 > *-volume:2 > description: data partition > vendor: Windows > physical id: 3 > logical name: /dev/sda3 > serial: 9fdb049c-4f15-487c-b892-ee152a14c9db > capacity: 299KiB > capabilities: precious readonly > configuration: name=Gap1 200c258 < resources: iomemory:600-5ff irq:134 memory:6001100000-600110ffff --- > resources: iomemory:600-5ff irq:138 memory:6001100000-600110ffff 203c261 < vendor: Linux 6.14.0-15-generic xhci-hcd --- > vendor: Linux 6.11.0-24-generic xhci-hcd 207c265 < version: 6.14 --- > version: 6.11 231c289 < vendor: Linux 6.14.0-15-generic xhci-hcd --- > vendor: Linux 6.11.0-24-generic xhci-hcd 235c293 < version: 6.14 --- > version: 6.11 250c308 < *-network --- > *-network DISABLED 262c320 < configuration: broadcast=yes driver=iwlwifi driverversion=6.14.0-15-generic firmware=89.4d42c933.0 so-a0-hr-b0-89.uc ip=10.9.8.181 latency=0 link=yes multicast=yes wireless=IEEE 802.11 --- > configuration: broadcast=yes driver=iwlwifi driverversion=6.11.0-24-generic firmware=89.202a2f7b.0 so-a0-hr-b0-89.uc latency=0 link=no multicast=yes wireless=IEEE 802.11 330c388 < configuration: guid=a5f5db4c-fb10-4c43-b1a6-4b4c79c7e7d6 logicalsectorsize=512 sectorsize=512 --- > configuration: guid=55e1cfea-2508-4380-8048-86466a3c7475 logicalsectorsize=512 sectorsize=512 338c396 < serial: 20b3-8998 --- > serial: f557-b88c 350c408 < serial: 9287ad7a-5311-4eeb-9689-456818547e2b --- > serial: dda5b65e-2cb5-4648-9867-1eaa0e717e2e 353c411 < configuration: created=2025-04-25 21:18:53 filesystem=ext4 lastmountpoint=/boot modified=2025-04-26 18:16:57 mount.fstype=ext4 mount.options=rw,relatime mounted=2025-04-26 18:16:57 state=mounted --- > configuration: created=2025-04-14 17:01:11 filesystem=ext4 lastmountpoint=/boot modified=2025-04-25 12:07:35 mount.fstype=ext4 mount.options=rw,relatime mounted=2025-04-25 12:07:35 state=mounted 355c413 < description: Linux swap volume --- > description: EXT4 volume 359,368d416 < version: 1 < serial: 937971e3-ac4c-458e-bca1-ac773c0a461b < size: 6142MiB < capacity: 6143MiB < capabilities: nofs swap initialized < configuration: filesystem=swap pagesize=4095 < *-volume:3 < description: EFI partition < physical id: 4 < logical name: /dev/mmcblk0p4 370,372c418,422 < serial: eb79ce2f-6aca-4d3e-83b8-caa6909badd8 < capacity: 50GiB < configuration: mount.fstype=btrfs mount.options=rw,relatime,ssd,discard=async,space_cache=v2,subvolid=5,subvol=/ state=mounted --- > version: 1.0 > serial: 04b08549-62d1-41eb-818d-bf301872b67e > size: 56GiB > capabilities: journaled extended_attributes large_files huge_files dir_nlink recover 64bit extents ext4 ext2 initialized > configuration: created=2025-04-14 17:01:13 filesystem=ext4 lastmountpoint=/ modified=2025-04-25 17:07:51 mount.fstype=ext4 mount.options=rw,relatime mounted=2025-04-25 12:07:32 state=mounted 375c425 < product: Alder Lake-N PCI Express Root Port #1 --- > product: Intel Corporation 391c441 < logical name: /dev/nvme2 --- > logical name: /dev/nvme0 402c452 < logical name: hwmon4 --- > logical name: hwmon3 406c456 < logical name: /dev/ng2n1 --- > logical name: /dev/ng0n1 410,411c460,461 < bus info: nvme@2:1 < logical name: /dev/nvme2n1 --- > bus info: nvme@0:1 > logical name: /dev/nvme0n1 419,420c469,470 < bus info: nvme@2:1,1 < logical name: /dev/nvme2n1p1 --- > bus info: nvme@0:1,1 > logical name: /dev/nvme0n1p1 428c478 < product: Alder Lake-N PCI Express Root Port #3 --- > product: Intel Corporation 444c494 < logical name: /dev/nvme0 --- > logical name: /dev/nvme1 455c505 < logical name: hwmon3 --- > logical name: hwmon4 459c509 < logical name: /dev/ng0n1 --- > logical name: /dev/ng1n1 463,464c513,514 < bus info: nvme@0:1 < logical name: /dev/nvme0n1 --- > bus info: nvme@1:1 > logical name: /dev/nvme1n1 472,473c522,523 < bus info: nvme@0:1,1 < logical name: /dev/nvme0n1p1 --- > bus info: nvme@1:1,1 > logical name: /dev/nvme1n1p1 479c529 < product: Alder Lake-N PCI Express Root Port #7 --- > product: Intel Corporation 526c576 < configuration: autonegotiation=on broadcast=yes driver=igc driverversion=6.14.0-15-generic firmware=2022:889d latency=0 link=no multicast=yes port=twisted pair --- > configuration: autonegotiation=on broadcast=yes driver=igc driverversion=6.11.0-24-generic firmware=2022:889d latency=0 link=no multicast=yes port=twisted pair 553c603 < configuration: autonegotiation=on broadcast=yes driver=igc driverversion=6.14.0-15-generic duplex=full firmware=2022:889d ip=10.9.8.201 latency=0 link=yes multicast=yes port=twisted pair --- > configuration: autonegotiation=on broadcast=yes driver=igc driverversion=6.11.0-24-generic duplex=full firmware=2022:889d ip=10.9.8.201 latency=0 link=yes multicast=yes port=twisted pair 557c607 < product: Alder Lake-N PCI Express Root Port #9 --- > product: Intel Corporation 573c623 < logical name: /dev/nvme1 --- > logical name: /dev/nvme3 588c638 < logical name: /dev/ng1n1 --- > logical name: /dev/ng3n1 592,593c642,643 < bus info: nvme@1:1 < logical name: /dev/nvme1n1 --- > bus info: nvme@3:1 > logical name: /dev/nvme3n1 601,602c651,652 < bus info: nvme@1:1,1 < logical name: /dev/nvme1n1p1 --- > bus info: nvme@3:1,1 > logical name: /dev/nvme3n1p1 608c658 < product: Alder Lake-N PCI Express Root Port #11 --- > product: Intel Corporation 624c674 < logical name: /dev/nvme3 --- > logical name: /dev/nvme2 639c689 < logical name: /dev/ng3n1 --- > logical name: /dev/ng2n1 643,644c693,694 < bus info: nvme@3:1 < logical name: /dev/nvme3n1 --- > bus info: nvme@2:1 > logical name: /dev/nvme2n1 652,653c702,703 < bus info: nvme@3:1,1 < logical name: /dev/nvme3n1p1 --- > bus info: nvme@2:1,1 > logical name: /dev/nvme2n1p1 752c802 < product: Alder Lake-N SMBus --- > product: Intel Corporation 763c813 < product: Alder Lake-N SPI (flash) Controller --- > product: Intel Corporation
sensors (Wi-Fi temperature added)
root@server5:/storage/backup/server5# diff sensors-2504-1.txt sensors.txt 3c3 < temp1: +44.0°C --- > temp1: N/A
vainfo
root@server5:/storage/backup/server5# diff vainfo-2504-1.txt vainfo.txt 1,2d0 < Trying display: wayland < Trying display: x11 4,5c2,3 < vainfo: VA-API version: 1.22 (libva 2.22.0) < vainfo: Driver version: Intel iHD driver for Intel(R) Gen Graphics - 25.1.2 () --- > vainfo: VA-API version: 1.23 (libva 2.23.0.pre1) > vainfo: Driver version: Intel iHD driver for Intel(R) Gen Graphics - 25.2.1 (4dc776b13)
compiled vs compiled
root@server5:/storage/backup/server5# diff vainfo-2504-2.txt vainfo.txt 3c3 < vainfo: Driver version: Intel iHD driver for Intel(R) Gen Graphics - 25.2.2 (5bc135517) --- > vainfo: Driver version: Intel iHD driver for Intel(R) Gen Graphics - 25.2.1 (4dc776b13)
dmesg diff between Ubuntu 24.04 and Ubuntu 25.04
root@server5:~# diff /storage/backup/server5/dmesg-notimestamps.txt /storage/backup/server5/dmesg-2504-1-notimestamps.txt 1,2c1,2 < Linux version 6.11.0-24-generic (buildd@lcy02-amd64-034) (x86_64-linux-gnu-gcc-13 (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0, GNU ld (GNU Binutils for Ubuntu) 2.42) #24~24.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue Mar 25 20:14:34 UTC 2 (Ubuntu 6.11.0-24.24~24.04.1-generic 6.11.11) < Command line: BOOT_IMAGE=/vmlinuz-6.11.0-24-generic root=UUID=04b08549-62d1-41eb-818d-bf301872b67e ro --- > Linux version 6.14.0-15-generic (buildd@lcy02-amd64-022) (x86_64-linux-gnu-gcc-14 (Ubuntu 14.2.0-19ubuntu2) 14.2.0, GNU ld (GNU Binutils for Ubuntu) 2.44) #15-Ubuntu SMP PREEMPT_DYNAMIC Sun Apr 6 15:05:05 UTC 2025 (Ubuntu 6.14.0-15.15-generic 6.14.0) > Command line: BOOT_IMAGE=/vmlinuz-6.14.0-15-generic root=UUID=057e9267-a9c1-4a1f-96ae-2c00b08e5368 ro crashkernel=2G-4G:320M,4G-32G:512M,32G-64G:1024M,64G-128G:2048M,128G-:4096M 35c35 < efi: ACPI=0x72aa9000 ACPI 2.0=0x72aa9014 TPMFinalLog=0x72a78000 SMBIOS=0x73ba8000 SMBIOS 3.0=0x73ba7000 MEMATTR=0x6c1a2018 ESRT=0x6d8c0b98 MOKvar=0x73bdb000 INITRD=0x6c0b1318 RNG=0x725be018 TPMEventLog=0x725b4018 --- > efi: ACPI=0x72aa9000 ACPI 2.0=0x72aa9014 TPMFinalLog=0x72a78000 SMBIOS=0x73ba8000 SMBIOS 3.0=0x73ba7000 MEMATTR=0x6c1b1018 ESRT=0x6d8c0b98 MOKvar=0x73bdb000 INITRD=0x6c1af798 RNG=0x725bf018 TPMEventLog=0x725b5018 37c37 < efi: Remove mem82: MMIO range=[0xc0000000-0xcfffffff] (256MB) from e820 map --- > efi: Remove mem78: MMIO range=[0xc0000000-0xcfffffff] (256MB) from e820 map 39,43c39,43 < efi: Not removing mem83: MMIO range=[0xfe000000-0xfe010fff] (68KB) from e820 map < efi: Not removing mem84: MMIO range=[0xfec00000-0xfec00fff] (4KB) from e820 map < efi: Not removing mem85: MMIO range=[0xfed00000-0xfed00fff] (4KB) from e820 map < efi: Not removing mem87: MMIO range=[0xfee00000-0xfee00fff] (4KB) from e820 map < efi: Remove mem88: MMIO range=[0xff000000-0xffffffff] (16MB) from e820 map --- > efi: Not removing mem79: MMIO range=[0xfe000000-0xfe010fff] (68KB) from e820 map > efi: Not removing mem80: MMIO range=[0xfec00000-0xfec00fff] (4KB) from e820 map > efi: Not removing mem81: MMIO range=[0xfed00000-0xfed00fff] (4KB) from e820 map > efi: Not removing mem83: MMIO range=[0xfee00000-0xfee00fff] (4KB) from e820 map > efi: Remove mem84: MMIO range=[0xff000000-0xffffffff] (16MB) from e820 map 61d60 < Incomplete global flushes, disabling PCID 63c62 < RAMDISK: [mem 0x62950000-0x66bd7fff] --- > RAMDISK: [mem 0x6240d000-0x66d96fff] 66c65 < ACPI: XSDT 0x0000000072AA8728 000114 (v01 ALASKA A M I 01072009 AMI 01000013) --- > ACPI: XSDT 0x0000000072AA8728 00010C (v01 ALASKA A M I 01072009 AMI 01000013) 95,97c94,95 < ACPI: BGRT 0x00000000725C1000 000038 (v01 ALASKA A M I 01072009 AMI 00010013) < ACPI: PHAT 0x00000000725C0000 000611 (v01 ALASKA A M I 00000005 MSFT 0100000D) < ACPI: TPM2 0x00000000725BF000 00004C (v04 ALASKA A M I 00000001 AMI 00000000) --- > ACPI: PHAT 0x00000000725C1000 000611 (v01 ALASKA A M I 00000005 MSFT 0100000D) > ACPI: TPM2 0x00000000725C0000 00004C (v04 ALASKA A M I 00000001 AMI 00000000) 127,129c125,126 < ACPI: Reserving BGRT table memory at [mem 0x725c1000-0x725c1037] < ACPI: Reserving PHAT table memory at [mem 0x725c0000-0x725c0610] < ACPI: Reserving TPM2 table memory at [mem 0x725bf000-0x725bf04b] --- > ACPI: Reserving PHAT table memory at [mem 0x725c1000-0x725c1610] > ACPI: Reserving TPM2 table memory at [mem 0x725c0000-0x725c004b] 133c130,131 < NODE_DATA(0) allocated [mem 0x37fbd5000-0x37fbfffff] --- > NODE_DATA(0) allocated [mem 0x37fbd5680-0x37fbfffff] > crashkernel reserved: 0x0000000041000000 - 0x0000000061000000 (512 MB) 184d181 < e820: update [mem 0x68e96000-0x69011fff] usable ==> reserved 196d192 < PM: hibernation: Registered nosave memory: [mem 0x68e96000-0x69011fff] < PM: hibernation: Registered nosave memory: [mem 0x68e96000-0x69011fff] 225,226c221,223 < Kernel command line: BOOT_IMAGE=/vmlinuz-6.11.0-24-generic root=UUID=04b08549-62d1-41eb-818d-bf301872b67e ro < Unknown kernel command line parameters "BOOT_IMAGE=/vmlinuz-6.11.0-24-generic", will be passed to user space. --- > Kernel command line: BOOT_IMAGE=/vmlinuz-6.14.0-15-generic root=UUID=057e9267-a9c1-4a1f-96ae-2c00b08e5368 ro crashkernel=2G-4G:320M,4G-32G:512M,32G-64G:1024M,64G-128G:2048M,128G-:4096M > Unknown kernel command line parameters "BOOT_IMAGE=/vmlinuz-6.14.0-15-generic", will be passed to user space. > printk: log buffer data + meta data: 262144 + 917504 = 1179648 bytes 235,236c232,233 < ftrace: allocating 59224 entries in 232 pages < ftrace: allocated 232 pages with 4 groups --- > ftrace: allocating 60578 entries in 237 pages > ftrace: allocated 237 pages with 6 groups 252c249 < ACPI: Core revision 20240322 --- > ACPI: Core revision 20240827 318c315 < Memory: 11880072K/12304568K available (22528K kernel code, 4520K rwdata, 14916K rodata, 5104K init, 4520K bss, 410668K reserved, 0K cma-reserved) --- > Memory: 11350104K/12304568K available (21770K kernel code, 4579K rwdata, 15936K rodata, 5096K init, 4468K bss, 940604K reserved, 0K cma-reserved) 325c322 < PM: RTC time: 12:07:29, date: 2025-04-25 --- > PM: RTC time: 07:49:16, date: 2025-04-28 331c328 < audit: type=2000 audit(1745582849.041:1): state=initialized audit_enabled=0 res=1 --- > audit: type=2000 audit(1745826556.052:1): state=initialized audit_enabled=0 res=1 356c353 < ACPI: SSDT 0xFFFF9FD081C69A00 0001A3 (v02 PmRef Cpu0Ist 00003000 INTL 20200717) --- > ACPI: SSDT 0xFFFF98C7017FCE00 0001A3 (v02 PmRef Cpu0Ist 00003000 INTL 20200717) 358c355 < ACPI: SSDT 0xFFFF9FD081C68600 0001AB (v02 PmRef Cpu0Psd 00003000 INTL 20200717) --- > ACPI: SSDT 0xFFFF98C7017FD400 0001AB (v02 PmRef Cpu0Psd 00003000 INTL 20200717) 360c357 < ACPI: SSDT 0xFFFF9FD081F6F800 0004B5 (v02 PmRef Cpu0Hwp 00003000 INTL 20200717) --- > ACPI: SSDT 0xFFFF98C701F25800 0004B5 (v02 PmRef Cpu0Hwp 00003000 INTL 20200717) 362c359 < ACPI: SSDT 0xFFFF9FD081F7A000 001BAF (v02 PmRef ApIst 00003000 INTL 20200717) --- > ACPI: SSDT 0xFFFF98C701F42000 001BAF (v02 PmRef ApIst 00003000 INTL 20200717) 364c361 < ACPI: SSDT 0xFFFF9FD081F7E000 001038 (v02 PmRef ApHwp 00003000 INTL 20200717) --- > ACPI: SSDT 0xFFFF98C701F46000 001038 (v02 PmRef ApHwp 00003000 INTL 20200717) 366c363 < ACPI: SSDT 0xFFFF9FD081F7C000 001349 (v02 PmRef ApPsd 00003000 INTL 20200717) --- > ACPI: SSDT 0xFFFF98C701F40000 001349 (v02 PmRef ApPsd 00003000 INTL 20200717) 541d537 < e820: reserve RAM buffer [mem 0x68e96000-0x6bffffff] 582,583c578,579 < UDP hash table entries: 8192 (order: 6, 262144 bytes, linear) < UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear) --- > UDP hash table entries: 8192 (order: 7, 524288 bytes, linear) > UDP-Lite hash table entries: 8192 (order: 7, 524288 bytes, linear) 624,629d619 < DMAR: IOMMU feature fl1gp_support inconsistent < DMAR: IOMMU feature pgsel_inv inconsistent < DMAR: IOMMU feature nwfs inconsistent < DMAR: IOMMU feature dit inconsistent < DMAR: IOMMU feature sc_support inconsistent < DMAR: IOMMU feature dev_iotlb_support inconsistent 664c654 < software IO TLB: mapped [mem 0x000000005d6b3000-0x00000000616b3000] (64MB) --- > software IO TLB: mapped [mem 0x000000003d000000-0x0000000041000000] (64MB) 673c663 < fuse: init (API version 7.40) --- > fuse: init (API version 7.42) 679a670 > ledtrig-cpu: registered to indicate activity on CPUs 694a686,725 > xhci_hcd 0000:00:0d.0: xHCI Host Controller > xhci_hcd 0000:00:0d.0: new USB bus registered, assigned bus number 1 > xhci_hcd 0000:00:0d.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000200009810 > xhci_hcd 0000:00:0d.0: xHCI Host Controller > xhci_hcd 0000:00:0d.0: new USB bus registered, assigned bus number 2 > xhci_hcd 0000:00:0d.0: Host supports USB 3.2 Enhanced SuperSpeed > usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.14 > usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 > usb usb1: Product: xHCI Host Controller > usb usb1: Manufacturer: Linux 6.14.0-15-generic xhci-hcd > usb usb1: SerialNumber: 0000:00:0d.0 > hub 1-0:1.0: USB hub found > hub 1-0:1.0: 1 port detected > usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.14 > usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 > usb usb2: Product: xHCI Host Controller > usb usb2: Manufacturer: Linux 6.14.0-15-generic xhci-hcd > usb usb2: SerialNumber: 0000:00:0d.0 > hub 2-0:1.0: USB hub found > hub 2-0:1.0: 2 ports detected > xhci_hcd 0000:00:14.0: xHCI Host Controller > xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3 > xhci_hcd 0000:00:14.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000100200009810 > xhci_hcd 0000:00:14.0: xHCI Host Controller > xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4 > xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed > usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.14 > usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 > usb usb3: Product: xHCI Host Controller > usb usb3: Manufacturer: Linux 6.14.0-15-generic xhci-hcd > usb usb3: SerialNumber: 0000:00:14.0 > hub 3-0:1.0: USB hub found > hub 3-0:1.0: 12 ports detected > usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.14 > usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 > usb usb4: Product: xHCI Host Controller > usb usb4: Manufacturer: Linux 6.14.0-15-generic xhci-hcd > usb usb4: SerialNumber: 0000:00:14.0 > hub 4-0:1.0: USB hub found > hub 4-0:1.0: 4 ports detected 699c730 < rtc_cmos rtc_cmos: setting system clock to 2025-04-25T12:07:29 UTC (1745582849) --- > rtc_cmos rtc_cmos: setting system clock to 2025-04-28T07:49:17 UTC (1745826557) 704c735 < device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@lists.linux.dev --- > device-mapper: ioctl: 4.49.0-ioctl (2025-01-17) initialised: dm-devel@lists.linux.dev 718,721d748 < ledtrig-cpu: registered to indicate activity on CPUs < [drm] Initialized simpledrm 1.0.0 for simple-framebuffer.0 on minor 0 < Console: switching to colour frame buffer device 240x67 < simple-framebuffer simple-framebuffer.0: [drm] fb0: simpledrmdrmfb frame buffer device 724c751 < Freeing initrd memory: 68128K --- > Freeing initrd memory: 75304K 734c761 < sched_clock: Marking stable (535001229, 2132543)->(539463833, -2330061) --- > sched_clock: Marking stable (623001725, 1980989)->(626367118, -1384404) 737c764 < Loaded X.509 cert 'Build time autogenerated kernel key: f522ba7a60e7ef6cc5539b0741475d115bf36367' --- > Loaded X.509 cert 'Build time autogenerated kernel key: efe648a0727ac2b39d88d55659f8e6c0c5f80041' 762c789 < Loaded X.509 cert 'Build time autogenerated kernel key: f522ba7a60e7ef6cc5539b0741475d115bf36367' --- > Loaded X.509 cert 'Build time autogenerated kernel key: efe648a0727ac2b39d88d55659f8e6c0c5f80041' 775,778c802 < PM: Magic number: 5:204:128 < acpi INT3515:02: hash matches < acpi PNP0C02:00: hash matches < acpi device:03: hash matches --- > PM: Magic number: 5:620:825 783c807 < Freeing unused kernel image (initmem) memory: 5104K --- > Freeing unused kernel image (initmem) memory: 5096K 785c809,810 < Freeing unused kernel image (rodata/data gap) memory: 1468K --- > Freeing unused kernel image (text/rodata gap) memory: 756K > Freeing unused kernel image (rodata/data gap) memory: 448K 793,794c818,823 < BOOT_IMAGE=/vmlinuz-6.11.0-24-generic < xhci_hcd 0000:00:0d.0: xHCI Host Controller --- > BOOT_IMAGE=/vmlinuz-6.14.0-15-generic > usb 3-1: new high-speed USB device number 2 using xhci_hcd > usb 2-2: new SuperSpeed Plus Gen 2x1 USB device number 2 using xhci_hcd > Intel(R) 2.5G Ethernet Linux Driver > Copyright(c) 2018 Intel Corporation. > igc 0000:05:00.0: PCIe PTM not supported by PCIe bus/controller 797,807d825 < xhci_hcd 0000:00:0d.0: new USB bus registered, assigned bus number 1 < xhci_hcd 0000:00:0d.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000200009810 < xhci_hcd 0000:00:0d.0: xHCI Host Controller < xhci_hcd 0000:00:0d.0: new USB bus registered, assigned bus number 2 < xhci_hcd 0000:00:0d.0: Host supports USB 3.2 Enhanced SuperSpeed < usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.11 < usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 < usb usb1: Product: xHCI Host Controller < usb usb1: Manufacturer: Linux 6.11.0-24-generic xhci-hcd < usb usb1: SerialNumber: 0000:00:0d.0 < hub 1-0:1.0: USB hub found 809,811c827 809,811c827 < hub 1-0:1.0: 1 port detected < Intel(R) 2.5G Ethernet Linux Driver < Copyright(c) 2018 Intel Corporation. --- > mmc0: CQHCI version 5.10 813d828 < igc 0000:05:00.0: PCIe PTM not supported by PCIe bus/controller 815,820d829 < mmc0: CQHCI version 5.10 < usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.11 < usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 < usb usb2: Product: xHCI Host Controller < usb usb2: Manufacturer: Linux 6.11.0-24-generic xhci-hcd < usb usb2: SerialNumber: 0000:00:0d.0 821a831,835 > usb 2-2: New USB device found, idVendor=2109, idProduct=0824, bcdDevice= 1.94 > usb 2-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3 > usb 2-2: Product: USB3.1 Hub > usb 2-2: Manufacturer: VIA Labs, Inc. > usb 2-2: SerialNumber: 000000001 823d836 < nvme nvme0: pci function 0000:01:00.0 824a838 > nvme 0000:07:00.0: platform quirk: setting simple suspend 825a840 > nvme nvme3: pci function 0000:08:00.0 827,837c842,845 < nvme nvme2: pci function 0000:08:00.0 < hub 2-0:1.0: USB hub found < nvme 0000:07:00.0: platform quirk: setting simple suspend < nvme nvme3: pci function 0000:07:00.0 < hub 2-0:1.0: 2 ports detected < nvme nvme2: D3 entry latency set to 10 seconds < nvme nvme0: D3 entry latency set to 10 seconds < xhci_hcd 0000:00:14.0: xHCI Host Controller < xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3 < xhci_hcd 0000:00:14.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000100200009810 < nvme nvme3: D3 entry latency set to 10 seconds --- > nvme nvme0: pci function 0000:01:00.0 > nvme nvme2: pci function 0000:07:00.0 > hub 2-2:1.0: USB hub found > hub 2-2:1.0: 4 ports detected 839,841c847,848 < xhci_hcd 0000:00:14.0: xHCI Host Controller < nvme nvme2: 4/0/0 default/read/poll queues < nvme nvme0: 4/0/0 default/read/poll queues --- > nvme nvme3: D3 entry latency set to 10 seconds > nvme nvme0: D3 entry latency set to 10 seconds 843,854d849 < nvme0n1: p1 < nvme2n1: p1 < xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4 < xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed < usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.11 < usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 < usb usb3: Product: xHCI Host Controller < usb usb3: Manufacturer: Linux 6.11.0-24-generic xhci-hcd < usb usb3: SerialNumber: 0000:00:14.0 < nvme1n1: p1 < hub 3-0:1.0: USB hub found < hub 3-0:1.0: 12 ports detected 856,860c851,853 < usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.11 < usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 < usb usb4: Product: xHCI Host Controller < usb usb4: Manufacturer: Linux 6.11.0-24-generic xhci-hcd < usb usb4: SerialNumber: 0000:00:14.0 --- > nvme nvme0: 4/0/0 default/read/poll queues > nvme nvme2: D3 entry latency set to 10 seconds > nvme1n1: p1 862,865c855,857 < hub 4-0:1.0: USB hub found < hub 4-0:1.0: 4 ports detected < pps pps0: new PPS source ptp0 < igc 0000:05:00.0 (unnamed net_device) (uninitialized): PHC added --- > nvme nvme2: 4/0/0 default/read/poll queues > nvme0n1: p1 > nvme2n1: p1 867a860 > igc 0000:05:00.0 (unnamed net_device) (uninitialized): PHC added 871d863 < pps pps1: new PPS source ptp1 875d866 < igc 0000:05:00.0 enp5s0: renamed from eth0 877,900c868 < mmc0: Command Queue Engine enabled < mmc0: new HS400 Enhanced strobe MMC card at address 0001 < mmcblk0: mmc0:0001 SCA64G 58.2 GiB < mmcblk0: p1 p2 p3 < mmcblk0boot0: mmc0:0001 SCA64G 4.00 MiB < mmcblk0boot1: mmc0:0001 SCA64G 4.00 MiB < mmcblk0rpmb: mmc0:0001 SCA64G 4.00 MiB, chardev (239:0) < usb 3-1: new high-speed USB device number 2 using xhci_hcd < usb 2-2: new SuperSpeed Plus Gen 2x1 USB device number 2 using xhci_hcd < usb 2-2: New USB device found, idVendor=2109, idProduct=0824, bcdDevice= 1.94 < usb 2-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3 < usb 2-2: Product: USB3.1 Hub < usb 2-2: Manufacturer: VIA Labs, Inc. < usb 2-2: SerialNumber: 000000001 < hub 2-2:1.0: USB hub found < hub 2-2:1.0: 4 ports detected < raid6: avx2x4 gen() 23904 MB/s < raid6: avx2x2 gen() 27161 MB/s < raid6: avx2x1 gen() 21971 MB/s < raid6: using algorithm avx2x2 gen() 27161 MB/s < raid6: .... xor() 15283 MB/s, rmw enabled < raid6: using avx2x2 recovery algorithm < xor: automatically using best checksumming function avx < async_tx: api initialized (async) --- > igc 0000:05:00.0 enp5s0: renamed from eth0 908c876,882 < Btrfs loaded, zoned=yes, fsverity=yes --- > mmc0: Command Queue Engine enabled > mmc0: new HS400 Enhanced strobe MMC card at address 0001 > mmcblk0: mmc0:0001 SCA64G 58.2 GiB > mmcblk0: p1 p2 p3 p4 > mmcblk0boot0: mmc0:0001 SCA64G 4.00 MiB > mmcblk0boot1: mmc0:0001 SCA64G 4.00 MiB > mmcblk0rpmb: mmc0:0001 SCA64G 4.00 MiB, chardev (239:0) 910,913d883 < BTRFS: device label storage devid 2 transid 27246 /dev/nvme1n1p1 (259:5) scanned by btrfs (253) < BTRFS: device label storage devid 4 transid 27246 /dev/nvme2n1p1 (259:2) scanned by btrfs (253) < BTRFS: device label storage devid 3 transid 27246 /dev/nvme3n1p1 (259:7) scanned by btrfs (253) < BTRFS: device label storage devid 1 transid 27246 /dev/nvme0n1p1 (259:3) scanned by btrfs (253) 916c886,902 < EXT4-fs (mmcblk0p3): mounted filesystem 04b08549-62d1-41eb-818d-bf301872b67e ro with ordered data mode. Quota mode: none. --- > raid6: avx2x4 gen() 22214 MB/s > raid6: avx2x2 gen() 26636 MB/s > raid6: avx2x1 gen() 21656 MB/s > raid6: using algorithm avx2x2 gen() 26636 MB/s > raid6: .... xor() 15389 MB/s, rmw enabled > raid6: using avx2x2 recovery algorithm > xor: automatically using best checksumming function avx > async_tx: api initialized (async) > Btrfs loaded, zoned=yes, fsverity=yes > BTRFS: device label storage devid 2 transid 32708 /dev/nvme1n1p1 (259:2) scanned by btrfs (278) > BTRFS: device label storage devid 3 transid 32708 /dev/nvme2n1p1 (259:7) scanned by btrfs (278) > BTRFS: device label storage devid 4 transid 32708 /dev/nvme3n1p1 (259:4) scanned by btrfs (278) > BTRFS: device label storage devid 1 transid 32708 /dev/nvme0n1p1 (259:6) scanned by btrfs (278) > BTRFS: device fsid 057e9267-a9c1-4a1f-96ae-2c00b08e5368 devid 1 transid 7303 /dev/mmcblk0p4 (179:4) scanned by mount (295) > BTRFS info (device mmcblk0p4): first mount of filesystem 057e9267-a9c1-4a1f-96ae-2c00b08e5368 > BTRFS info (device mmcblk0p4): using crc32c (crc32c-x86) checksum algorithm > BTRFS info (device mmcblk0p4): using free-space-tree 918c904 < systemd[1]: systemd 255.4-1ubuntu8.6 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified) --- > systemd[1]: systemd 257.4-1ubuntu3 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +IPE +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +BTF -XKBCOMMON -UTMP +SYSVINIT +LIBARCHIVE) 920a907,913 920a907,913 > systemd[1]: bpf-restrict-fs: BPF LSM hook not enabled in the kernel, BPF LSM not supported. > systemd-sysv-generator[371]: SysV service '/etc/init.d/cpufrequtils' lacks a native systemd unit file, automatically generating a unit file for compatibility. > systemd-sysv-generator[371]: Please update package to include a native systemd unit file. > systemd-sysv-generator[371]: ! This compatibility logic is deprecated, expect removal soon. ! > systemd-sysv-generator[371]: SysV service '/etc/init.d/loadcpufreq' lacks a native systemd unit file, automatically generating a unit file for compatibility. > systemd-sysv-generator[371]: Please update package to include a native systemd unit file. > systemd-sysv-generator[371]: ! This compatibility logic is deprecated, expect removal soon. ! 926a920 > systemd[1]: Expecting device dev-disk-by\x2duuid-20B3\x2d8998.device - /dev/disk/by-uuid/20B3-8998... 928,929c922,924 < systemd[1]: Expecting device dev-disk-by\x2duuid-F557\x2dB88C.device - /dev/disk/by-uuid/F557-B88C... < systemd[1]: Expecting device dev-disk-by\x2duuid-dda5b65e\x2d2cb5\x2d4648\x2d9867\x2d1eaa0e717e2e.device - /dev/disk/by-uuid/dda5b65e-2cb5-4648-9867-1eaa0e717e2e... --- > systemd[1]: Expecting device dev-disk-by\x2duuid-9287ad7a\x2d5311\x2d4eeb\x2d9689\x2d456818547e2b.device - /dev/disk/by-uuid/9287ad7a-5311-4eeb-9689-456818547e2b... > systemd[1]: Expecting device dev-disk-by\x2duuid-937971e3\x2dac4c\x2d458e\x2dbca1\x2dac773c0a461b.device - /dev/disk/by-uuid/937971e3-ac4c-458e-bca1-ac773c0a461b... > systemd[1]: Expecting device sys-subsystem-net-devices-wlo1.device - /sys/subsystem/net/devices/wlo1... 937d931 < systemd[1]: Listening on multipathd.socket - multipathd control socket. 939a934 > systemd[1]: Listening on systemd-creds.socket - Credential Encryption/Decryption. 943c938 < systemd[1]: Listening on systemd-journald.socket - Journal Socket. --- > systemd[1]: Listening on systemd-journald.socket - Journal Sockets. 945c940,941 < systemd[1]: systemd-pcrextend.socket - TPM2 PCR Extension (Varlink) was skipped because of an unmet condition check (ConditionSecurity=measured-uki). --- > systemd[1]: systemd-pcrextend.socket - TPM PCR Measurements was skipped because of an unmet condition check (ConditionSecurity=measured-uki). > systemd[1]: systemd-pcrlock.socket - Make TPM PCR Policy was skipped because of an unmet condition check (ConditionSecurity=measured-uki). 950a947 > systemd[1]: Mounting run-lock.mount - Legacy Locks Directory /run/lock... 959c956 < systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod... --- > systemd[1]: Starting modprobe@dm_multipath.service - Load Kernel Module dm_multipath... 963d959 < systemd[1]: Starting modprobe@loop.service - Load Kernel Module loop... 967,968c963 < pstore: Using crash dump compression: deflate < pstore: Registered efi_pstore as persistent store backend --- > systemd[1]: systemd-hibernate-clear.service - Clear Stale Hibernate Storage Info was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67). 970,972c965 < Key type psk registered < systemd[1]: systemd-pcrmachine.service - TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki). < systemd-journald[351]: Collecting audit messages is disabled. --- > systemd[1]: systemd-pcrmachine.service - TPM PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki). 974,979c967,968 < RPC: Registered named UNIX socket transport module. < RPC: Registered udp transport module. < RPC: Registered tcp transport module. < RPC: Registered tcp-with-tls transport module. < RPC: Registered tcp NFSv4.1 backchannel transport module. < systemd[1]: systemd-tpm2-setup-early.service - TPM2 SRK Setup (Early) was skipped because of an unmet condition check (ConditionSecurity=measured-uki). --- > systemd[1]: systemd-tpm2-setup-early.service - Early TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki). > systemd[1]: Starting systemd-udev-load-credentials.service - Load udev Rules from Credentials... 982a972 > systemd[1]: Mounted run-lock.mount - Legacy Locks Directory /run/lock. 988,989d977 < systemd[1]: modprobe@dm_mod.service: Deactivated successfully. < systemd[1]: Finished modprobe@dm_mod.service - Load Kernel Module dm_mod. 992,993d979 < systemd[1]: modprobe@efi_pstore.service: Deactivated successfully. < systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore. 996,999d981 < systemd[1]: modprobe@loop.service: Deactivated successfully. < systemd[1]: Finished modprobe@loop.service - Load Kernel Module loop. < systemd[1]: modprobe@nvme_fabrics.service: Deactivated successfully. < systemd[1]: Finished modprobe@nvme_fabrics.service - Load Kernel Module nvme_fabrics. 1002c984,987 < systemd[1]: systemd-repart.service - Repartition Root Disk was skipped because no trigger condition checks were met. --- > pstore: Using crash dump compression: deflate > BTRFS info (device mmcblk0p4 state M): enabling auto defrag > BTRFS info (device mmcblk0p4 state M): use zlib compression, level 3 > systemd-journald[394]: Collecting audit messages is disabled. 1003a989,1024 > Key type psk registered > RPC: Registered named UNIX socket transport module. > RPC: Registered udp transport module. > RPC: Registered tcp transport module. > RPC: Registered tcp-with-tls transport module. > RPC: Registered tcp NFSv4.1 backchannel transport module. > systemd[1]: modprobe@dm_multipath.service: Deactivated successfully. > systemd[1]: Finished modprobe@dm_multipath.service - Load Kernel Module dm_multipath. > systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems. > systemd[1]: Finished systemd-udev-load-credentials.service - Load udev Rules from Credentials. > systemd[1]: Mounted sys-fs-fuse-connections.mount - FUSE Control File System. > systemd[1]: Mounted sys-kernel-config.mount - Kernel Configuration File System. > systemd[1]: Starting multipathd.service - Device-Mapper Multipath Device Controller... > pstore: Registered efi_pstore as persistent store backend > systemd[1]: systemd-hwdb-update.service - Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc). > systemd[1]: Starting systemd-random-seed.service - Load/Save OS Random Seed... > systemd[1]: systemd-tpm2-setup.service - TPM SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki). > systemd[1]: modprobe@efi_pstore.service: Deactivated successfully. > systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore. > systemd[1]: modprobe@nvme_fabrics.service: Deactivated successfully. > systemd[1]: Finished modprobe@nvme_fabrics.service - Load Kernel Module nvme_fabrics. > systemd[1]: Finished systemd-modules-load.service - Load Kernel Modules. > systemd[1]: Finished systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully. > systemd[1]: systemd-pstore.service - Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore). > systemd[1]: Starting systemd-sysctl.service - Apply Kernel Variables... > systemd[1]: systemd-sysusers.service - Create System Users was skipped because no trigger condition checks were met. > systemd[1]: Starting systemd-timesyncd.service - Network Time Synchronization... > systemd[1]: Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev... > systemd[1]: Finished keyboard-setup.service - Set the console keyboard layout. > systemd[1]: Mounted proc-fs-nfsd.mount - NFSD configuration filesystem. > systemd[1]: Started multipathd.service - Device-Mapper Multipath Device Controller. > systemd[1]: Finished systemd-random-seed.service - Load/Save OS Random Seed. > systemd[1]: Finished systemd-sysctl.service - Apply Kernel Variables. > systemd[1]: Finished systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev. > systemd[1]: Starting systemd-resolved.service - Network Name Resolution... > systemd[1]: Starting systemd-udevd.service - Rule-based Manager for Device Events and Files... 1005,1008c1026,1030 < EXT4-fs (mmcblk0p3): re-mounted 04b08549-62d1-41eb-818d-bf301872b67e r/w. Quota mode: none. < Adding 4194300k swap on /swap.img. Priority:-2 extents:35 across:53739520k SS < systemd-journald[351]: Received client request to flush runtime journal. < systemd-journald[351]: File /var/log/journal/1ed982c1437f410db55ba5ec01e84adf/system.journal corrupted or uncleanly shut down, renaming and replacing. --- > systemd-journald[394]: Received client request to flush runtime journal. > input: Intel HID events as /devices/platform/INTC1070:00/input/input3 > intel-hid INTC1070:00: failed to enable HID power button > Adding 6291452k swap on /dev/mmcblk0p3. Priority:-2 extents:1 across:6291452k SS > intel_pmc_core INT33A1:00: initialized 1010,1011c1032,1036 < caller igen6_probe+0x1c9/0x610 [igen6_edac] mapping multiple BARs < EDAC MC0: Giving out device to module igen6_edac controller Intel_client_SoC MC#0: DEV 0000:00:00.0 (INTERRUPT) --- > caller igen6_register_mci+0x59/0x250 [igen6_edac] mapping multiple BARs > BTRFS info (device nvme0n1p1): first mount of filesystem 47679023-51c8-4242-9117-f4b6e76dd3b8 > BTRFS info (device nvme0n1p1): using crc32c (crc32c-x86) checksum algorithm > BTRFS info (device nvme0n1p1): using free-space-tree > EDAC MC0: Giving out device to module igen6_edac controller Intel_client_SoC MC#0: DEV 0000:00:00.0 (POLLED) 1015d1039 < intel_pmc_core INT33A1:00: initialized 1018a1043,1050 > Bluetooth: Core ver 2.22 > NET: Registered PF_BLUETOOTH protocol family > Bluetooth: HCI device and connection manager initialized > Bluetooth: HCI socket layer initialized > Bluetooth: L2CAP socket layer initialized > Bluetooth: SCO socket layer initialized > mei_me 0000:00:16.0: enabling device (0000 -> 0002) > EXT4-fs (mmcblk0p2): mounted filesystem 9287ad7a-5311-4eeb-9689-456818547e2b r/w with ordered data mode. Quota mode: none. 1022,1027d1053 < input: Intel HID events as /devices/platform/INTC1070:00/input/input3 < intel-hid INTC1070:00: failed to enable HID power button < mei_me 0000:00:16.0: enabling device (0000 -> 0002) < RAPL PMU: API unit is 2^-32 Joules, 2 fixed counters, 655360 ms ovfl timer < RAPL PMU: hw unit of domain pp0-core 2^-14 Joules < RAPL PMU: hw unit of domain package 2^-14 Joules 1034,1044c1060,1084 < iwlwifi 0000:00:14.3: loaded firmware version 89.202a2f7b.0 so-a0-hr-b0-89.ucode op_mode iwlmvm < BTRFS info (device nvme0n1p1): first mount of filesystem 47679023-51c8-4242-9117-f4b6e76dd3b8 < BTRFS info (device nvme0n1p1): using crc32c (crc32c-intel) checksum algorithm < BTRFS info (device nvme0n1p1): using free-space-tree < Bluetooth: Core ver 2.22 < NET: Registered PF_BLUETOOTH protocol family < Bluetooth: HCI device and connection manager initialized < Bluetooth: HCI socket layer initialized < Bluetooth: L2CAP socket layer initialized < Bluetooth: SCO socket layer initialized < i915 0000:00:02.0: [drm] Found ALDERLAKE_P/ADL-N (device ID 46d4) display version 13.00 stepping D0 --- > iwlwifi 0000:00:14.3: loaded firmware version 89.4d42c933.0 so-a0-hr-b0-89.ucode op_mode iwlmvm > RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 655360 ms ovfl timer > RAPL PMU: hw unit of domain pp0-core 2^-14 Joules > RAPL PMU: hw unit of domain package 2^-14 Joules > RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules > usbcore: registered new interface driver btusb > Bluetooth: hci0: Device revision is 2 > Bluetooth: hci0: Secure boot is enabled > Bluetooth: hci0: OTP lock is enabled > Bluetooth: hci0: API lock is enabled > Bluetooth: hci0: Debug lock is disabled > Bluetooth: hci0: Minimum firmware build 1 week 10 2014 > Bluetooth: hci0: Bootloader timestamp 2019.40 buildtype 1 build 38 > Bluetooth: hci0: No support for _PRR ACPI method > Bluetooth: hci0: Found device firmware: intel/ibt-0040-1050.sfi > Bluetooth: hci0: Boot Address: 0x100800 > Bluetooth: hci0: Firmware Version: 200-48.24 > iwlwifi 0000:00:14.3: WFPM_UMAC_PD_NOTIFICATION: 0x20 > iwlwifi 0000:00:14.3: RFIm is deactivated, reason = 4 > iwlwifi 0000:00:14.3: WFPM_LMAC2_PD_NOTIFICATION: 0x1f > iwlwifi 0000:00:14.3: WFPM_AUTH_KEY_0: 0x90 > iwlwifi 0000:00:14.3: CNVI_SCU_SEQ_DATA_DW9: 0x10 > iwlwifi 0000:00:14.3: Detected RF HR1 B3, rfid=0x10c000 > snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002) > i915 0000:00:02.0: [drm] Found alderlake_p/alderlake_n (device ID 46d4) integrated display version 13.00 stepping D0 1046,1048d1085 < Console: switching to colour dummy device 80x25 < Creating 1 MTD partitions on "0000:00:1f.5": < 0x000000000000-0x000001000000 : "BIOS" 1053,1054c1090,1093 < intel_tcc_cooling: TCC Offset locked < snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002) --- > spi-nor spi0.0: supply vcc not found, using dummy regulator > Creating 1 MTD partitions on "0000:00:1f.5": > 0x000000000000-0x000001000000 : "BIOS" > iwlwifi 0000:00:14.3: base HW address: 28:a4:4a:5c:1e:1c 1059a1099 > audit: type=1400 audit(1745826562.156:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name=4D6F6E676F444220436F6D70617373 pid=772 comm="apparmor_parser" 1060a1101,1105 > audit: type=1400 audit(1745826562.158:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="Discord" pid=771 comm="apparmor_parser" > audit: type=1400 audit(1745826562.159:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="QtWebEngineProcess" pid=773 comm="apparmor_parser" > audit: type=1400 audit(1745826562.159:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="1password" pid=770 comm="apparmor_parser" > audit: type=1400 audit(1745826562.164:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="balena-etcher" pid=784 comm="apparmor_parser" > intel_tcc_cooling: TCC Offset locked 1062c1107,1113 < [drm] Initialized i915 1.6.0 for 0000:00:02.0 on minor 1 --- > audit: type=1400 audit(1745826562.169:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="alsamixer" pid=781 comm="apparmor_parser" > audit: type=1400 audit(1745826562.170:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="babeld" pid=783 comm="apparmor_parser" > audit: type=1400 audit(1745826562.177:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="bfdd" pid=786 comm="apparmor_parser" > audit: type=1400 audit(1745826562.179:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="Xorg" pid=780 comm="apparmor_parser" > audit: type=1400 audit(1745826562.182:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="brave" pid=793 comm="apparmor_parser" > iwlwifi 0000:00:14.3 wlo1: renamed from wlan0 > [drm] Initialized i915 1.6.0 for 0000:00:02.0 on minor 0 1065,1075d1115 < usbcore: registered new interface driver btusb < Bluetooth: hci0: Device revision is 2 < Bluetooth: hci0: Secure boot is enabled < Bluetooth: hci0: OTP lock is enabled < Bluetooth: hci0: API lock is enabled < Bluetooth: hci0: Debug lock is disabled < Bluetooth: hci0: Minimum firmware build 1 week 10 2014 < Bluetooth: hci0: Bootloader timestamp 2019.40 buildtype 1 build 38 < Bluetooth: hci0: No support for _PRR ACPI method < fbcon: i915drmfb (fb0) is primary device < snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915]) 1080,1091c1120,1122 < Bluetooth: hci0: Found device firmware: intel/ibt-0040-1050.sfi < Bluetooth: hci0: Boot Address: 0x100800 < Bluetooth: hci0: Firmware Version: 60-48.23 < iwlwifi 0000:00:14.3: WFPM_UMAC_PD_NOTIFICATION: 0x20 < iwlwifi 0000:00:14.3: WFPM_LMAC2_PD_NOTIFICATION: 0x1f < iwlwifi 0000:00:14.3: WFPM_AUTH_KEY_0: 0x90 < iwlwifi 0000:00:14.3: CNVI_SCU_SEQ_DATA_DW9: 0x10 < iwlwifi 0000:00:14.3: Detected RF HR1 B3, rfid=0x10c000 < iwlwifi 0000:00:14.3: RFIm is deactivated, reason = 4 < Console: switching to colour frame buffer device 240x67 < iwlwifi 0000:00:14.3: base HW address: 28:a4:4a:5c:1e:1c < i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device --- > i915 0000:00:02.0: [drm] Cannot find any crtc or sizes > snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915]) > i915 0000:00:02.0: [drm] Cannot find any crtc or sizes 1098d1128 < iwlwifi 0000:00:14.3 wlo1: renamed from wlan0 1105,1115c1135,1143 < EXT4-fs (mmcblk0p2): mounted filesystem dda5b65e-2cb5-4648-9867-1eaa0e717e2e r/w with ordered data mode. Quota mode: none. < audit: type=1400 audit(1745582855.851:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="1password" pid=718 comm="apparmor_parser" < audit: type=1400 audit(1745582855.851:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="Discord" pid=719 comm="apparmor_parser" < audit: type=1400 audit(1745582855.851:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name=4D6F6E676F444220436F6D70617373 pid=720 comm="apparmor_parser" < audit: type=1400 audit(1745582855.851:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="QtWebEngineProcess" pid=721 comm="apparmor_parser" < audit: type=1400 audit(1745582855.856:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="balena-etcher" pid=722 comm="apparmor_parser" < audit: type=1400 audit(1745582855.856:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="brave" pid=723 comm="apparmor_parser" < audit: type=1400 audit(1745582855.868:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="buildah" pid=724 comm="apparmor_parser" < audit: type=1400 audit(1745582855.869:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="cam" pid=726 comm="apparmor_parser" < audit: type=1400 audit(1745582855.870:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="busybox" pid=725 comm="apparmor_parser" < audit: type=1400 audit(1745582855.871:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="ch-checkns" pid=727 comm="apparmor_parser" --- > EDAC igen6 MC0: HANDLING IBECC MEMORY ERROR > EDAC igen6 MC0: ADDR 0x7fffffffe0 > iwlwifi 0000:00:14.3: WFPM_UMAC_PD_NOTIFICATION: 0x20 > iwlwifi 0000:00:14.3: RFIm is deactivated, reason = 4 > iwlwifi 0000:00:14.3: WFPM_LMAC2_PD_NOTIFICATION: 0x1f > iwlwifi 0000:00:14.3: WFPM_AUTH_KEY_0: 0x90 > iwlwifi 0000:00:14.3: CNVI_SCU_SEQ_DATA_DW9: 0x10 > iwlwifi 0000:00:14.3: Registered PHC clock: iwlwifi-PTP, with index: 2 > nvme nvme0: using unchecked data buffer 1117c1145 < Bluetooth: hci0: Firmware loaded in 1589044 usecs --- > Bluetooth: hci0: Firmware loaded in 1395341 usecs 1119c1147 < Bluetooth: hci0: Device booted in 15609 usecs --- > Bluetooth: hci0: Device booted in 14609 usecs 1122,1123c1150,1151 < Bluetooth: hci0: Firmware timestamp 2023.48 buildtype 1 build 75324 < Bluetooth: hci0: Firmware SHA1: 0x23bac558 --- > Bluetooth: hci0: Firmware timestamp 2024.48 buildtype 1 build 81864 > Bluetooth: hci0: Firmware SHA1: 0xc115e35a 1127,1128d1154 < igc 0000:06:00.0 enp6s0: NIC Link is Up 2500 Mbps Full Duplex, Flow Control: RX/TX < NET: Registered PF_QIPCRTR protocol family 1130,1132c1156,1174 < kauditd_printk_skb: 110 callbacks suppressed < audit: type=1400 audit(1745582861.699:122): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/snapd/snap-confine" pid=1024 comm="apparmor_parser" < audit: type=1400 audit(1745582861.708:123): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=1024 comm="apparmor_parser" --- > NET: Registered PF_QIPCRTR protocol family > EDAC igen6 MC0: HANDLING IBECC MEMORY ERROR > EDAC igen6 MC0: ADDR 0x7fffffffe0 > EDAC igen6 MC0: HANDLING IBECC MEMORY ERROR > EDAC igen6 MC0: ADDR 0x7fffffffe0 > EDAC igen6 MC0: HANDLING IBECC MEMORY ERROR > EDAC igen6 MC0: ADDR 0x7fffffffe0 > igc 0000:06:00.0 enp6s0: NIC Link is Up 2500 Mbps Full Duplex, Flow Control: RX/TX > wlo1: authenticate with 3c:7c:3f:b7:bb:54 (local address=28:a4:4a:5c:1e:1c) > wlo1: send auth to 3c:7c:3f:b7:bb:54 (try 1/3) > wlo1: authenticated > wlo1: associate with 3c:7c:3f:b7:bb:54 (try 1/3) > wlo1: RX AssocResp from 3c:7c:3f:b7:bb:54 (capab=0x1011 status=0 aid=30) > wlo1: associated > wlo1: Limiting TX power to 23 (23 - 0) dBm as advertised by 3c:7c:3f:b7:bb:54 > EDAC igen6 MC0: HANDLING IBECC MEMORY ERROR > EDAC igen6 MC0: ADDR 0x7fffffffe0 > EDAC igen6 MC0: HANDLING IBECC MEMORY ERROR > EDAC igen6 MC0: ADDR 0x7fffffffe0 1135,1136c1177,1178 < NFSD: all clients done reclaiming, ending NFSv4 grace period (net f0000000) < audit: type=1400 audit(1745582865.504:124): apparmor="STATUS" operation="profile_load" profile="unconfined" name="docker-default" pid=1164 comm="apparmor_parser" --- > kauditd_printk_skb: 165 callbacks suppressed > audit: type=1400 audit(1745826567.935:177): apparmor="STATUS" operation="profile_load" profile="unconfined" name="docker-default" pid=1330 comm="apparmor_parser" 1138a1181,1182 > EDAC igen6 MC0: HANDLING IBECC MEMORY ERROR > EDAC igen6 MC0: ADDR 0x7fffffffe0 > EDAC igen6 MC0: HANDLING IBECC MEMORY ERROR > EDAC igen6 MC0: ADDR 0x7fffffffe0 > EDAC igen6 MC0: HANDLING IBECC MEMORY ERROR > EDAC igen6 MC0: ADDR 0x7fffffffe0 > EDAC igen6 MC0: HANDLING IBECC MEMORY ERROR > EDAC igen6 MC0: ADDR 0x7fffffffe0 > EDAC igen6 MC0: HANDLING IBECC MEMORY ERROR