You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 13 Next »

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 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
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


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 SetingsSingle core


Multi core


Vulkan


OpenCL

llvmpipe

15/15powersave1288327838994279
15/15
balance_performance
1289329239114293330
15/15performance1291319640153647335



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)


  • No labels