Files
bench_go/debug.txt
2026-01-11 23:40:18 +01:00

18019 lines
1.1 MiB
Executable File
Raw Permalink Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
[DEBUG] Contenu de /home/gilles/Documents/vscode/bis/bench_go/config.yaml :
# bench-client config.yaml
# Objectif: décrire précisément
# - les outils à utiliser (et exigences d'installation)
# - les informations à collecter
# - les benchmarks à exécuter
# - les paramètres (timeouts, limites, endpoints, debug)
#
# Le binaire (Go/Rust) charge ce fichier depuis HTTP(S), valide les bornes, applique des defaults sûrs,
# et peut fallback sur une config locale si indisponible.
config_version: 1
profile: default
backend:
# URL finale du POST (le programme peut aussi accepter server_base_url + path)
url: "http://10.0.0.50:8007/api/benchmark"
# Auth: idéalement injecté par variable d'env sur le client; éviter de mettre le token dans la config distante.
auth:
mode: bearer_env
env_var: "test_hardware_perf"
http:
timeout_s: 15
retries: 2
retry_backoff_s: 2
tls:
verify: true
remote_config:
# Options de cache/ETag si le binaire gère le rafraîchissement
cache_path: "/var/cache/bench-client/config.yaml"
use_etag: true
refresh_max_age_s: 86400
runtime:
# Timeouts globaux de sécurité
max_total_runtime_s: 480
command_timeout_s: 30
command_timeout_overrides:
dmidecode_s: 20
smartctl_s: 10
lsblk_s: 10
sysbench_cpu_s: 120
sysbench_mem_s: 60
fio_s: 120
iperf3_s: 20
temp_dir: "/tmp"
locale: "C"
path_prepend:
- "/usr/sbin"
- "/sbin"
logging:
level: info # trace|debug|info|warn|error
progress: true # affichage étapes (1/N) + items
show_command_lines: false
capture_raw_output: true # remonte dans raw_info (attention taille)
raw_output_max_kb: 5120
save_payload_to_tmp: true
payload_tmp_dir: "/tmp"
payload_filename_prefix: "bench_payload_"
interactive_pause_on_debug: true
payload:
dir: "."
prefix: "bench_payload_"
always_save: true
device_identity:
# device_identifier envoyé au backend
prefer:
- hostname
- machine_id
hostname_command: "hostname"
machine_id_path: "/etc/machine-id"
dependencies:
# Liste des programmes externes (installés par le script shell)
# Le binaire doit pouvoir:
# - détecter présence/version (optionnel)
# - marquer chaque "feature" comme disponible ou non
required_base:
- name: "curl"
purpose: "Téléchargements/diagnostics (souvent côté script)"
- name: "jq"
purpose: "Optionnel: debug/validation (souvent côté script, pas nécessaire au binaire)"
- name: "lscpu"
purpose: "Infos CPU"
- name: "free"
purpose: "Infos mémoire"
- name: "lsblk"
purpose: "Infos stockage/partitions"
- name: "ip"
purpose: "Interfaces réseau, adresses IP"
- name: "bc"
purpose: "Optionnel: calculs (si pas fait en code)"
- name: "dmidecode"
purpose: "Infos BIOS/carte mère/RAM/DMI"
requires_root: true
- name: "smartctl"
package: "smartmontools"
purpose: "Infos disques SMART"
requires_root: true
- name: "ethtool"
purpose: "Vitesse réseau, Wake-on-LAN, driver"
requires_root: true
- name: "lspci"
package: "pciutils"
purpose: "Liste périphériques PCI (GPU/Audio/etc.)"
- name: "lsusb"
package: "usbutils"
purpose: "Liste périphériques USB"
- name: "aplay"
package: "alsa-utils"
purpose: "Inventaire audio ALSA"
- name: "arecord"
package: "alsa-utils"
purpose: "Inventaire capture ALSA"
- name: "pactl"
package: "pulseaudio-utils"
purpose: "Infos audio PulseAudio/PipeWire (si dispo)"
- name: "iw"
package: "iw"
purpose: "SSID + bitrate Wi-Fi"
- name: "loginctl"
package: "systemd"
purpose: "Type de session (x11/wayland/tty)"
- name: "xrandr"
package: "x11-xserver-utils"
purpose: "Résolution écran (X11)"
- name: "xdpyinfo"
package: "x11-utils"
purpose: "Résolution écran (fallback X11)"
- name: "swaymsg"
package: "sway"
purpose: "Résolution écran (Wayland/Sway)"
- name: "nvidia-smi"
package: "nvidia-utils"
purpose: "Infos GPU NVIDIA (si présent)"
- name: "systemd-detect-virt"
package: "systemd"
purpose: "Détection virtualisation/proxmox"
- name: "pveversion"
package: "pve-manager"
purpose: "Détection hôte Proxmox (si présent)"
benchmark_tools:
- name: "sysbench"
purpose: "Bench CPU et mémoire"
- name: "fio"
purpose: "Bench disque"
- name: "iperf3"
purpose: "Bench réseau"
- name: "ping"
package: "iputils-ping"
purpose: "Vérifier accessibilité iperf server"
- name: "nc"
package: "netcat-openbsd"
purpose: "Tester port 5201 iperf3"
collection:
# Liste des infos à récupérer, structurées comme dans ton script.
system:
enabled: true
items:
- hostname
- os_id
- os_version
- kernel_version
- architecture
- session_type # XDG_SESSION_TYPE / loginctl / DISPLAY / WAYLAND_DISPLAY
- screen_resolution # xrandr/xdpyinfo/swaymsg
- last_boot_time # who -b
- uptime_seconds # /proc/uptime
- battery_percentage # /sys/class/power_supply/BAT*/capacity
- battery_status # /sys/class/power_supply/BAT*/status
- battery_health # /sys/class/power_supply/BAT*/health ou uevent
- virtualization # systemd-detect-virt + proxmox hints
virtualization_detection:
enabled: true
proxmox:
detect_host_by:
- pveversion
- "/etc/pve"
detect_guest_by:
- systemd_detect_virt
- qemu_guest_agent
- dmidecode_manufacturer_product_matches: ["qemu", "proxmox"]
capture:
- is_proxmox_host
- is_proxmox_guest
- proxmox_version
- virtualization_type
cpu:
enabled: true
source:
primary: lscpu
supplement_dmidecode: true
items:
- vendor
- model
- cores_physical # cores_per_socket * sockets
- threads # nproc
- base_freq_ghz # lscpu CPU MHz -> GHz
- max_freq_ghz # lscpu CPU max MHz -> GHz
- cache_l1_kb
- cache_l2_kb
- cache_l3_kb
- flags # CPU flags list
- microarchitecture # depuis dmidecode type 4 (Family) si manquant
raw_capture:
- lscpu_output
ram:
enabled: true
sources:
- free
- dmidecode
items:
- total_mb
- used_mb
- free_mb
- shared_mb
- slots_total # dmidecode -t 16
- slots_used # dmidecode -t 17
- max_capacity_mb # dmidecode -t 16 Maximum Capacity
- ecc # dmidecode -t memory Error Correction Type
- layout # par slot: locator, size, type, speed, configured_speed, form_factor, type_detail, rank, manufacturer, part_number
raw_capture:
- dmidecode_full
gpu:
enabled: true
sources:
- lspci
- nvidia_smi_optional
items:
- vendor # NVIDIA/AMD/Intel/Unknown
- model # lspci vga/3d ou nvidia-smi name
- memory_dedicated_mb # nvidia-smi (si dispo)
- driver_version # nvidia-smi (si dispo)
motherboard_bios:
enabled: true
source: dmidecode
items:
- baseboard_manufacturer
- baseboard_product_name
- bios_vendor
- bios_version
- bios_release_date
pci_devices:
enabled: true
source: lspci
items:
- slot
- class
- vendor
- device
usb_devices:
enabled: true
source: lsusb
items:
- bus
- device
- vendor_id
- product_id
- name
audio:
enabled: true
sources:
- lspci
- alsa
- pactl_optional
items:
hardware:
- pci_audio_devices # lspci audio
- alsa_playback # aplay -l
- alsa_capture # arecord -l
- pcm_devices # aplay -L
software:
- backend # pipewire/pulseaudio/alsa
- server_name
- server_version
- default_sink
- default_source
- sinks
- sources
storage:
enabled: true
sources:
- lsblk
- smartctl
devices:
enumerate_by: "lsblk_disks" # lsblk -d -n -o NAME,TYPE
include_removable: false
items:
- device # /dev/sda
- model # smartctl -i
- serial # smartctl -i
- size # lsblk
- type # rota -> ssd/hdd
- interface # tran
- temperature_c # smartctl -A
- smart_health # smartctl -H
partitions:
enabled: true
source: lsblk_json
items:
- name
- mount_point
- fs_type
- total_gb
- used_gb
- free_gb
raw_capture:
- lsblk_output
network_shares:
enabled: true
source: "/proc/mounts"
detect_fs_types:
- nfs
- nfs4
- cifs
- smbfs
- fuse.cifs
- fuse.smbfs
- afp
- afpfs
- fuse.afpfs
- sshfs
- fuse.sshfs
- ftpfs
- curlftpfs
- fuse.ftpfs
- davfs
- davfs2
- fuse.webdavfs
items:
- protocol
- source
- mount_point
- fs_type
- options
- total_gb
- used_gb
- free_gb
network:
enabled: true
sources:
- ip
- ethtool
- iw_optional
interface_filter:
# reprise logique script: UP|UNKNOWN sauf interfaces virtuelles connues
include_states: ["UP", "UNKNOWN"]
exclude_name_prefixes: ["lo", "docker", "br-", "veth", "tap", "fw"]
items:
- name
- type # bridge|ethernet|wifi|unknown
- mac
- ip_address
- speed_mbps # ethtool speed ou iw tx bitrate
- driver # ethtool -i ou /sys/.../driver
- ssid # iw dev link
- wake_on_lan # ethtool Wake-on
raw_info:
enabled: true
include:
- lscpu
- lsblk
- dmidecode
max_size_kb: 5120
benchmarks:
enabled: true
# Pondérations identiques à ton script (si résultat dispo)
weights:
cpu: 0.40
memory: 0.20
disk: 0.20
network: 0.10
gpu: 0.10
cpu_sysbench:
enabled: true
tool: sysbench
params:
cpu_max_prime: 20000
single_thread: 1
multi_threads: "all" # all -> nproc
outputs:
- events_per_sec_single
- events_per_sec_multi
- duration_s
- score_single
- score_multi
- score_global
memory_sysbench:
enabled: true
tool: sysbench
params:
total_size: "1G"
outputs:
- throughput_mib_s
- score
disk_fio:
enabled: true
tool: fio
safety:
# Empêcher un bench destructif ou trop long
max_runtime_s: 60
max_size: "1G"
direct: 1
params:
name: "bench"
ioengine: "libaio"
rw: "randrw"
bs: "4k"
size: "500M"
numjobs: 1
runtime_s: 30
time_based: true
output_format: "json"
outputs:
- read_mb_s
- write_mb_s
- iops_read
- iops_write
- latency_ms
- score
network_iperf3:
enabled: true
tool: iperf3
server: "10.0.0.50"
port: 5201
prechecks:
ping:
enabled: true
count: 1
timeout_s: 1
port_check:
enabled: true
tool: nc
timeout_s: 2
params:
duration_s: 10
bidir: true
json: true
outputs:
- upload_mbps
- download_mbps
- ping_ms
- score
# placeholders (comme ton script)
- jitter_ms
- packet_loss_percent
gpu:
enabled: false
note: "GPU bench non implémenté dans le script d'origine (placeholder)."
payload_mapping:
# Le binaire peut mapper ses structures internes vers le schéma backend actuel.
# Utile si ton backend attend des champs précis.
device_identifier: "system.hostname"
bench_script_version_field: "bench_client_version"
include_sections:
- hardware
- results
- raw_info
limits:
# Bornes générales de sécurité (validation côté client)
max_payload_kb: 1024
max_raw_info_kb: 5120
max_fio_runtime_s: 60
max_fio_size_bytes: 1073741824 # 1 GiB
max_sysbench_cpu_prime: 50000
max_iperf_duration_s: 30
features:
# Permet d'activer/désactiver rapidement des blocs selon machines
enable_screen_resolution_detection: true
enable_battery_detection: true
enable_network_share_detection: true
enable_audio_detection: true
enable_proxmox_detection: true
[DEBUG] Config chargée : {ConfigVersion:1 Backend:{URL:http://10.0.0.50:8007/api/benchmark Auth:{Mode:bearer_env EnvVar:test_hardware_perf} HTTP:{TimeoutS:15 Retries:2 RetryBackoffS:2 TLSVerify:false}} Runtime:{MaxTotalRuntime:480 CommandTimeout:30 TempDir:/tmp Locale:C PathPrepend:[/usr/sbin /sbin]} Logging:{Level:info Progress:true ShowCommandLines:false CaptureRawOutput:true RawOutputMaxKB:5120 SavePayloadToTmp:true PayloadTmpDir:/tmp PayloadFilenamePrefix:bench_payload_ InteractiveDebugPause:true} Payload:{Dir:. Prefix:bench_payload_ Always:true} Benchmarks:{Enabled:true Weights:map[cpu:0.4 disk:0.2 gpu:0.1 memory:0.2 network:0.1] CPU:{Enabled:true Tool:sysbench Server: Port:0 Params:map[cpu_max_prime:20000 multi_threads:all single_thread:1] Safety:map[]} Memory:{Enabled:true Tool:sysbench Server: Port:0 Params:map[total_size:1G] Safety:map[]} Disk:{Enabled:true Tool:fio Server: Port:0 Params:map[bs:4k ioengine:libaio name:bench numjobs:1 output_format:json runtime_s:30 rw:randrw size:500M time_based:true] Safety:map[direct:1 max_runtime_s:60 max_size:1G]} Network:{Enabled:true Tool:iperf3 Server:10.0.0.50 Port:5201 Params:map[bidir:true duration_s:10 json:true] Safety:map[]}} Collection:{System:{Enabled:true} CPU:{Enabled:true} RAM:{Enabled:true} Storage:{Enabled:true} Network:{Enabled:true} GPU:{Enabled:true} Audio:{Enabled:true} PCI:{Enabled:true} USB:{Enabled:true}} RawInfo:{Enabled:true Include:[lscpu lsblk dmidecode] MaxSizeKB:5120}}
[DEBUG] Configuration complète : {ConfigVersion:1 Backend:{URL:http://10.0.0.50:8007/api/benchmark Auth:{Mode:bearer_env EnvVar:test_hardware_perf} HTTP:{TimeoutS:15 Retries:2 RetryBackoffS:2 TLSVerify:false}} Runtime:{MaxTotalRuntime:480 CommandTimeout:30 TempDir:/tmp Locale:C PathPrepend:[/usr/sbin /sbin]} Logging:{Level:info Progress:true ShowCommandLines:false CaptureRawOutput:true RawOutputMaxKB:5120 SavePayloadToTmp:true PayloadTmpDir:/tmp PayloadFilenamePrefix:bench_payload_ InteractiveDebugPause:true} Payload:{Dir:. Prefix:bench_payload_ Always:true} Benchmarks:{Enabled:true Weights:map[cpu:0.4 disk:0.2 gpu:0.1 memory:0.2 network:0.1] CPU:{Enabled:true Tool:sysbench Server: Port:0 Params:map[cpu_max_prime:20000 multi_threads:all single_thread:1] Safety:map[]} Memory:{Enabled:true Tool:sysbench Server: Port:0 Params:map[total_size:1G] Safety:map[]} Disk:{Enabled:true Tool:fio Server: Port:0 Params:map[bs:4k ioengine:libaio name:bench numjobs:1 output_format:json runtime_s:30 rw:randrw size:500M time_based:true] Safety:map[direct:1 max_runtime_s:60 max_size:1G]} Network:{Enabled:true Tool:iperf3 Server:10.0.0.50 Port:5201 Params:map[bidir:true duration_s:10 json:true] Safety:map[]}} Collection:{System:{Enabled:true} CPU:{Enabled:true} RAM:{Enabled:true} Storage:{Enabled:true} Network:{Enabled:true} GPU:{Enabled:true} Audio:{Enabled:true} PCI:{Enabled:true} USB:{Enabled:true}} RawInfo:{Enabled:true Include:[lscpu lsblk dmidecode] MaxSizeKB:5120}}
[DEBUG] [2/6] Début collecte CPU
[DEBUG] [2/6] Détails CPU: {Vendor:AuthenticAMD Model:AMD Ryzen 9 5900X 12-Core Processor Cores:1 Threads:24 BaseFreqGHz:4.951 MaxFreqGHz:4.951 CacheL1KB:0 CacheL2KB:0 CacheL3KB:512 Flags:[fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local user_shstk clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm debug_swap] Microarchitecture:25 TDPW:<nil>}
[DEBUG] [2/6] Début collecte RAM
[DEBUG] SMBIOS détecté : SMBIOS 3.3.0 (54 tables)
[DEBUG] Module SMBIOS détecté : DIMM 0 {Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 }
[DEBUG] Module SMBIOS détecté : DIMM 1 {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE}
[DEBUG] Module SMBIOS détecté : DIMM 0 {Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 }
[DEBUG] Module SMBIOS détecté : DIMM 1 {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE}
[DEBUG] Mémoire SMBIOS : slots_total=10 slots_used=4 ecc=false max=0MB
[DEBUG] [2/6] Détails RAM: {TotalMB:48096 UsedMB:16274 FreeMB:31822 SharedMB:974 SlotsTotal:10 SlotsUsed:4 MaxCapacityMB:48096 ECC:false Layout:[{Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 } {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE} {Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 } {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE}]}
[DEBUG] [2/6] Début collecte GPU
[DEBUG] Exec: lspci []
[DEBUG] Exec: nvidia-smi [--query-gpu=name,driver_version,memory.total --format=csv,noheader,nounits]
[DEBUG] [2/6] Détails GPU: {Vendor:NVIDIA Model:NVIDIA GeForce RTX 3060 DriverVersion:550.163.01 MemoryDedicatedMB:0xc000300028 MemorySharedMB:<nil> APISupport:[]}
[DEBUG] [2/6] Début collecte stockage
[DEBUG] [2/6] Détails stockage: {Devices:[{Name:/dev/nvme0n1 Type:ssd Interface:ext4 CapacityGB:0.9512481689453125 Vendor:CT500P2SSD8 Model:CT500P2SSD8 Serial:2138E5D60DD8 SmartHealth:PASSED Temperature:33}] Partitions:[{Name:/dev/nvme0n1p2 MountPoint:/ FSType:ext4 TotalGB:432.80120849609375 UsedGB:0xc0003002e8 FreeGB:0xc0003002f0} {Name:/dev/nvme0n1p1 MountPoint:/boot/efi FSType:vfat TotalGB:0.9512481689453125 UsedGB:0xc0003002f8 FreeGB:0xc000300330}]}
[DEBUG] [2/6] Début collecte PCI devices
[DEBUG] Exec: lspci [-mm]
[DEBUG] PCI parsing échoue pour "00:00.0 \"Host bridge\" \"Advanced Micro Devices, Inc. [AMD]\" \"Starship/Matisse Root Complex\" -p00 \"Advanced Micro Devices, Inc. [AMD]\" \"Starship/Matisse Root Complex\"": bad verb '%[' for string
[DEBUG] PCI parsing échoue pour "00:00.2 \"IOMMU\" \"Advanced Micro Devices, Inc. [AMD]\" \"Starship/Matisse IOMMU\" -p00 \"Advanced Micro Devices, Inc. [AMD]\" \"Starship/Matisse IOMMU\"": bad verb '%[' for string
[DEBUG] PCI parsing échoue pour "00:01.0 \"Host bridge\" \"Advanced Micro Devices, Inc. [AMD]\" \"Starship/Matisse PCIe Dummy Host Bridge\" -p00 \"\" \"\"": bad verb '%[' for string
[DEBUG] PCI parsing échoue pour "00:01.1 \"PCI bridge\" \"Advanced Micro Devices, Inc. [AMD]\" \"Starship/Matisse GPP Bridge\" -p00 \"Advanced Micro Devices, Inc. [AMD]\" \"Device 1234\"": bad verb '%[' for string
[DEBUG] PCI parsing échoue pour "00:01.3 \"PCI bridge\" \"Advanced Micro Devices, Inc. [AMD]\" \"Starship/Matisse GPP Bridge\" -p00 \"Advanced Micro Devices, Inc. [AMD]\" \"Device 1234\"": bad verb '%[' for string
[DEBUG] PCI parsing échoue pour "00:02.0 \"Host bridge\" \"Advanced Micro Devices, Inc. [AMD]\" \"Starship/Matisse PCIe Dummy Host Bridge\" -p00 \"\" \"\"": bad verb '%[' for string
[DEBUG] PCI parsing échoue pour "00:03.0 \"Host bridge\" \"Advanced Micro Devices, Inc. [AMD]\" \"Starship/Matisse PCIe Dummy Host Bridge\" -p00 \"\" \"\"": bad verb '%[' for string
[DEBUG] PCI parsing échoue pour "00:03.1 \"PCI bridge\" \"Advanced Micro Devices, Inc. [AMD]\" \"Starship/Matisse GPP Bridge\" -p00 \"Advanced Micro Devices, Inc. [AMD]\" \"Device 1234\"": bad verb '%[' for string
[DEBUG] PCI parsing échoue pour "00:04.0 \"Host bridge\" \"Advanced Micro Devices, Inc. [AMD]\" \"Starship/Matisse PCIe Dummy Host Bridge\" -p00 \"\" \"\"": bad verb '%[' for string
[DEBUG] PCI parsing échoue pour "00:05.0 \"Host bridge\" \"Advanced Micro Devices, Inc. [AMD]\" \"Starship/Matisse PCIe Dummy Host Bridge\" -p00 \"\" \"\"": bad verb '%[' for string
[DEBUG] PCI parsing échoue pour "00:07.0 \"Host bridge\" \"Advanced Micro Devices, Inc. [AMD]\" \"Starship/Matisse PCIe Dummy Host Bridge\" -p00 \"\" \"\"": bad verb '%[' for string
[DEBUG] PCI parsing échoue pour "00:07.1 \"PCI bridge\" \"Advanced Micro Devices, Inc. [AMD]\" \"Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]\" -p00 \"Advanced Micro Devices, Inc. [AMD]\" \"Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]\"": bad verb '%[' for string
[DEBUG] PCI parsing échoue pour "00:08.0 \"Host bridge\" \"Advanced Micro Devices, Inc. [AMD]\" \"Starship/Matisse PCIe Dummy Host Bridge\" -p00 \"\" \"\"": bad verb '%[' for string
[DEBUG] PCI parsing échoue pour "00:08.1 \"PCI bridge\" \"Advanced Micro Devices, Inc. [AMD]\" \"Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]\" -p00 \"Advanced Micro Devices, Inc. [AMD]\" \"Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]\"": bad verb '%[' for string
[DEBUG] PCI parsing échoue pour "00:14.0 \"SMBus\" \"Advanced Micro Devices, Inc. [AMD]\" \"FCH SMBus Controller\" -r61 -p00 \"Gigabyte Technology Co., Ltd\" \"Device 5001\"": bad verb '%[' for string
[DEBUG] PCI parsing échoue pour "00:14.3 \"ISA bridge\" \"Advanced Micro Devices, Inc. [AMD]\" \"FCH LPC Bridge\" -r51 -p00 \"Gigabyte Technology Co., Ltd\" \"Device 5001\"": bad verb '%[' for string
[DEBUG] PCI parsing échoue pour "00:18.0 \"Host bridge\" \"Advanced Micro Devices, Inc. [AMD]\" \"Matisse/Vermeer Data Fabric: Device 18h; Function 0\" -p00 \"\" \"\"": bad verb '%[' for string
[DEBUG] PCI parsing échoue pour "00:18.1 \"Host bridge\" \"Advanced Micro Devices, Inc. [AMD]\" \"Matisse/Vermeer Data Fabric: Device 18h; Function 1\" -p00 \"\" \"\"": bad verb '%[' for string
[DEBUG] PCI parsing échoue pour "00:18.2 \"Host bridge\" \"Advanced Micro Devices, Inc. [AMD]\" \"Matisse/Vermeer Data Fabric: Device 18h; Function 2\" -p00 \"\" \"\"": bad verb '%[' for string
[DEBUG] PCI parsing échoue pour "00:18.3 \"Host bridge\" \"Advanced Micro Devices, Inc. [AMD]\" \"Matisse/Vermeer Data Fabric: Device 18h; Function 3\" -p00 \"\" \"\"": bad verb '%[' for string
[DEBUG] PCI parsing échoue pour "00:18.4 \"Host bridge\" \"Advanced Micro Devices, Inc. [AMD]\" \"Matisse/Vermeer Data Fabric: Device 18h; Function 4\" -p00 \"\" \"\"": bad verb '%[' for string
[DEBUG] PCI parsing échoue pour "00:18.5 \"Host bridge\" \"Advanced Micro Devices, Inc. [AMD]\" \"Matisse/Vermeer Data Fabric: Device 18h; Function 5\" -p00 \"\" \"\"": bad verb '%[' for string
[DEBUG] PCI parsing échoue pour "00:18.6 \"Host bridge\" \"Advanced Micro Devices, Inc. [AMD]\" \"Matisse/Vermeer Data Fabric: Device 18h; Function 6\" -p00 \"\" \"\"": bad verb '%[' for string
[DEBUG] PCI parsing échoue pour "00:18.7 \"Host bridge\" \"Advanced Micro Devices, Inc. [AMD]\" \"Matisse/Vermeer Data Fabric: Device 18h; Function 7\" -p00 \"\" \"\"": bad verb '%[' for string
[DEBUG] PCI parsing échoue pour "01:00.0 \"Non-Volatile memory controller\" \"Micron/Crucial Technology\" \"P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)\" -r01 -p02 \"Micron/Crucial Technology\" \"P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)\"": bad verb '%[' for string
[DEBUG] PCI parsing échoue pour "02:00.0 \"USB controller\" \"Advanced Micro Devices, Inc. [AMD]\" \"400 Series Chipset USB 3.1 xHCI Compliant Host Controller\" -r01 -p30 \"ASMedia Technology Inc.\" \"Device 1142\"": bad verb '%[' for string
[DEBUG] PCI parsing échoue pour "02:00.1 \"SATA controller\" \"Advanced Micro Devices, Inc. [AMD]\" \"400 Series Chipset SATA Controller\" -r01 -p01 \"ASMedia Technology Inc.\" \"Device 1062\"": bad verb '%[' for string
[DEBUG] PCI parsing échoue pour "02:00.2 \"PCI bridge\" \"Advanced Micro Devices, Inc. [AMD]\" \"400 Series Chipset PCIe Bridge\" -r01 -p00 \"ASMedia Technology Inc.\" \"Device 0201\"": bad verb '%[' for string
[DEBUG] PCI parsing échoue pour "03:00.0 \"PCI bridge\" \"Advanced Micro Devices, Inc. [AMD]\" \"400 Series Chipset PCIe Port\" -r01 -p00 \"ASMedia Technology Inc.\" \"Device 3306\"": bad verb '%[' for string
[DEBUG] PCI parsing échoue pour "03:01.0 \"PCI bridge\" \"Advanced Micro Devices, Inc. [AMD]\" \"400 Series Chipset PCIe Port\" -r01 -p00 \"ASMedia Technology Inc.\" \"Device 3306\"": bad verb '%[' for string
[DEBUG] PCI parsing échoue pour "03:04.0 \"PCI bridge\" \"Advanced Micro Devices, Inc. [AMD]\" \"400 Series Chipset PCIe Port\" -r01 -p00 \"ASMedia Technology Inc.\" \"Device 3306\"": bad verb '%[' for string
[DEBUG] PCI parsing échoue pour "03:08.0 \"PCI bridge\" \"Advanced Micro Devices, Inc. [AMD]\" \"400 Series Chipset PCIe Port\" -r01 -p00 \"ASMedia Technology Inc.\" \"Device 3306\"": bad verb '%[' for string
[DEBUG] PCI parsing échoue pour "04:00.0 \"Ethernet controller\" \"Realtek Semiconductor Co., Ltd.\" \"RTL8111/8168/8211/8411 PCI Express Gigabit Ethernet Controller\" -r16 -p00 \"Gigabyte Technology Co., Ltd\" \"Onboard Ethernet\"": bad verb '%[' for string
[DEBUG] PCI parsing échoue pour "07:00.0 \"Non-Volatile memory controller\" \"Micron/Crucial Technology\" \"P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)\" -r01 -p02 \"Micron/Crucial Technology\" \"P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)\"": bad verb '%[' for string
[DEBUG] PCI parsing échoue pour "08:00.0 \"VGA compatible controller\" \"NVIDIA Corporation\" \"GA106 [GeForce RTX 3060 Lite Hash Rate]\" -ra1 -p00 \"Gigabyte Technology Co., Ltd\" \"Device 4074\"": bad verb '%[' for string
[DEBUG] PCI parsing échoue pour "08:00.1 \"Audio device\" \"NVIDIA Corporation\" \"GA106 High Definition Audio Controller\" -ra1 -p00 \"Gigabyte Technology Co., Ltd\" \"Device 4074\"": bad verb '%[' for string
[DEBUG] PCI parsing échoue pour "09:00.0 \"Non-Essential Instrumentation [1300]\" \"Advanced Micro Devices, Inc. [AMD]\" \"Starship/Matisse PCIe Dummy Function\" -p00 \"Advanced Micro Devices, Inc. [AMD]\" \"Starship/Matisse PCIe Dummy Function\"": bad verb '%[' for string
[DEBUG] PCI parsing échoue pour "0a:00.0 \"Non-Essential Instrumentation [1300]\" \"Advanced Micro Devices, Inc. [AMD]\" \"Starship/Matisse Reserved SPP\" -p00 \"Advanced Micro Devices, Inc. [AMD]\" \"Starship/Matisse Reserved SPP\"": bad verb '%[' for string
[DEBUG] PCI parsing échoue pour "0a:00.1 \"Encryption controller\" \"Advanced Micro Devices, Inc. [AMD]\" \"Starship/Matisse Cryptographic Coprocessor PSPCPP\" -p00 \"Advanced Micro Devices, Inc. [AMD]\" \"Starship/Matisse Cryptographic Coprocessor PSPCPP\"": bad verb '%[' for string
[DEBUG] PCI parsing échoue pour "0a:00.3 \"USB controller\" \"Advanced Micro Devices, Inc. [AMD]\" \"Matisse USB 3.0 Host Controller\" -p30 \"Gigabyte Technology Co., Ltd\" \"Device 5007\"": bad verb '%[' for string
[DEBUG] PCI parsing échoue pour "0a:00.4 \"Audio device\" \"Advanced Micro Devices, Inc. [AMD]\" \"Starship/Matisse HD Audio Controller\" -p00 \"Gigabyte Technology Co., Ltd\" \"Device a182\"": bad verb '%[' for string
[DEBUG] [2/6] Détails PCI: []
[DEBUG] [2/6] Début collecte USB devices
[DEBUG] Exec: lsusb []
[DEBUG] [2/6] Détails USB: [{Bus:001 Device:001 VendorID:1d6b ProductID:0002 Name:Linux Foundation 2.0 root hub} {Bus:001 Device:002 VendorID:058f ProductID:6362 Name:Alcor Micro Corp. Flash Card Reader/Writer} {Bus:002 Device:001 VendorID:1d6b ProductID:0003 Name:Linux Foundation 3.0 root hub} {Bus:003 Device:001 VendorID:1d6b ProductID:0002 Name:Linux Foundation 2.0 root hub} {Bus:003 Device:003 VendorID:046d ProductID:c52b Name:Logitech, Inc. Unifying Receiver} {Bus:003 Device:004 VendorID:0bda ProductID:b711 Name:Realtek Semiconductor Corp. RTL8188GU 802.11n WLAN Adapter (After Modeswitch)} {Bus:004 Device:001 VendorID:1d6b ProductID:0003 Name:Linux Foundation 3.0 root hub}]
[DEBUG] [2/6] Début collecte partages réseau
[DEBUG] [2/6] Détails partages réseau: []
[DEBUG] [2/6] Début collecte interfaces réseau
[DEBUG] [2/6] Détails réseau: {Interfaces:[{Name:eno1 Type:ethernet MAC:18:c0:4d:b5:65:74 IP:10.0.1.109 SpeedMbps:<nil> Driver: SSID: WakeOnLAN:false} {Name:wlxe84e06a6c1fc Type:wifi MAC:fe:a3:a8:0b:93:86 IP: SpeedMbps:<nil> Driver: SSID: WakeOnLAN:false}]}
[DEBUG] [2/6] Début collecte carte mère
[DEBUG] Exec: dmidecode [-t 2]
[DEBUG] Exec: dmidecode [-t 0]
[DEBUG] [2/6] Détails carte mère: {Vendor:Gigabyte Technology Co., Ltd. Model:B450 AORUS ELITE BIOSVendor:American Megatrends International, LLC. BIOSVersion:F65e BIOSDate:09/20/2023}
[DEBUG] [2/6] Début collecte OS
[DEBUG] Exec: uname [-r]
[DEBUG] Exec: uname [-m]
[DEBUG] Exec: systemd-detect-virt []
[DEBUG] Exec: xrandr []
[DEBUG] Exec: xrandr [--current]
[DEBUG] Exec: who [-b]
[DEBUG] [2/6] Détails OS: {Name:Debian GNU/Linux Version:13 (trixie) KernelVersion:6.12.57+deb13-amd64 Architecture:x86_64 SessionType: DisplayServer: ScreenResolution:5560 x 1920 LastBootTime:démarrage système 2026-01-11 09:11 UptimeSeconds:39365.64 BatteryPercentage:<nil> BatteryStatus: BatteryHealth: Hostname:aorus VirtualizationType:kvm-host DesktopEnvironment:GNOME}
[DEBUG] [2/6] Début collecte capteurs
[DEBUG] [2/6] Détails capteurs: {CPUTempC:<nil> DiskTempsC:map[nvme-pci-0100:Composite:32.85 nvme-pci-0700:Composite:32.85] Sensors:[{Chip:nvme-pci-0700 Name:Composite Type:temperature Value:32.85 Unit:°C Alarm:false} {Chip:acpitz-acpi-0 Name:temp1 Type:temperature Value:16.8 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tctl Type:temperature Value:39.5 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tccd1 Type:temperature Value:38.75 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tccd2 Type:temperature Value:28.5 Unit:°C Alarm:false} {Chip:nvme-pci-0100 Name:Composite Type:temperature Value:32.85 Unit:°C Alarm:false}]}
[DEBUG] [2/6] Début collecte audio
[DEBUG] Exec: lspci []
[DEBUG] Exec: aplay [-l]
[DEBUG] Exec: arecord [-l]
[DEBUG] Exec: aplay [-L]
[DEBUG] Exec: pactl [info]
[DEBUG] [2/6] Détails audio: {Hardware:{PCIAudioDevices:[08:00.1 Audio device: NVIDIA Corporation GA106 High Definition Audio Controller (rev a1) 0a:00.4 Audio device: Advanced Micro Devices, Inc. [AMD] Starship/Matisse HD Audio Controller] AlsaPlayback:**** Liste des périphériques matériels PLAYBACK ****
carte 0 : NVidia [HDA NVidia], périphérique 3 : HDMI 0 [LG ULTRAWIDE]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 7 : HDMI 1 [K243Y]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 8 : HDMI 2 [HDMI 2]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 9 : HDMI 3 [HDMI 3]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]
Sous-périphériques : 0/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 1 : ALC892 Digital [ALC892 Digital]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
AlsaCapture:**** Liste des périphériques matériels CAPTURE ****
carte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 2 : ALC892 Alt Analog [ALC892 Alt Analog]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
PCMDevices:[null Discard all samples (playback) or generate zero samples (capture) pipewire PipeWire Sound Server default Default ALSA Output (currently PipeWire Media Server) hw:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Direct hardware device without any conversions hw:CARD=NVidia,DEV=7 HDA NVidia, K243Y Direct hardware device without any conversions hw:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Direct hardware device without any conversions hw:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Direct hardware device without any conversions plughw:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Hardware device with all software conversions plughw:CARD=NVidia,DEV=7 HDA NVidia, K243Y Hardware device with all software conversions plughw:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Hardware device with all software conversions plughw:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Hardware device with all software conversions hdmi:CARD=NVidia,DEV=0 HDA NVidia, LG ULTRAWIDE HDMI Audio Output hdmi:CARD=NVidia,DEV=1 HDA NVidia, K243Y HDMI Audio Output hdmi:CARD=NVidia,DEV=2 HDA NVidia, HDMI 2 HDMI Audio Output hdmi:CARD=NVidia,DEV=3 HDA NVidia, HDMI 3 HDMI Audio Output dmix:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Direct sample mixing device dmix:CARD=NVidia,DEV=7 HDA NVidia, K243Y Direct sample mixing device dmix:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Direct sample mixing device dmix:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Direct sample mixing device hw:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Direct hardware device without any conversions hw:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Direct hardware device without any conversions plughw:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Hardware device with all software conversions plughw:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Hardware device with all software conversions sysdefault:CARD=Generic HD-Audio Generic, ALC892 Analog Default Audio Device front:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Front output / input surround21:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 2.1 Surround output to Front and Subwoofer speakers surround40:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 4.0 Surround output to Front and Rear speakers surround41:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 4.1 Surround output to Front, Rear and Subwoofer speakers surround50:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 5.0 Surround output to Front, Center and Rear speakers surround51:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 5.1 Surround output to Front, Center, Rear and Subwoofer speakers surround71:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 7.1 Surround output to Front, Center, Side, Rear and Woofer speakers iec958:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Digital IEC958 (S/PDIF) Digital Audio Output dmix:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Direct sample mixing device dmix:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Direct sample mixing device]} Software:{Backend: ServerName: ServerVersion: DefaultSink:<nil> DefaultSource:<nil> Sinks:[] Sources:[]}}
[DEBUG] Exec: lscpu []
[DEBUG] Exec: lsblk [-a]
[DEBUG] Exec: dmidecode [-t 0,1,2,16,17]
[DEBUG] Matériel collecté : {CPU:{Vendor:AuthenticAMD Model:AMD Ryzen 9 5900X 12-Core Processor Cores:1 Threads:24 BaseFreqGHz:4.951 MaxFreqGHz:4.951 CacheL1KB:0 CacheL2KB:0 CacheL3KB:512 Flags:[fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local user_shstk clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm debug_swap] Microarchitecture:25 TDPW:<nil>} RAM:{TotalMB:48096 UsedMB:16274 FreeMB:31822 SharedMB:974 SlotsTotal:10 SlotsUsed:4 MaxCapacityMB:48096 ECC:false Layout:[{Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 } {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE} {Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 } {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE}]} GPU:{Vendor:NVIDIA Model:NVIDIA GeForce RTX 3060 DriverVersion:550.163.01 MemoryDedicatedMB:0xc000300028 MemorySharedMB:<nil> APISupport:[]} Storage:{Devices:[{Name:/dev/nvme0n1 Type:ssd Interface:ext4 CapacityGB:0.9512481689453125 Vendor:CT500P2SSD8 Model:CT500P2SSD8 Serial:2138E5D60DD8 SmartHealth:PASSED Temperature:33}] Partitions:[{Name:/dev/nvme0n1p2 MountPoint:/ FSType:ext4 TotalGB:432.80120849609375 UsedGB:0xc0003002e8 FreeGB:0xc0003002f0} {Name:/dev/nvme0n1p1 MountPoint:/boot/efi FSType:vfat TotalGB:0.9512481689453125 UsedGB:0xc0003002f8 FreeGB:0xc000300330}]} PCIDevices:[] USBDevices:[{Bus:001 Device:001 VendorID:1d6b ProductID:0002 Name:Linux Foundation 2.0 root hub} {Bus:001 Device:002 VendorID:058f ProductID:6362 Name:Alcor Micro Corp. Flash Card Reader/Writer} {Bus:002 Device:001 VendorID:1d6b ProductID:0003 Name:Linux Foundation 3.0 root hub} {Bus:003 Device:001 VendorID:1d6b ProductID:0002 Name:Linux Foundation 2.0 root hub} {Bus:003 Device:003 VendorID:046d ProductID:c52b Name:Logitech, Inc. Unifying Receiver} {Bus:003 Device:004 VendorID:0bda ProductID:b711 Name:Realtek Semiconductor Corp. RTL8188GU 802.11n WLAN Adapter (After Modeswitch)} {Bus:004 Device:001 VendorID:1d6b ProductID:0003 Name:Linux Foundation 3.0 root hub}] NetworkShares:[] Network:{Interfaces:[{Name:eno1 Type:ethernet MAC:18:c0:4d:b5:65:74 IP:10.0.1.109 SpeedMbps:<nil> Driver: SSID: WakeOnLAN:false} {Name:wlxe84e06a6c1fc Type:wifi MAC:fe:a3:a8:0b:93:86 IP: SpeedMbps:<nil> Driver: SSID: WakeOnLAN:false}]} Motherboard:{Vendor:Gigabyte Technology Co., Ltd. Model:B450 AORUS ELITE BIOSVendor:American Megatrends International, LLC. BIOSVersion:F65e BIOSDate:09/20/2023} OS:{Name:Debian GNU/Linux Version:13 (trixie) KernelVersion:6.12.57+deb13-amd64 Architecture:x86_64 SessionType: DisplayServer: ScreenResolution:5560 x 1920 LastBootTime:démarrage système 2026-01-11 09:11 UptimeSeconds:39365.64 BatteryPercentage:<nil> BatteryStatus: BatteryHealth: Hostname:aorus VirtualizationType:kvm-host DesktopEnvironment:GNOME} Sensors:{CPUTempC:<nil> DiskTempsC:map[nvme-pci-0100:Composite:32.85 nvme-pci-0700:Composite:32.85] Sensors:[{Chip:nvme-pci-0700 Name:Composite Type:temperature Value:32.85 Unit:°C Alarm:false} {Chip:acpitz-acpi-0 Name:temp1 Type:temperature Value:16.8 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tctl Type:temperature Value:39.5 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tccd1 Type:temperature Value:38.75 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tccd2 Type:temperature Value:28.5 Unit:°C Alarm:false} {Chip:nvme-pci-0100 Name:Composite Type:temperature Value:32.85 Unit:°C Alarm:false}]} Audio:{Hardware:{PCIAudioDevices:[08:00.1 Audio device: NVIDIA Corporation GA106 High Definition Audio Controller (rev a1) 0a:00.4 Audio device: Advanced Micro Devices, Inc. [AMD] Starship/Matisse HD Audio Controller] AlsaPlayback:**** Liste des périphériques matériels PLAYBACK ****
carte 0 : NVidia [HDA NVidia], périphérique 3 : HDMI 0 [LG ULTRAWIDE]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 7 : HDMI 1 [K243Y]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 8 : HDMI 2 [HDMI 2]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 9 : HDMI 3 [HDMI 3]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]
Sous-périphériques : 0/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 1 : ALC892 Digital [ALC892 Digital]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
AlsaCapture:**** Liste des périphériques matériels CAPTURE ****
carte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 2 : ALC892 Alt Analog [ALC892 Alt Analog]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
PCMDevices:[null Discard all samples (playback) or generate zero samples (capture) pipewire PipeWire Sound Server default Default ALSA Output (currently PipeWire Media Server) hw:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Direct hardware device without any conversions hw:CARD=NVidia,DEV=7 HDA NVidia, K243Y Direct hardware device without any conversions hw:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Direct hardware device without any conversions hw:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Direct hardware device without any conversions plughw:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Hardware device with all software conversions plughw:CARD=NVidia,DEV=7 HDA NVidia, K243Y Hardware device with all software conversions plughw:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Hardware device with all software conversions plughw:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Hardware device with all software conversions hdmi:CARD=NVidia,DEV=0 HDA NVidia, LG ULTRAWIDE HDMI Audio Output hdmi:CARD=NVidia,DEV=1 HDA NVidia, K243Y HDMI Audio Output hdmi:CARD=NVidia,DEV=2 HDA NVidia, HDMI 2 HDMI Audio Output hdmi:CARD=NVidia,DEV=3 HDA NVidia, HDMI 3 HDMI Audio Output dmix:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Direct sample mixing device dmix:CARD=NVidia,DEV=7 HDA NVidia, K243Y Direct sample mixing device dmix:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Direct sample mixing device dmix:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Direct sample mixing device hw:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Direct hardware device without any conversions hw:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Direct hardware device without any conversions plughw:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Hardware device with all software conversions plughw:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Hardware device with all software conversions sysdefault:CARD=Generic HD-Audio Generic, ALC892 Analog Default Audio Device front:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Front output / input surround21:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 2.1 Surround output to Front and Subwoofer speakers surround40:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 4.0 Surround output to Front and Rear speakers surround41:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 4.1 Surround output to Front, Rear and Subwoofer speakers surround50:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 5.0 Surround output to Front, Center and Rear speakers surround51:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 5.1 Surround output to Front, Center, Rear and Subwoofer speakers surround71:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 7.1 Surround output to Front, Center, Side, Rear and Woofer speakers iec958:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Digital IEC958 (S/PDIF) Digital Audio Output dmix:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Direct sample mixing device dmix:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Direct sample mixing device]} Software:{Backend: ServerName: ServerVersion: DefaultSink:<nil> DefaultSource:<nil> Sinks:[] Sources:[]}} RawInfo:map[dmidecode:# dmidecode 3.6
Getting SMBIOS data from sysfs.
SMBIOS 3.3.0 present.
Handle 0x0000, DMI type 0, 26 bytes
BIOS Information
Vendor: American Megatrends International, LLC.
Version: F65e
Release Date: 09/20/2023
Address: 0xF0000
Runtime Size: 64 kB
ROM Size: 16 MB
Characteristics:
PCI is supported
BIOS is upgradeable
BIOS shadowing is allowed
Boot from CD is supported
Selectable boot is supported
BIOS ROM is socketed
EDD is supported
Japanese floppy for NEC 9800 1.2 MB is supported (int 13h)
Japanese floppy for Toshiba 1.2 MB is supported (int 13h)
5.25"/360 kB floppy services are supported (int 13h)
5.25"/1.2 MB floppy services are supported (int 13h)
3.5"/720 kB floppy services are supported (int 13h)
3.5"/2.88 MB floppy services are supported (int 13h)
Print screen service is supported (int 5h)
Serial services are supported (int 14h)
Printer services are supported (int 17h)
CGA/mono video services are supported (int 10h)
USB legacy is supported
BIOS boot specification is supported
Targeted content distribution is supported
UEFI is supported
BIOS Revision: 5.17
Handle 0x0001, DMI type 1, 27 bytes
System Information
Manufacturer: Gigabyte Technology Co., Ltd.
Product Name: B450 AORUS ELITE
Version: Default string
Serial Number: Default string
UUID: 03c00218-044d-05b5-6506-740700080009
Wake-up Type: Power Switch
SKU Number: Default string
Family: B450 MB
Handle 0x0002, DMI type 2, 15 bytes
Base Board Information
Manufacturer: Gigabyte Technology Co., Ltd.
Product Name: B450 AORUS ELITE
Version: Default string
Serial Number: Default string
Asset Tag: Default string
Features:
Board is a hosting board
Board is replaceable
Location In Chassis: Default string
Chassis Handle: 0x0003
Type: Motherboard
Contained Object Handles: 0
Handle 0x000B, DMI type 16, 23 bytes
Physical Memory Array
Location: System Board Or Motherboard
Use: System Memory
Error Correction Type: None
Maximum Capacity: 128 GB
Error Information Handle: 0x000A
Number Of Devices: 4
Handle 0x0013, DMI type 17, 92 bytes
Memory Device
Array Handle: 0x000B
Error Information Handle: 0x0012
Total Width: 64 bits
Data Width: 64 bits
Size: 16 GB
Form Factor: DIMM
Set: None
Locator: DIMM 0
Bank Locator: P0 CHANNEL A
Type: DDR4
Type Detail: Synchronous Unbuffered (Unregistered)
Speed: 3200 MT/s
Manufacturer: Unknown
Serial Number: 00000000
Asset Tag: Not Specified
Part Number: CMW32GX4M2E3200C16
Rank: 2
Configured Memory Speed: 3200 MT/s
Minimum Voltage: Unknown
Maximum Voltage: Unknown
Configured Voltage: 1.2 V
Memory Technology: DRAM
Memory Operating Mode Capability: Volatile memory
Firmware Version: Unknown
Module Manufacturer ID: Bank 3, Hex 0x9E
Module Product ID: Unknown
Memory Subsystem Controller Manufacturer ID: Unknown
Memory Subsystem Controller Product ID: Unknown
Non-Volatile Size: None
Volatile Size: 16 GB
Cache Size: None
Logical Size: None
Handle 0x0016, DMI type 17, 92 bytes
Memory Device
Array Handle: 0x000B
Error Information Handle: 0x0015
Total Width: 64 bits
Data Width: 64 bits
Size: 8 GB
Form Factor: DIMM
Set: None
Locator: DIMM 1
Bank Locator: P0 CHANNEL A
Type: DDR4
Type Detail: Synchronous Unbuffered (Unregistered)
Speed: 3200 MT/s
Manufacturer: Unknown
Serial Number: E3C4408B
Asset Tag: Not Specified
Part Number: BL8G32C16U4BL.M8FE
Rank: 1
Configured Memory Speed: 3200 MT/s
Minimum Voltage: 1.2 V
Maximum Voltage: 1.2 V
Configured Voltage: 1.2 V
Memory Technology: DRAM
Memory Operating Mode Capability: Volatile memory
Firmware Version: Unknown
Module Manufacturer ID: Bank 6, Hex 0x9B
Module Product ID: Unknown
Memory Subsystem Controller Manufacturer ID: Unknown
Memory Subsystem Controller Product ID: Unknown
Non-Volatile Size: None
Volatile Size: 8 GB
Cache Size: None
Logical Size: None
Handle 0x0019, DMI type 17, 92 bytes
Memory Device
Array Handle: 0x000B
Error Information Handle: 0x0018
Total Width: 64 bits
Data Width: 64 bits
Size: 16 GB
Form Factor: DIMM
Set: None
Locator: DIMM 0
Bank Locator: P0 CHANNEL B
Type: DDR4
Type Detail: Synchronous Unbuffered (Unregistered)
Speed: 3200 MT/s
Manufacturer: Unknown
Serial Number: 00000000
Asset Tag: Not Specified
Part Number: CMW32GX4M2E3200C16
Rank: 2
Configured Memory Speed: 3200 MT/s
Minimum Voltage: Unknown
Maximum Voltage: Unknown
Configured Voltage: 1.2 V
Memory Technology: DRAM
Memory Operating Mode Capability: Volatile memory
Firmware Version: Unknown
Module Manufacturer ID: Bank 3, Hex 0x9E
Module Product ID: Unknown
Memory Subsystem Controller Manufacturer ID: Unknown
Memory Subsystem Controller Product ID: Unknown
Non-Volatile Size: None
Volatile Size: 16 GB
Cache Size: None
Logical Size: None
Handle 0x001C, DMI type 17, 92 bytes
Memory Device
Array Handle: 0x000B
Error Information Handle: 0x001B
Total Width: 64 bits
Data Width: 64 bits
Size: 8 GB
Form Factor: DIMM
Set: None
Locator: DIMM 1
Bank Locator: P0 CHANNEL B
Type: DDR4
Type Detail: Synchronous Unbuffered (Unregistered)
Speed: 3200 MT/s
Manufacturer: Unknown
Serial Number: E3C44087
Asset Tag: Not Specified
Part Number: BL8G32C16U4BL.M8FE
Rank: 1
Configured Memory Speed: 3200 MT/s
Minimum Voltage: 1.2 V
Maximum Voltage: 1.2 V
Configured Voltage: 1.2 V
Memory Technology: DRAM
Memory Operating Mode Capability: Volatile memory
Firmware Version: Unknown
Module Manufacturer ID: Bank 6, Hex 0x9B
Module Product ID: Unknown
Memory Subsystem Controller Manufacturer ID: Unknown
Memory Subsystem Controller Product ID: Unknown
Non-Volatile Size: None
Volatile Size: 8 GB
Cache Size: None
Logical Size: None
lsblk:NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS
loop0 7:0 0 118,5M 1 loop /snap/iptvnator/92
loop1 7:1 0 48,1M 1 loop /snap/snapd/25935
loop2 7:2 0 50,9M 1 loop /snap/snapd/25577
loop3 7:3 0 4K 1 loop /snap/bare/5
loop4 7:4 0 91,7M 1 loop /snap/gtk-common-themes/1535
loop5 7:5 0 55,5M 1 loop /snap/core18/2976
loop6 7:6 0 164,8M 1 loop /snap/gnome-3-28-1804/198
loop7 7:7 0 0B 0 loop
sda 8:0 0 447,1G 0 disk
└─sda1 8:1 0 447,1G 0 part
sdb 8:16 1 0B 0 disk
sdc 8:32 1 0B 0 disk
sdd 8:48 1 0B 0 disk
sde 8:64 1 0B 0 disk
nvme0n1 259:0 0 465,8G 0 disk
├─nvme0n1p1 259:1 0 976M 0 part /boot/efi
├─nvme0n1p2 259:2 0 440,8G 0 part /
└─nvme0n1p3 259:3 0 24G 0 part [SWAP]
nvme1n1 259:4 0 465,8G 0 disk
├─nvme1n1p1 259:5 0 50M 0 part
├─nvme1n1p2 259:6 0 464,3G 0 part
├─nvme1n1p3 259:7 0 808M 0 part
├─nvme1n1p4 259:8 0 100M 0 part
└─nvme1n1p5 259:9 0 522M 0 part
lscpu:Architecture : x86_64
Mode(s) opératoire(s) des processeurs : 32-bit, 64-bit
Tailles des adresses: 48 bits physical, 48 bits virtual
Boutisme : Little Endian
Processeur(s) : 24
Liste de processeur(s) en ligne : 0-23
Identifiant constructeur : AuthenticAMD
Nom de modèle : AMD Ryzen 9 5900X 12-Core Processor
Famille de processeur : 25
Modèle : 33
Thread(s) par cœur : 2
Cœur(s) par socket : 12
Socket(s) : 1
Révision : 2
Accroissement de fréquence : activé
multiplication des MHz du/des CPU(s) : 77%
Vitesse maximale du processeur en MHz : 4951,0000
Vitesse minimale du processeur en MHz : 550,0000
BogoMIPS : 7399,98
Drapeaux : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local user_shstk clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm debug_swap
Virtualisation : AMD-V
Cache L1d : 384 KiB (12 instances)
Cache L1i : 384 KiB (12 instances)
Cache L2 : 6 MiB (12 instances)
Cache L3 : 64 MiB (2 instances)
Nœud(s) NUMA : 1
Nœud NUMA 0 de processeur(s) : 0-23
Vulnérabilité Gather data sampling : Not affected
Vulnérabilité Indirect target selection : Not affected
Vulnérabilité Itlb multihit : Not affected
Vulnérabilité L1tf : Not affected
Vulnérabilité Mds : Not affected
Vulnérabilité Meltdown : Not affected
Vulnérabilité Mmio stale data : Not affected
Vulnérabilité Reg file data sampling : Not affected
Vulnérabilité Retbleed : Not affected
Vulnérabilité Spec rstack overflow : Mitigation; Safe RET
Vulnérabilité Spec store bypass : Mitigation; Speculative Store Bypass disabled via prctl
Vulnérabilité Spectre v1 : Mitigation; usercopy/swapgs barriers and __user pointer sanitization
Vulnérabilité Spectre v2 : Mitigation; Retpolines; IBPB conditional; IBRS_FW; STIBP always-on; RSB filling; PBRSB-eIBRS Not affected; BHI Not affected
Vulnérabilité Srbds : Not affected
Vulnérabilité Tsa : Vulnerable: Clear CPU buffers attempted, no microcode
Vulnérabilité Tsx async abort : Not affected
Vulnérabilité Vmscape : Mitigation; IBPB before exit to userspace
]}
[DEBUG] [3/6] Benchmark CPU démarré
[DEBUG] Exec: sysbench [cpu --threads=1 --time=10 run]
[DEBUG] Exec: nproc []
[DEBUG] Exec: sysbench [cpu --threads=24 --time=10 run]
[DEBUG] [3/6] Résultat CPU: {EventsPerSec:37450.175 EventsPerSecSingle:5627.78 EventsPerSecMulti:69272.57 DurationSec:20.0004 Score:37450.175 ScoreSingle:5627.78 ScoreMulti:69272.57}
[DEBUG] [3/6] Benchmark mémoire démarré
[DEBUG] Exec: sysbench [memory --memory-block-size=1K --memory-total-size=1G run]
[DEBUG] [3/6] Résultat mémoire: {Throughput:8590.62 Score:8590.62}
[DEBUG] [3/6] Benchmark disque démarré
[DEBUG] Exec: fio [--name=bench --ioengine=libaio --rw=randrw --bs=4k --direct=1 --size=500M --numjobs=1 --runtime=30 --time_based --output-format=json --filename=/tmp/bench.fio]
[DEBUG] [3/6] Résultat disque: {ReadMBs:1.0386428833007812 WriteMBs:1.0381288528442383 IOPSRead:272274.1 IOPSWrite:272139.4 LatencyMs:0.00043187100199999995 Score:1.0383858680725098}
[DEBUG] [3/6] Benchmark réseau démarré
[DEBUG] Exec: iperf3 [-c 10.0.0.50 -p 5201 -J -t 10]
[DEBUG] Exec: ping [-c 1 -W 1 10.0.0.50]
[DEBUG] [3/6] Résultat réseau: {Upload:940.450413446252 Download:938.1880707104364 PingMs:0.369 JitterMs:<nil> PacketLossPct:<nil> Score:939.3192420783441}
[DEBUG] Résultats des benchmarks : {CPU:{EventsPerSec:37450.175 EventsPerSecSingle:5627.78 EventsPerSecMulti:69272.57 DurationSec:20.0004 Score:37450.175 ScoreSingle:5627.78 ScoreMulti:69272.57} Memory:{Throughput:8590.62 Score:8590.62} Disk:{ReadMBs:1.0386428833007812 WriteMBs:1.0381288528442383 IOPSRead:272274.1 IOPSWrite:272139.4 LatencyMs:0.00043187100199999995 Score:1.0383858680725098} Network:{Upload:940.450413446252 Download:938.1880707104364 PingMs:0.369 JitterMs:<nil> PacketLossPct:<nil> Score:939.3192420783441} GPU:{GLMark2Score:<nil> Score:<nil>} GlobalScore:0}
[DEBUG] Poids benchmarks : map[cpu:0.4 disk:0.2 gpu:0.1 memory:0.2 network:0.1]
[DEBUG] Scores normalisés : cpu=1872.51 mem=85.91 disk=0.10 net=93.93
[DEBUG] Score global calculé : 77559.87
[DEBUG] Payload JSON (39380 octets) : {
"device_identifier": "aorus",
"bench_script_version": "1.6.6",
"bench_client_version": "1.0.1",
"hardware": {
"cpu": {
"vendor": "AuthenticAMD",
"model": "AMD Ryzen 9 5900X 12-Core Processor",
"cores": 1,
"threads": 24,
"base_freq_ghz": 4.951,
"max_freq_ghz": 4.951,
"cache_l1_kb": 0,
"cache_l2_kb": 0,
"cache_l3_kb": 512,
"flags": [
"fpu",
"vme",
"de",
"pse",
"tsc",
"msr",
"pae",
"mce",
"cx8",
"apic",
"sep",
"mtrr",
"pge",
"mca",
"cmov",
"pat",
"pse36",
"clflush",
"mmx",
"fxsr",
"sse",
"sse2",
"ht",
"syscall",
"nx",
"mmxext",
"fxsr_opt",
"pdpe1gb",
"rdtscp",
"lm",
"constant_tsc",
"rep_good",
"nopl",
"xtopology",
"nonstop_tsc",
"cpuid",
"extd_apicid",
"aperfmperf",
"rapl",
"pni",
"pclmulqdq",
"monitor",
"ssse3",
"fma",
"cx16",
"sse4_1",
"sse4_2",
"x2apic",
"movbe",
"popcnt",
"aes",
"xsave",
"avx",
"f16c",
"rdrand",
"lahf_lm",
"cmp_legacy",
"svm",
"extapic",
"cr8_legacy",
"abm",
"sse4a",
"misalignsse",
"3dnowprefetch",
"osvw",
"ibs",
"skinit",
"wdt",
"tce",
"topoext",
"perfctr_core",
"perfctr_nb",
"bpext",
"perfctr_llc",
"mwaitx",
"cpb",
"cat_l3",
"cdp_l3",
"hw_pstate",
"ssbd",
"mba",
"ibrs",
"ibpb",
"stibp",
"vmmcall",
"fsgsbase",
"bmi1",
"avx2",
"smep",
"bmi2",
"erms",
"invpcid",
"cqm",
"rdt_a",
"rdseed",
"adx",
"smap",
"clflushopt",
"clwb",
"sha_ni",
"xsaveopt",
"xsavec",
"xgetbv1",
"xsaves",
"cqm_llc",
"cqm_occup_llc",
"cqm_mbm_total",
"cqm_mbm_local",
"user_shstk",
"clzero",
"irperf",
"xsaveerptr",
"rdpru",
"wbnoinvd",
"arat",
"npt",
"lbrv",
"svm_lock",
"nrip_save",
"tsc_scale",
"vmcb_clean",
"flushbyasid",
"decodeassists",
"pausefilter",
"pfthreshold",
"avic",
"v_vmsave_vmload",
"vgif",
"v_spec_ctrl",
"umip",
"pku",
"ospke",
"vaes",
"vpclmulqdq",
"rdpid",
"overflow_recov",
"succor",
"smca",
"fsrm",
"debug_swap"
],
"microarchitecture": "25",
"tdp_w": null
},
"ram": {
"total_mb": 48096,
"used_mb": 16274,
"free_mb": 31822,
"shared_mb": 974,
"slots_total": 10,
"slots_used": 4,
"max_capacity_mb": 48096,
"ecc": false,
"layout": [
{
"slot": "DIMM 0",
"size_mb": 16384,
"type": "DDR4",
"speed_mhz": 3200,
"configured_speed_mhz": 3200,
"form_factor": "DIMM",
"type_detail": "Synchronous Unbuffered (Unregistered)",
"rank": "2",
"manufacturer": "Unknown",
"part_number": "CMW32GX4M2E3200C16 "
},
{
"slot": "DIMM 1",
"size_mb": 8192,
"type": "DDR4",
"speed_mhz": 3200,
"configured_speed_mhz": 3200,
"form_factor": "DIMM",
"type_detail": "Synchronous Unbuffered (Unregistered)",
"rank": "1",
"manufacturer": "Unknown",
"part_number": "BL8G32C16U4BL.M8FE"
},
{
"slot": "DIMM 0",
"size_mb": 16384,
"type": "DDR4",
"speed_mhz": 3200,
"configured_speed_mhz": 3200,
"form_factor": "DIMM",
"type_detail": "Synchronous Unbuffered (Unregistered)",
"rank": "2",
"manufacturer": "Unknown",
"part_number": "CMW32GX4M2E3200C16 "
},
{
"slot": "DIMM 1",
"size_mb": 8192,
"type": "DDR4",
"speed_mhz": 3200,
"configured_speed_mhz": 3200,
"form_factor": "DIMM",
"type_detail": "Synchronous Unbuffered (Unregistered)",
"rank": "1",
"manufacturer": "Unknown",
"part_number": "BL8G32C16U4BL.M8FE"
}
]
},
"gpu": {
"vendor": "NVIDIA",
"model": "NVIDIA GeForce RTX 3060",
"driver_version": "550.163.01",
"memory_dedicated_mb": 12288,
"memory_shared_mb": null,
"api_support": null
},
"storage": {
"devices": [
{
"name": "/dev/nvme0n1",
"type": "ssd",
"interface": "ext4",
"capacity_gb": 0.9512481689453125,
"vendor": "CT500P2SSD8",
"model": "CT500P2SSD8",
"serial": "2138E5D60DD8",
"smart_health": "PASSED",
"temperature_c": 33
}
],
"partitions": [
{
"name": "/dev/nvme0n1p2",
"mount_point": "/",
"fs_type": "ext4",
"total_gb": 432.80120849609375,
"used_gb": 348.12808990478516,
"free_gb": 62.617942810058594
},
{
"name": "/dev/nvme0n1p1",
"mount_point": "/boot/efi",
"fs_type": "vfat",
"total_gb": 0.9512481689453125,
"used_gb": 0.008571624755859375,
"free_gb": 0.9426765441894531
}
]
},
"pci_devices": null,
"usb_devices": [
{
"bus": "001",
"device": "001",
"vendor_id": "1d6b",
"product_id": "0002",
"name": "Linux Foundation 2.0 root hub"
},
{
"bus": "001",
"device": "002",
"vendor_id": "058f",
"product_id": "6362",
"name": "Alcor Micro Corp. Flash Card Reader/Writer"
},
{
"bus": "002",
"device": "001",
"vendor_id": "1d6b",
"product_id": "0003",
"name": "Linux Foundation 3.0 root hub"
},
{
"bus": "003",
"device": "001",
"vendor_id": "1d6b",
"product_id": "0002",
"name": "Linux Foundation 2.0 root hub"
},
{
"bus": "003",
"device": "003",
"vendor_id": "046d",
"product_id": "c52b",
"name": "Logitech, Inc. Unifying Receiver"
},
{
"bus": "003",
"device": "004",
"vendor_id": "0bda",
"product_id": "b711",
"name": "Realtek Semiconductor Corp. RTL8188GU 802.11n WLAN Adapter (After Modeswitch)"
},
{
"bus": "004",
"device": "001",
"vendor_id": "1d6b",
"product_id": "0003",
"name": "Linux Foundation 3.0 root hub"
}
],
"network_shares": null,
"network": {
"interfaces": [
{
"name": "eno1",
"type": "ethernet",
"mac": "18:c0:4d:b5:65:74",
"ip": "10.0.1.109",
"speed_mbps": null,
"driver": "",
"ssid": "",
"wake_on_lan": false
},
{
"name": "wlxe84e06a6c1fc",
"type": "wifi",
"mac": "fe:a3:a8:0b:93:86",
"ip": "",
"speed_mbps": null,
"driver": "",
"ssid": "",
"wake_on_lan": false
}
]
},
"motherboard": {
"vendor": "Gigabyte Technology Co., Ltd.",
"model": "B450 AORUS ELITE",
"bios_vendor": "American Megatrends International, LLC.",
"bios_version": "F65e",
"bios_date": "09/20/2023"
},
"os": {
"name": "Debian GNU/Linux",
"version": "13 (trixie)",
"kernel_version": "6.12.57+deb13-amd64",
"architecture": "x86_64",
"session_type": "",
"display_server": "",
"screen_resolution": "5560 x 1920",
"last_boot_time": "démarrage système 2026-01-11 09:11",
"uptime_seconds": 39365.64,
"battery_percentage": null,
"battery_status": "",
"battery_health": "",
"hostname": "aorus",
"virtualization_type": "kvm-host",
"desktop_environment": "GNOME"
},
"sensors": {
"cpu_temp_c": null,
"disk_temps_c": {
"nvme-pci-0100:Composite": 32.85,
"nvme-pci-0700:Composite": 32.85
},
"sensors": [
{
"chip": "nvme-pci-0700",
"name": "Composite",
"type": "temperature",
"value": 32.85,
"unit": "°C",
"alarm": false
},
{
"chip": "acpitz-acpi-0",
"name": "temp1",
"type": "temperature",
"value": 16.8,
"unit": "°C",
"alarm": false
},
{
"chip": "k10temp-pci-00c3",
"name": "Tctl",
"type": "temperature",
"value": 39.5,
"unit": "°C",
"alarm": false
},
{
"chip": "k10temp-pci-00c3",
"name": "Tccd1",
"type": "temperature",
"value": 38.75,
"unit": "°C",
"alarm": false
},
{
"chip": "k10temp-pci-00c3",
"name": "Tccd2",
"type": "temperature",
"value": 28.5,
"unit": "°C",
"alarm": false
},
{
"chip": "nvme-pci-0100",
"name": "Composite",
"type": "temperature",
"value": 32.85,
"unit": "°C",
"alarm": false
}
]
},
"audio": {
"hardware": {
"pci_audio_devices": [
"08:00.1 Audio device: NVIDIA Corporation GA106 High Definition Audio Controller (rev a1)",
"0a:00.4 Audio device: Advanced Micro Devices, Inc. [AMD] Starship/Matisse HD Audio Controller"
],
"alsa_playback": "**** Liste des périphériques matériels PLAYBACK ****\ncarte 0 : NVidia [HDA NVidia], périphérique 3 : HDMI 0 [LG ULTRAWIDE]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\ncarte 0 : NVidia [HDA NVidia], périphérique 7 : HDMI 1 [K243Y]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\ncarte 0 : NVidia [HDA NVidia], périphérique 8 : HDMI 2 [HDMI 2]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\ncarte 0 : NVidia [HDA NVidia], périphérique 9 : HDMI 3 [HDMI 3]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\ncarte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]\n Sous-périphériques : 0/1\n Sous-périphérique #0 : subdevice #0\ncarte 1 : Generic [HD-Audio Generic], périphérique 1 : ALC892 Digital [ALC892 Digital]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\n",
"alsa_capture": "**** Liste des périphériques matériels CAPTURE ****\ncarte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\ncarte 1 : Generic [HD-Audio Generic], périphérique 2 : ALC892 Alt Analog [ALC892 Alt Analog]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\n",
"pcm_devices": [
"null",
"Discard all samples (playback) or generate zero samples (capture)",
"pipewire",
"PipeWire Sound Server",
"default",
"Default ALSA Output (currently PipeWire Media Server)",
"hw:CARD=NVidia,DEV=3",
"HDA NVidia, LG ULTRAWIDE",
"Direct hardware device without any conversions",
"hw:CARD=NVidia,DEV=7",
"HDA NVidia, K243Y",
"Direct hardware device without any conversions",
"hw:CARD=NVidia,DEV=8",
"HDA NVidia, HDMI 2",
"Direct hardware device without any conversions",
"hw:CARD=NVidia,DEV=9",
"HDA NVidia, HDMI 3",
"Direct hardware device without any conversions",
"plughw:CARD=NVidia,DEV=3",
"HDA NVidia, LG ULTRAWIDE",
"Hardware device with all software conversions",
"plughw:CARD=NVidia,DEV=7",
"HDA NVidia, K243Y",
"Hardware device with all software conversions",
"plughw:CARD=NVidia,DEV=8",
"HDA NVidia, HDMI 2",
"Hardware device with all software conversions",
"plughw:CARD=NVidia,DEV=9",
"HDA NVidia, HDMI 3",
"Hardware device with all software conversions",
"hdmi:CARD=NVidia,DEV=0",
"HDA NVidia, LG ULTRAWIDE",
"HDMI Audio Output",
"hdmi:CARD=NVidia,DEV=1",
"HDA NVidia, K243Y",
"HDMI Audio Output",
"hdmi:CARD=NVidia,DEV=2",
"HDA NVidia, HDMI 2",
"HDMI Audio Output",
"hdmi:CARD=NVidia,DEV=3",
"HDA NVidia, HDMI 3",
"HDMI Audio Output",
"dmix:CARD=NVidia,DEV=3",
"HDA NVidia, LG ULTRAWIDE",
"Direct sample mixing device",
"dmix:CARD=NVidia,DEV=7",
"HDA NVidia, K243Y",
"Direct sample mixing device",
"dmix:CARD=NVidia,DEV=8",
"HDA NVidia, HDMI 2",
"Direct sample mixing device",
"dmix:CARD=NVidia,DEV=9",
"HDA NVidia, HDMI 3",
"Direct sample mixing device",
"hw:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"Direct hardware device without any conversions",
"hw:CARD=Generic,DEV=1",
"HD-Audio Generic, ALC892 Digital",
"Direct hardware device without any conversions",
"plughw:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"Hardware device with all software conversions",
"plughw:CARD=Generic,DEV=1",
"HD-Audio Generic, ALC892 Digital",
"Hardware device with all software conversions",
"sysdefault:CARD=Generic",
"HD-Audio Generic, ALC892 Analog",
"Default Audio Device",
"front:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"Front output / input",
"surround21:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"2.1 Surround output to Front and Subwoofer speakers",
"surround40:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"4.0 Surround output to Front and Rear speakers",
"surround41:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"4.1 Surround output to Front, Rear and Subwoofer speakers",
"surround50:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"5.0 Surround output to Front, Center and Rear speakers",
"surround51:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"5.1 Surround output to Front, Center, Rear and Subwoofer speakers",
"surround71:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"7.1 Surround output to Front, Center, Side, Rear and Woofer speakers",
"iec958:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Digital",
"IEC958 (S/PDIF) Digital Audio Output",
"dmix:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"Direct sample mixing device",
"dmix:CARD=Generic,DEV=1",
"HD-Audio Generic, ALC892 Digital",
"Direct sample mixing device"
]
},
"software": {
"backend": "",
"server_name": "",
"server_version": "",
"default_sink": null,
"default_source": null,
"sinks": null,
"sources": null
}
},
"raw_info": {
"debug": "active",
"dmidecode": "# dmidecode 3.6\nGetting SMBIOS data from sysfs.\nSMBIOS 3.3.0 present.\n\nHandle 0x0000, DMI type 0, 26 bytes\nBIOS Information\n\tVendor: American Megatrends International, LLC.\n\tVersion: F65e\n\tRelease Date: 09/20/2023\n\tAddress: 0xF0000\n\tRuntime Size: 64 kB\n\tROM Size: 16 MB\n\tCharacteristics:\n\t\tPCI is supported\n\t\tBIOS is upgradeable\n\t\tBIOS shadowing is allowed\n\t\tBoot from CD is supported\n\t\tSelectable boot is supported\n\t\tBIOS ROM is socketed\n\t\tEDD is supported\n\t\tJapanese floppy for NEC 9800 1.2 MB is supported (int 13h)\n\t\tJapanese floppy for Toshiba 1.2 MB is supported (int 13h)\n\t\t5.25\"/360 kB floppy services are supported (int 13h)\n\t\t5.25\"/1.2 MB floppy services are supported (int 13h)\n\t\t3.5\"/720 kB floppy services are supported (int 13h)\n\t\t3.5\"/2.88 MB floppy services are supported (int 13h)\n\t\tPrint screen service is supported (int 5h)\n\t\tSerial services are supported (int 14h)\n\t\tPrinter services are supported (int 17h)\n\t\tCGA/mono video services are supported (int 10h)\n\t\tUSB legacy is supported\n\t\tBIOS boot specification is supported\n\t\tTargeted content distribution is supported\n\t\tUEFI is supported\n\tBIOS Revision: 5.17\n\nHandle 0x0001, DMI type 1, 27 bytes\nSystem Information\n\tManufacturer: Gigabyte Technology Co., Ltd.\n\tProduct Name: B450 AORUS ELITE\n\tVersion: Default string\n\tSerial Number: Default string\n\tUUID: 03c00218-044d-05b5-6506-740700080009\n\tWake-up Type: Power Switch\n\tSKU Number: Default string\n\tFamily: B450 MB\n\nHandle 0x0002, DMI type 2, 15 bytes\nBase Board Information\n\tManufacturer: Gigabyte Technology Co., Ltd.\n\tProduct Name: B450 AORUS ELITE\n\tVersion: Default string\n\tSerial Number: Default string\n\tAsset Tag: Default string\n\tFeatures:\n\t\tBoard is a hosting board\n\t\tBoard is replaceable\n\tLocation In Chassis: Default string\n\tChassis Handle: 0x0003\n\tType: Motherboard\n\tContained Object Handles: 0\n\nHandle 0x000B, DMI type 16, 23 bytes\nPhysical Memory Array\n\tLocation: System Board Or Motherboard\n\tUse: System Memory\n\tError Correction Type: None\n\tMaximum Capacity: 128 GB\n\tError Information Handle: 0x000A\n\tNumber Of Devices: 4\n\nHandle 0x0013, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0012\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 16 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 0\n\tBank Locator: P0 CHANNEL A\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: 00000000\n\tAsset Tag: Not Specified\n\tPart Number: CMW32GX4M2E3200C16 \n\tRank: 2\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: Unknown\n\tMaximum Voltage: Unknown\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 3, Hex 0x9E\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 16 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x0016, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0015\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 8 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 1\n\tBank Locator: P0 CHANNEL A\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: E3C4408B\n\tAsset Tag: Not Specified\n\tPart Number: BL8G32C16U4BL.M8FE\n\tRank: 1\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: 1.2 V\n\tMaximum Voltage: 1.2 V\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 6, Hex 0x9B\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 8 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x0019, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0018\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 16 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 0\n\tBank Locator: P0 CHANNEL B\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: 00000000\n\tAsset Tag: Not Specified\n\tPart Number: CMW32GX4M2E3200C16 \n\tRank: 2\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: Unknown\n\tMaximum Voltage: Unknown\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 3, Hex 0x9E\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 16 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x001C, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x001B\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 8 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 1\n\tBank Locator: P0 CHANNEL B\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: E3C44087\n\tAsset Tag: Not Specified\n\tPart Number: BL8G32C16U4BL.M8FE\n\tRank: 1\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: 1.2 V\n\tMaximum Voltage: 1.2 V\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 6, Hex 0x9B\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 8 GB\n\tCache Size: None\n\tLogical Size: None\n\n",
"lsblk": "NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS\nloop0 7:0 0 118,5M 1 loop /snap/iptvnator/92\nloop1 7:1 0 48,1M 1 loop /snap/snapd/25935\nloop2 7:2 0 50,9M 1 loop /snap/snapd/25577\nloop3 7:3 0 4K 1 loop /snap/bare/5\nloop4 7:4 0 91,7M 1 loop /snap/gtk-common-themes/1535\nloop5 7:5 0 55,5M 1 loop /snap/core18/2976\nloop6 7:6 0 164,8M 1 loop /snap/gnome-3-28-1804/198\nloop7 7:7 0 0B 0 loop \nsda 8:0 0 447,1G 0 disk \n└─sda1 8:1 0 447,1G 0 part \nsdb 8:16 1 0B 0 disk \nsdc 8:32 1 0B 0 disk \nsdd 8:48 1 0B 0 disk \nsde 8:64 1 0B 0 disk \nnvme0n1 259:0 0 465,8G 0 disk \n├─nvme0n1p1 259:1 0 976M 0 part /boot/efi\n├─nvme0n1p2 259:2 0 440,8G 0 part /\n└─nvme0n1p3 259:3 0 24G 0 part [SWAP]\nnvme1n1 259:4 0 465,8G 0 disk \n├─nvme1n1p1 259:5 0 50M 0 part \n├─nvme1n1p2 259:6 0 464,3G 0 part \n├─nvme1n1p3 259:7 0 808M 0 part \n├─nvme1n1p4 259:8 0 100M 0 part \n└─nvme1n1p5 259:9 0 522M 0 part \n",
"lscpu": "Architecture : x86_64\nMode(s) opératoire(s) des processeurs : 32-bit, 64-bit\nTailles des adresses: 48 bits physical, 48 bits virtual\nBoutisme : Little Endian\nProcesseur(s) : 24\nListe de processeur(s) en ligne : 0-23\nIdentifiant constructeur : AuthenticAMD\nNom de modèle : AMD Ryzen 9 5900X 12-Core Processor\nFamille de processeur : 25\nModèle : 33\nThread(s) par cœur : 2\nCœur(s) par socket : 12\nSocket(s) : 1\nRévision : 2\nAccroissement de fréquence : activé\nmultiplication des MHz du/des CPU(s) : 77%\nVitesse maximale du processeur en MHz : 4951,0000\nVitesse minimale du processeur en MHz : 550,0000\nBogoMIPS : 7399,98\nDrapeaux : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local user_shstk clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm debug_swap\nVirtualisation : AMD-V\nCache L1d : 384 KiB (12 instances)\nCache L1i : 384 KiB (12 instances)\nCache L2 : 6 MiB (12 instances)\nCache L3 : 64 MiB (2 instances)\nNœud(s) NUMA : 1\nNœud NUMA 0 de processeur(s) : 0-23\nVulnérabilité Gather data sampling : Not affected\nVulnérabilité Indirect target selection : Not affected\nVulnérabilité Itlb multihit : Not affected\nVulnérabilité L1tf : Not affected\nVulnérabilité Mds : Not affected\nVulnérabilité Meltdown : Not affected\nVulnérabilité Mmio stale data : Not affected\nVulnérabilité Reg file data sampling : Not affected\nVulnérabilité Retbleed : Not affected\nVulnérabilité Spec rstack overflow : Mitigation; Safe RET\nVulnérabilité Spec store bypass : Mitigation; Speculative Store Bypass disabled via prctl\nVulnérabilité Spectre v1 : Mitigation; usercopy/swapgs barriers and __user pointer sanitization\nVulnérabilité Spectre v2 : Mitigation; Retpolines; IBPB conditional; IBRS_FW; STIBP always-on; RSB filling; PBRSB-eIBRS Not affected; BHI Not affected\nVulnérabilité Srbds : Not affected\nVulnérabilité Tsa : Vulnerable: Clear CPU buffers attempted, no microcode\nVulnérabilité Tsx async abort : Not affected\nVulnérabilité Vmscape : Mitigation; IBPB before exit to userspace\n"
}
},
"results": {
"cpu": {
"events_per_sec": 37450.175,
"events_per_sec_single": 5627.78,
"events_per_sec_multi": 69272.57,
"duration_s": 20.0004,
"score": 37450.175,
"score_single": 5627.78,
"score_multi": 69272.57
},
"memory": {
"throughput_mib_s": 8590.62,
"score": 8590.62
},
"disk": {
"read_mb_s": 1.0386428833007812,
"write_mb_s": 1.0381288528442383,
"iops_read": 272274.1,
"iops_write": 272139.4,
"latency_ms": 0.00043187100199999995,
"score": 1.0383858680725098
},
"network": {
"upload_mbps": 940.450413446252,
"download_mbps": 938.1880707104364,
"ping_ms": 0.369,
"jitter_ms": null,
"packet_loss_percent": null,
"score": 939.3192420783441
},
"gpu": {
"glmark2_score": null,
"score": null
},
"global_score": 77559.87001381449
},
"raw_info": {
"debug": "active",
"dmidecode": "# dmidecode 3.6\nGetting SMBIOS data from sysfs.\nSMBIOS 3.3.0 present.\n\nHandle 0x0000, DMI type 0, 26 bytes\nBIOS Information\n\tVendor: American Megatrends International, LLC.\n\tVersion: F65e\n\tRelease Date: 09/20/2023\n\tAddress: 0xF0000\n\tRuntime Size: 64 kB\n\tROM Size: 16 MB\n\tCharacteristics:\n\t\tPCI is supported\n\t\tBIOS is upgradeable\n\t\tBIOS shadowing is allowed\n\t\tBoot from CD is supported\n\t\tSelectable boot is supported\n\t\tBIOS ROM is socketed\n\t\tEDD is supported\n\t\tJapanese floppy for NEC 9800 1.2 MB is supported (int 13h)\n\t\tJapanese floppy for Toshiba 1.2 MB is supported (int 13h)\n\t\t5.25\"/360 kB floppy services are supported (int 13h)\n\t\t5.25\"/1.2 MB floppy services are supported (int 13h)\n\t\t3.5\"/720 kB floppy services are supported (int 13h)\n\t\t3.5\"/2.88 MB floppy services are supported (int 13h)\n\t\tPrint screen service is supported (int 5h)\n\t\tSerial services are supported (int 14h)\n\t\tPrinter services are supported (int 17h)\n\t\tCGA/mono video services are supported (int 10h)\n\t\tUSB legacy is supported\n\t\tBIOS boot specification is supported\n\t\tTargeted content distribution is supported\n\t\tUEFI is supported\n\tBIOS Revision: 5.17\n\nHandle 0x0001, DMI type 1, 27 bytes\nSystem Information\n\tManufacturer: Gigabyte Technology Co., Ltd.\n\tProduct Name: B450 AORUS ELITE\n\tVersion: Default string\n\tSerial Number: Default string\n\tUUID: 03c00218-044d-05b5-6506-740700080009\n\tWake-up Type: Power Switch\n\tSKU Number: Default string\n\tFamily: B450 MB\n\nHandle 0x0002, DMI type 2, 15 bytes\nBase Board Information\n\tManufacturer: Gigabyte Technology Co., Ltd.\n\tProduct Name: B450 AORUS ELITE\n\tVersion: Default string\n\tSerial Number: Default string\n\tAsset Tag: Default string\n\tFeatures:\n\t\tBoard is a hosting board\n\t\tBoard is replaceable\n\tLocation In Chassis: Default string\n\tChassis Handle: 0x0003\n\tType: Motherboard\n\tContained Object Handles: 0\n\nHandle 0x000B, DMI type 16, 23 bytes\nPhysical Memory Array\n\tLocation: System Board Or Motherboard\n\tUse: System Memory\n\tError Correction Type: None\n\tMaximum Capacity: 128 GB\n\tError Information Handle: 0x000A\n\tNumber Of Devices: 4\n\nHandle 0x0013, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0012\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 16 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 0\n\tBank Locator: P0 CHANNEL A\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: 00000000\n\tAsset Tag: Not Specified\n\tPart Number: CMW32GX4M2E3200C16 \n\tRank: 2\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: Unknown\n\tMaximum Voltage: Unknown\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 3, Hex 0x9E\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 16 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x0016, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0015\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 8 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 1\n\tBank Locator: P0 CHANNEL A\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: E3C4408B\n\tAsset Tag: Not Specified\n\tPart Number: BL8G32C16U4BL.M8FE\n\tRank: 1\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: 1.2 V\n\tMaximum Voltage: 1.2 V\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 6, Hex 0x9B\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 8 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x0019, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0018\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 16 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 0\n\tBank Locator: P0 CHANNEL B\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: 00000000\n\tAsset Tag: Not Specified\n\tPart Number: CMW32GX4M2E3200C16 \n\tRank: 2\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: Unknown\n\tMaximum Voltage: Unknown\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 3, Hex 0x9E\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 16 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x001C, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x001B\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 8 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 1\n\tBank Locator: P0 CHANNEL B\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: E3C44087\n\tAsset Tag: Not Specified\n\tPart Number: BL8G32C16U4BL.M8FE\n\tRank: 1\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: 1.2 V\n\tMaximum Voltage: 1.2 V\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 6, Hex 0x9B\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 8 GB\n\tCache Size: None\n\tLogical Size: None\n\n",
"lsblk": "NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS\nloop0 7:0 0 118,5M 1 loop /snap/iptvnator/92\nloop1 7:1 0 48,1M 1 loop /snap/snapd/25935\nloop2 7:2 0 50,9M 1 loop /snap/snapd/25577\nloop3 7:3 0 4K 1 loop /snap/bare/5\nloop4 7:4 0 91,7M 1 loop /snap/gtk-common-themes/1535\nloop5 7:5 0 55,5M 1 loop /snap/core18/2976\nloop6 7:6 0 164,8M 1 loop /snap/gnome-3-28-1804/198\nloop7 7:7 0 0B 0 loop \nsda 8:0 0 447,1G 0 disk \n└─sda1 8:1 0 447,1G 0 part \nsdb 8:16 1 0B 0 disk \nsdc 8:32 1 0B 0 disk \nsdd 8:48 1 0B 0 disk \nsde 8:64 1 0B 0 disk \nnvme0n1 259:0 0 465,8G 0 disk \n├─nvme0n1p1 259:1 0 976M 0 part /boot/efi\n├─nvme0n1p2 259:2 0 440,8G 0 part /\n└─nvme0n1p3 259:3 0 24G 0 part [SWAP]\nnvme1n1 259:4 0 465,8G 0 disk \n├─nvme1n1p1 259:5 0 50M 0 part \n├─nvme1n1p2 259:6 0 464,3G 0 part \n├─nvme1n1p3 259:7 0 808M 0 part \n├─nvme1n1p4 259:8 0 100M 0 part \n└─nvme1n1p5 259:9 0 522M 0 part \n",
"lscpu": "Architecture : x86_64\nMode(s) opératoire(s) des processeurs : 32-bit, 64-bit\nTailles des adresses: 48 bits physical, 48 bits virtual\nBoutisme : Little Endian\nProcesseur(s) : 24\nListe de processeur(s) en ligne : 0-23\nIdentifiant constructeur : AuthenticAMD\nNom de modèle : AMD Ryzen 9 5900X 12-Core Processor\nFamille de processeur : 25\nModèle : 33\nThread(s) par cœur : 2\nCœur(s) par socket : 12\nSocket(s) : 1\nRévision : 2\nAccroissement de fréquence : activé\nmultiplication des MHz du/des CPU(s) : 77%\nVitesse maximale du processeur en MHz : 4951,0000\nVitesse minimale du processeur en MHz : 550,0000\nBogoMIPS : 7399,98\nDrapeaux : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local user_shstk clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm debug_swap\nVirtualisation : AMD-V\nCache L1d : 384 KiB (12 instances)\nCache L1i : 384 KiB (12 instances)\nCache L2 : 6 MiB (12 instances)\nCache L3 : 64 MiB (2 instances)\nNœud(s) NUMA : 1\nNœud NUMA 0 de processeur(s) : 0-23\nVulnérabilité Gather data sampling : Not affected\nVulnérabilité Indirect target selection : Not affected\nVulnérabilité Itlb multihit : Not affected\nVulnérabilité L1tf : Not affected\nVulnérabilité Mds : Not affected\nVulnérabilité Meltdown : Not affected\nVulnérabilité Mmio stale data : Not affected\nVulnérabilité Reg file data sampling : Not affected\nVulnérabilité Retbleed : Not affected\nVulnérabilité Spec rstack overflow : Mitigation; Safe RET\nVulnérabilité Spec store bypass : Mitigation; Speculative Store Bypass disabled via prctl\nVulnérabilité Spectre v1 : Mitigation; usercopy/swapgs barriers and __user pointer sanitization\nVulnérabilité Spectre v2 : Mitigation; Retpolines; IBPB conditional; IBRS_FW; STIBP always-on; RSB filling; PBRSB-eIBRS Not affected; BHI Not affected\nVulnérabilité Srbds : Not affected\nVulnérabilité Tsa : Vulnerable: Clear CPU buffers attempted, no microcode\nVulnérabilité Tsx async abort : Not affected\nVulnérabilité Vmscape : Mitigation; IBPB before exit to userspace\n"
}
}
[DEBUG] Payload sauvegardé au format JSON dans bench_payload_last.json (39380 octets)
[DEBUG] Contenu de /home/gilles/Documents/vscode/bis/bench_go/config.yaml :
# bench-client config.yaml
# Objectif: décrire précisément
# - les outils à utiliser (et exigences d'installation)
# - les informations à collecter
# - les benchmarks à exécuter
# - les paramètres (timeouts, limites, endpoints, debug)
#
# Le binaire (Go/Rust) charge ce fichier depuis HTTP(S), valide les bornes, applique des defaults sûrs,
# et peut fallback sur une config locale si indisponible.
config_version: 1
profile: default
backend:
# URL finale du POST (le programme peut aussi accepter server_base_url + path)
url: "http://10.0.0.50:8007/api/benchmark"
# Auth: idéalement injecté par variable d'env sur le client; éviter de mettre le token dans la config distante.
auth:
mode: bearer_env
env_var: "test_hardware_perf"
http:
timeout_s: 15
retries: 2
retry_backoff_s: 2
tls:
verify: true
remote_config:
# Options de cache/ETag si le binaire gère le rafraîchissement
cache_path: "/var/cache/bench-client/config.yaml"
use_etag: true
refresh_max_age_s: 86400
runtime:
# Timeouts globaux de sécurité
max_total_runtime_s: 480
command_timeout_s: 30
command_timeout_overrides:
dmidecode_s: 20
smartctl_s: 10
lsblk_s: 10
sysbench_cpu_s: 120
sysbench_mem_s: 60
fio_s: 120
iperf3_s: 20
temp_dir: "/tmp"
locale: "C"
path_prepend:
- "/usr/sbin"
- "/sbin"
logging:
level: info # trace|debug|info|warn|error
progress: true # affichage étapes (1/N) + items
show_command_lines: false
capture_raw_output: true # remonte dans raw_info (attention taille)
raw_output_max_kb: 5120
save_payload_to_tmp: true
payload_tmp_dir: "/tmp"
payload_filename_prefix: "bench_payload_"
interactive_pause_on_debug: true
payload:
dir: "."
prefix: "bench_payload_"
always_save: true
device_identity:
# device_identifier envoyé au backend
prefer:
- hostname
- machine_id
hostname_command: "hostname"
machine_id_path: "/etc/machine-id"
dependencies:
# Liste des programmes externes (installés par le script shell)
# Le binaire doit pouvoir:
# - détecter présence/version (optionnel)
# - marquer chaque "feature" comme disponible ou non
required_base:
- name: "curl"
purpose: "Téléchargements/diagnostics (souvent côté script)"
- name: "jq"
purpose: "Optionnel: debug/validation (souvent côté script, pas nécessaire au binaire)"
- name: "lscpu"
purpose: "Infos CPU"
- name: "free"
purpose: "Infos mémoire"
- name: "lsblk"
purpose: "Infos stockage/partitions"
- name: "ip"
purpose: "Interfaces réseau, adresses IP"
- name: "bc"
purpose: "Optionnel: calculs (si pas fait en code)"
- name: "dmidecode"
purpose: "Infos BIOS/carte mère/RAM/DMI"
requires_root: true
- name: "smartctl"
package: "smartmontools"
purpose: "Infos disques SMART"
requires_root: true
- name: "ethtool"
purpose: "Vitesse réseau, Wake-on-LAN, driver"
requires_root: true
- name: "lspci"
package: "pciutils"
purpose: "Liste périphériques PCI (GPU/Audio/etc.)"
- name: "lsusb"
package: "usbutils"
purpose: "Liste périphériques USB"
- name: "aplay"
package: "alsa-utils"
purpose: "Inventaire audio ALSA"
- name: "arecord"
package: "alsa-utils"
purpose: "Inventaire capture ALSA"
- name: "pactl"
package: "pulseaudio-utils"
purpose: "Infos audio PulseAudio/PipeWire (si dispo)"
- name: "iw"
package: "iw"
purpose: "SSID + bitrate Wi-Fi"
- name: "loginctl"
package: "systemd"
purpose: "Type de session (x11/wayland/tty)"
- name: "xrandr"
package: "x11-xserver-utils"
purpose: "Résolution écran (X11)"
- name: "xdpyinfo"
package: "x11-utils"
purpose: "Résolution écran (fallback X11)"
- name: "swaymsg"
package: "sway"
purpose: "Résolution écran (Wayland/Sway)"
- name: "nvidia-smi"
package: "nvidia-utils"
purpose: "Infos GPU NVIDIA (si présent)"
- name: "systemd-detect-virt"
package: "systemd"
purpose: "Détection virtualisation/proxmox"
- name: "pveversion"
package: "pve-manager"
purpose: "Détection hôte Proxmox (si présent)"
benchmark_tools:
- name: "sysbench"
purpose: "Bench CPU et mémoire"
- name: "fio"
purpose: "Bench disque"
- name: "iperf3"
purpose: "Bench réseau"
- name: "ping"
package: "iputils-ping"
purpose: "Vérifier accessibilité iperf server"
- name: "nc"
package: "netcat-openbsd"
purpose: "Tester port 5201 iperf3"
collection:
# Liste des infos à récupérer, structurées comme dans ton script.
system:
enabled: true
items:
- hostname
- os_id
- os_version
- kernel_version
- architecture
- session_type # XDG_SESSION_TYPE / loginctl / DISPLAY / WAYLAND_DISPLAY
- screen_resolution # xrandr/xdpyinfo/swaymsg
- last_boot_time # who -b
- uptime_seconds # /proc/uptime
- battery_percentage # /sys/class/power_supply/BAT*/capacity
- battery_status # /sys/class/power_supply/BAT*/status
- battery_health # /sys/class/power_supply/BAT*/health ou uevent
- virtualization # systemd-detect-virt + proxmox hints
virtualization_detection:
enabled: true
proxmox:
detect_host_by:
- pveversion
- "/etc/pve"
detect_guest_by:
- systemd_detect_virt
- qemu_guest_agent
- dmidecode_manufacturer_product_matches: ["qemu", "proxmox"]
capture:
- is_proxmox_host
- is_proxmox_guest
- proxmox_version
- virtualization_type
cpu:
enabled: true
source:
primary: lscpu
supplement_dmidecode: true
items:
- vendor
- model
- cores_physical # cores_per_socket * sockets
- threads # nproc
- base_freq_ghz # lscpu CPU MHz -> GHz
- max_freq_ghz # lscpu CPU max MHz -> GHz
- cache_l1_kb
- cache_l2_kb
- cache_l3_kb
- flags # CPU flags list
- microarchitecture # depuis dmidecode type 4 (Family) si manquant
raw_capture:
- lscpu_output
ram:
enabled: true
sources:
- free
- dmidecode
items:
- total_mb
- used_mb
- free_mb
- shared_mb
- slots_total # dmidecode -t 16
- slots_used # dmidecode -t 17
- max_capacity_mb # dmidecode -t 16 Maximum Capacity
- ecc # dmidecode -t memory Error Correction Type
- layout # par slot: locator, size, type, speed, configured_speed, form_factor, type_detail, rank, manufacturer, part_number
raw_capture:
- dmidecode_full
gpu:
enabled: true
sources:
- lspci
- nvidia_smi_optional
items:
- vendor # NVIDIA/AMD/Intel/Unknown
- model # lspci vga/3d ou nvidia-smi name
- memory_dedicated_mb # nvidia-smi (si dispo)
- driver_version # nvidia-smi (si dispo)
motherboard_bios:
enabled: true
source: dmidecode
items:
- baseboard_manufacturer
- baseboard_product_name
- bios_vendor
- bios_version
- bios_release_date
pci_devices:
enabled: true
source: lspci
items:
- slot
- class
- vendor
- device
usb_devices:
enabled: true
source: lsusb
items:
- bus
- device
- vendor_id
- product_id
- name
audio:
enabled: true
sources:
- lspci
- alsa
- pactl_optional
items:
hardware:
- pci_audio_devices # lspci audio
- alsa_playback # aplay -l
- alsa_capture # arecord -l
- pcm_devices # aplay -L
software:
- backend # pipewire/pulseaudio/alsa
- server_name
- server_version
- default_sink
- default_source
- sinks
- sources
storage:
enabled: true
sources:
- lsblk
- smartctl
devices:
enumerate_by: "lsblk_disks" # lsblk -d -n -o NAME,TYPE
include_removable: false
items:
- device # /dev/sda
- model # smartctl -i
- serial # smartctl -i
- size # lsblk
- type # rota -> ssd/hdd
- interface # tran
- temperature_c # smartctl -A
- smart_health # smartctl -H
partitions:
enabled: true
source: lsblk_json
items:
- name
- mount_point
- fs_type
- total_gb
- used_gb
- free_gb
raw_capture:
- lsblk_output
network_shares:
enabled: true
source: "/proc/mounts"
detect_fs_types:
- nfs
- nfs4
- cifs
- smbfs
- fuse.cifs
- fuse.smbfs
- afp
- afpfs
- fuse.afpfs
- sshfs
- fuse.sshfs
- ftpfs
- curlftpfs
- fuse.ftpfs
- davfs
- davfs2
- fuse.webdavfs
items:
- protocol
- source
- mount_point
- fs_type
- options
- total_gb
- used_gb
- free_gb
network:
enabled: true
sources:
- ip
- ethtool
- iw_optional
interface_filter:
# reprise logique script: UP|UNKNOWN sauf interfaces virtuelles connues
include_states: ["UP", "UNKNOWN"]
exclude_name_prefixes: ["lo", "docker", "br-", "veth", "tap", "fw"]
items:
- name
- type # bridge|ethernet|wifi|unknown
- mac
- ip_address
- speed_mbps # ethtool speed ou iw tx bitrate
- driver # ethtool -i ou /sys/.../driver
- ssid # iw dev link
- wake_on_lan # ethtool Wake-on
raw_info:
enabled: true
include:
- lscpu
- lsblk
- dmidecode
max_size_kb: 5120
benchmarks:
enabled: true
# Pondérations identiques à ton script (si résultat dispo)
weights:
cpu: 0.40
memory: 0.20
disk: 0.20
network: 0.10
gpu: 0.10
cpu_sysbench:
enabled: true
tool: sysbench
params:
cpu_max_prime: 20000
single_thread: 1
multi_threads: "all" # all -> nproc
outputs:
- events_per_sec_single
- events_per_sec_multi
- duration_s
- score_single
- score_multi
- score_global
memory_sysbench:
enabled: true
tool: sysbench
params:
total_size: "1G"
outputs:
- throughput_mib_s
- score
disk_fio:
enabled: true
tool: fio
safety:
# Empêcher un bench destructif ou trop long
max_runtime_s: 60
max_size: "1G"
direct: 1
params:
name: "bench"
ioengine: "libaio"
rw: "randrw"
bs: "4k"
size: "500M"
numjobs: 1
runtime_s: 30
time_based: true
output_format: "json"
outputs:
- read_mb_s
- write_mb_s
- iops_read
- iops_write
- latency_ms
- score
network_iperf3:
enabled: true
tool: iperf3
server: "10.0.0.50"
port: 5201
prechecks:
ping:
enabled: true
count: 1
timeout_s: 1
port_check:
enabled: true
tool: nc
timeout_s: 2
params:
duration_s: 10
bidir: true
json: true
outputs:
- upload_mbps
- download_mbps
- ping_ms
- score
# placeholders (comme ton script)
- jitter_ms
- packet_loss_percent
gpu:
enabled: false
note: "GPU bench non implémenté dans le script d'origine (placeholder)."
payload_mapping:
# Le binaire peut mapper ses structures internes vers le schéma backend actuel.
# Utile si ton backend attend des champs précis.
device_identifier: "system.hostname"
bench_script_version_field: "bench_client_version"
include_sections:
- hardware
- results
- raw_info
limits:
# Bornes générales de sécurité (validation côté client)
max_payload_kb: 1024
max_raw_info_kb: 5120
max_fio_runtime_s: 60
max_fio_size_bytes: 1073741824 # 1 GiB
max_sysbench_cpu_prime: 50000
max_iperf_duration_s: 30
features:
# Permet d'activer/désactiver rapidement des blocs selon machines
enable_screen_resolution_detection: true
enable_battery_detection: true
enable_network_share_detection: true
enable_audio_detection: true
enable_proxmox_detection: true
[DEBUG] Config chargée : {ConfigVersion:1 Backend:{URL:http://10.0.0.50:8007/api/benchmark Auth:{Mode:bearer_env EnvVar:test_hardware_perf} HTTP:{TimeoutS:15 Retries:2 RetryBackoffS:2 TLSVerify:false}} Runtime:{MaxTotalRuntime:480 CommandTimeout:30 TempDir:/tmp Locale:C PathPrepend:[/usr/sbin /sbin]} Logging:{Level:info Progress:true ShowCommandLines:false CaptureRawOutput:true RawOutputMaxKB:5120 SavePayloadToTmp:true PayloadTmpDir:/tmp PayloadFilenamePrefix:bench_payload_ InteractiveDebugPause:true} Payload:{Dir:. Prefix:bench_payload_ Always:true} Benchmarks:{Enabled:true Weights:map[cpu:0.4 disk:0.2 gpu:0.1 memory:0.2 network:0.1] CPU:{Enabled:true Tool:sysbench Server: Port:0 Params:map[cpu_max_prime:20000 multi_threads:all single_thread:1] Safety:map[]} Memory:{Enabled:true Tool:sysbench Server: Port:0 Params:map[total_size:1G] Safety:map[]} Disk:{Enabled:true Tool:fio Server: Port:0 Params:map[bs:4k ioengine:libaio name:bench numjobs:1 output_format:json runtime_s:30 rw:randrw size:500M time_based:true] Safety:map[direct:1 max_runtime_s:60 max_size:1G]} Network:{Enabled:true Tool:iperf3 Server:10.0.0.50 Port:5201 Params:map[bidir:true duration_s:10 json:true] Safety:map[]}} Collection:{System:{Enabled:true} CPU:{Enabled:true} RAM:{Enabled:true} Storage:{Enabled:true} Network:{Enabled:true} GPU:{Enabled:true} Audio:{Enabled:true} PCI:{Enabled:true} USB:{Enabled:true}} RawInfo:{Enabled:true Include:[lscpu lsblk dmidecode] MaxSizeKB:5120}}
[DEBUG] Configuration complète : {ConfigVersion:1 Backend:{URL:http://10.0.0.50:8007/api/benchmark Auth:{Mode:bearer_env EnvVar:test_hardware_perf} HTTP:{TimeoutS:15 Retries:2 RetryBackoffS:2 TLSVerify:false}} Runtime:{MaxTotalRuntime:480 CommandTimeout:30 TempDir:/tmp Locale:C PathPrepend:[/usr/sbin /sbin]} Logging:{Level:info Progress:true ShowCommandLines:false CaptureRawOutput:true RawOutputMaxKB:5120 SavePayloadToTmp:true PayloadTmpDir:/tmp PayloadFilenamePrefix:bench_payload_ InteractiveDebugPause:true} Payload:{Dir:. Prefix:bench_payload_ Always:true} Benchmarks:{Enabled:true Weights:map[cpu:0.4 disk:0.2 gpu:0.1 memory:0.2 network:0.1] CPU:{Enabled:true Tool:sysbench Server: Port:0 Params:map[cpu_max_prime:20000 multi_threads:all single_thread:1] Safety:map[]} Memory:{Enabled:true Tool:sysbench Server: Port:0 Params:map[total_size:1G] Safety:map[]} Disk:{Enabled:true Tool:fio Server: Port:0 Params:map[bs:4k ioengine:libaio name:bench numjobs:1 output_format:json runtime_s:30 rw:randrw size:500M time_based:true] Safety:map[direct:1 max_runtime_s:60 max_size:1G]} Network:{Enabled:true Tool:iperf3 Server:10.0.0.50 Port:5201 Params:map[bidir:true duration_s:10 json:true] Safety:map[]}} Collection:{System:{Enabled:true} CPU:{Enabled:true} RAM:{Enabled:true} Storage:{Enabled:true} Network:{Enabled:true} GPU:{Enabled:true} Audio:{Enabled:true} PCI:{Enabled:true} USB:{Enabled:true}} RawInfo:{Enabled:true Include:[lscpu lsblk dmidecode] MaxSizeKB:5120}}
[DEBUG] [2/6] Début collecte CPU
[DEBUG] Exec: dmidecode [-t 4]
[DEBUG] [2/6] Détails CPU: {Vendor:AuthenticAMD Model:AMD Ryzen 9 5900X 12-Core Processor Cores:12 Threads:24 BaseFreqGHz:4.951 MaxFreqGHz:4.951 CacheL1KB:768 CacheL2KB:6144 CacheL3KB:32768 Flags:[fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local user_shstk clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm debug_swap] Microarchitecture:Zen TDPW:<nil>}
[DEBUG] [2/6] Début collecte RAM
[DEBUG] SMBIOS détecté : SMBIOS 3.3.0 (54 tables)
[DEBUG] Module SMBIOS détecté : DIMM 0 {Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 }
[DEBUG] Module SMBIOS détecté : DIMM 1 {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE}
[DEBUG] Module SMBIOS détecté : DIMM 0 {Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 }
[DEBUG] Module SMBIOS détecté : DIMM 1 {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE}
[DEBUG] Mémoire SMBIOS : slots_total=10 slots_used=4 ecc=false max=0MB
[DEBUG] [2/6] Détails RAM: {TotalMB:48096 UsedMB:16281 FreeMB:31815 SharedMB:986 SlotsTotal:10 SlotsUsed:4 MaxCapacityMB:48096 ECC:false Layout:[{Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 } {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE} {Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 } {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE}]}
[DEBUG] [2/6] Début collecte GPU
[DEBUG] Exec: lspci []
[DEBUG] Exec: nvidia-smi [--query-gpu=name,driver_version,memory.total --format=csv,noheader,nounits]
[DEBUG] [2/6] Détails GPU: {Vendor:NVIDIA Model:NVIDIA GeForce RTX 3060 DriverVersion:550.163.01 MemoryDedicatedMB:0xc0002dd938 MemorySharedMB:<nil> APISupport:[]}
[DEBUG] [2/6] Début collecte stockage
[DEBUG] Exec: lsblk [-J -b -o NAME,TYPE,TRAN,VENDOR,MODEL,SERIAL,SIZE]
[DEBUG] SMART open /dev/sde impossible: unknown drive type
[DEBUG] SMART open /dev/sdb impossible: unknown drive type
[DEBUG] SMART open /dev/sdc impossible: unknown drive type
[DEBUG] SMART open /dev/sdd impossible: unknown drive type
[DEBUG] [2/6] Détails stockage: {Devices:[{Name:/dev/nvme0n1 Type:ssd Interface:nvme CapacityGB:465.7617416381836 Vendor:CT500P2SSD8 Model:CT500P2SSD8 Serial:2138E5D60DD8 SmartHealth:PASSED Temperature:33} {Name:/dev/nvme1n1 Type: Interface:nvme CapacityGB:465.7617416381836 Vendor:CT500P2SSD8 Model:CT500P2SSD8 Serial:2108E4FD258D SmartHealth:PASSED Temperature:33} {Name:/dev/sda Type: Interface:sata CapacityGB:447.13167572021484 Vendor:ATA Model:KINGSTON SUV500480G Serial:50026B768226A365 SmartHealth:PASSED Temperature:25} {Name:/dev/sdb Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:Compact Flash Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sdc Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:SD/MMC Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sdd Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:MS/MS-PRO Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sde Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:xD-Picture Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0}] Partitions:[{Name:/dev/nvme0n1p2 MountPoint:/ FSType:ext4 TotalGB:432.80120849609375 UsedGB:0xc0002ddbf8 FreeGB:0xc0002ddc00} {Name:/dev/nvme0n1p1 MountPoint:/boot/efi FSType:vfat TotalGB:0.9512481689453125 UsedGB:0xc0002ddc08 FreeGB:0xc0002ddc40}]}
[DEBUG] [2/6] Début collecte PCI devices
[DEBUG] Exec: lspci [-mm]
[DEBUG] [2/6] Détails PCI: [{Slot:Host bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:Starship/Matisse Root Complex Device:Advanced Micro Devices, Inc. [AMD]} {Slot:IOMMU Class:Advanced Micro Devices, Inc. [AMD] Vendor:Starship/Matisse IOMMU Device:Advanced Micro Devices, Inc. [AMD]} {Slot:Host bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:Starship/Matisse PCIe Dummy Host Bridge Device: } {Slot:PCI bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:Starship/Matisse GPP Bridge Device:Advanced Micro Devices, Inc. [AMD]} {Slot:PCI bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:Starship/Matisse GPP Bridge Device:Advanced Micro Devices, Inc. [AMD]} {Slot:Host bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:Starship/Matisse PCIe Dummy Host Bridge Device: } {Slot:Host bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:Starship/Matisse PCIe Dummy Host Bridge Device: } {Slot:PCI bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:Starship/Matisse GPP Bridge Device:Advanced Micro Devices, Inc. [AMD]} {Slot:Host bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:Starship/Matisse PCIe Dummy Host Bridge Device: } {Slot:Host bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:Starship/Matisse PCIe Dummy Host Bridge Device: } {Slot:Host bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:Starship/Matisse PCIe Dummy Host Bridge Device: } {Slot:PCI bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B] Device:Advanced Micro Devices, Inc. [AMD]} {Slot:Host bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:Starship/Matisse PCIe Dummy Host Bridge Device: } {Slot:PCI bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B] Device:Advanced Micro Devices, Inc. [AMD]} {Slot:SMBus Class:Advanced Micro Devices, Inc. [AMD] Vendor:FCH SMBus Controller Device:Gigabyte Technology Co., Ltd} {Slot:ISA bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:FCH LPC Bridge Device:Gigabyte Technology Co., Ltd} {Slot:Host bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:Matisse/Vermeer Data Fabric: Device 18h; Function 0 Device: } {Slot:Host bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:Matisse/Vermeer Data Fabric: Device 18h; Function 1 Device: } {Slot:Host bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:Matisse/Vermeer Data Fabric: Device 18h; Function 2 Device: } {Slot:Host bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:Matisse/Vermeer Data Fabric: Device 18h; Function 3 Device: } {Slot:Host bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:Matisse/Vermeer Data Fabric: Device 18h; Function 4 Device: } {Slot:Host bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:Matisse/Vermeer Data Fabric: Device 18h; Function 5 Device: } {Slot:Host bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:Matisse/Vermeer Data Fabric: Device 18h; Function 6 Device: } {Slot:Host bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:Matisse/Vermeer Data Fabric: Device 18h; Function 7 Device: } {Slot:Non-Volatile memory controller Class:Micron/Crucial Technology Vendor:P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less) Device:Micron/Crucial Technology} {Slot:USB controller Class:Advanced Micro Devices, Inc. [AMD] Vendor:400 Series Chipset USB 3.1 xHCI Compliant Host Controller Device:ASMedia Technology Inc.} {Slot:SATA controller Class:Advanced Micro Devices, Inc. [AMD] Vendor:400 Series Chipset SATA Controller Device:ASMedia Technology Inc.} {Slot:PCI bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:400 Series Chipset PCIe Bridge Device:ASMedia Technology Inc.} {Slot:PCI bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:400 Series Chipset PCIe Port Device:ASMedia Technology Inc.} {Slot:PCI bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:400 Series Chipset PCIe Port Device:ASMedia Technology Inc.} {Slot:PCI bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:400 Series Chipset PCIe Port Device:ASMedia Technology Inc.} {Slot:PCI bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:400 Series Chipset PCIe Port Device:ASMedia Technology Inc.} {Slot:Ethernet controller Class:Realtek Semiconductor Co., Ltd. Vendor:RTL8111/8168/8211/8411 PCI Express Gigabit Ethernet Controller Device:Gigabyte Technology Co., Ltd} {Slot:Non-Volatile memory controller Class:Micron/Crucial Technology Vendor:P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less) Device:Micron/Crucial Technology} {Slot:VGA compatible controller Class:NVIDIA Corporation Vendor:GA106 [GeForce RTX 3060 Lite Hash Rate] Device:Gigabyte Technology Co., Ltd} {Slot:Audio device Class:NVIDIA Corporation Vendor:GA106 High Definition Audio Controller Device:Gigabyte Technology Co., Ltd} {Slot:Non-Essential Instrumentation [1300] Class:Advanced Micro Devices, Inc. [AMD] Vendor:Starship/Matisse PCIe Dummy Function Device:Advanced Micro Devices, Inc. [AMD]} {Slot:Non-Essential Instrumentation [1300] Class:Advanced Micro Devices, Inc. [AMD] Vendor:Starship/Matisse Reserved SPP Device:Advanced Micro Devices, Inc. [AMD]} {Slot:Encryption controller Class:Advanced Micro Devices, Inc. [AMD] Vendor:Starship/Matisse Cryptographic Coprocessor PSPCPP Device:Advanced Micro Devices, Inc. [AMD]} {Slot:USB controller Class:Advanced Micro Devices, Inc. [AMD] Vendor:Matisse USB 3.0 Host Controller Device:Gigabyte Technology Co., Ltd} {Slot:Audio device Class:Advanced Micro Devices, Inc. [AMD] Vendor:Starship/Matisse HD Audio Controller Device:Gigabyte Technology Co., Ltd}]
[DEBUG] [2/6] Début collecte USB devices
[DEBUG] Exec: lsusb []
[DEBUG] [2/6] Détails USB: [{Bus:001 Device:001 VendorID:1d6b ProductID:0002 Name:Linux Foundation 2.0 root hub} {Bus:001 Device:002 VendorID:058f ProductID:6362 Name:Alcor Micro Corp. Flash Card Reader/Writer} {Bus:002 Device:001 VendorID:1d6b ProductID:0003 Name:Linux Foundation 3.0 root hub} {Bus:003 Device:001 VendorID:1d6b ProductID:0002 Name:Linux Foundation 2.0 root hub} {Bus:003 Device:003 VendorID:046d ProductID:c52b Name:Logitech, Inc. Unifying Receiver} {Bus:003 Device:004 VendorID:0bda ProductID:b711 Name:Realtek Semiconductor Corp. RTL8188GU 802.11n WLAN Adapter (After Modeswitch)} {Bus:004 Device:001 VendorID:1d6b ProductID:0003 Name:Linux Foundation 3.0 root hub}]
[DEBUG] [2/6] Début collecte partages réseau
[DEBUG] [2/6] Détails partages réseau: []
[DEBUG] [2/6] Début collecte interfaces réseau
[DEBUG] Exec: ethtool [eno1]
[DEBUG] Exec: ethtool [-i eno1]
[DEBUG] Exec: ethtool [wlxe84e06a6c1fc]
[DEBUG] Exec: ethtool [-i wlxe84e06a6c1fc]
[DEBUG] Exec: iwgetid [wlxe84e06a6c1fc -r]
[DEBUG] Exec: iw [wlxe84e06a6c1fc link]
[DEBUG] [2/6] Détails réseau: {Interfaces:[{Name:eno1 Type:ethernet MAC:18:c0:4d:b5:65:74 IP:10.0.1.109 SpeedMbps:0xc000300588 Driver:r8169 SSID: WakeOnLAN:false} {Name:wlxe84e06a6c1fc Type:wifi MAC:06:06:19:aa:1b:c8 IP: SpeedMbps:<nil> Driver:rtl8xxxu SSID: WakeOnLAN:false}]}
[DEBUG] [2/6] Début collecte carte mère
[DEBUG] Exec: dmidecode [-t 2]
[DEBUG] Exec: dmidecode [-t 0]
[DEBUG] [2/6] Détails carte mère: {Vendor:Gigabyte Technology Co., Ltd. Model:B450 AORUS ELITE BIOSVendor:American Megatrends International, LLC. BIOSVersion:F65e BIOSDate:09/20/2023}
[DEBUG] [2/6] Début collecte OS
[DEBUG] Exec: uname [-r]
[DEBUG] Exec: uname [-m]
[DEBUG] Exec: systemd-detect-virt []
[DEBUG] Exec: xrandr []
[DEBUG] Exec: xrandr [--current]
[DEBUG] Exec: who [-b]
[DEBUG] [2/6] Détails OS: {Name:Debian GNU/Linux Version:13 (trixie) KernelVersion:6.12.57+deb13-amd64 Architecture:x86_64 SessionType: DisplayServer: ScreenResolution:5560 x 1920 LastBootTime:démarrage système 2026-01-11 09:11 UptimeSeconds:40816.12 BatteryPercentage:<nil> BatteryStatus: BatteryHealth: Hostname:aorus VirtualizationType:kvm-host DesktopEnvironment:GNOME}
[DEBUG] [2/6] Début collecte capteurs
[DEBUG] [2/6] Détails capteurs: {CPUTempC:<nil> DiskTempsC:map[nvme-pci-0100:Composite:32.85 nvme-pci-0700:Composite:32.85] Sensors:[{Chip:nvme-pci-0100 Name:Composite Type:temperature Value:32.85 Unit:°C Alarm:false} {Chip:nvme-pci-0700 Name:Composite Type:temperature Value:32.85 Unit:°C Alarm:false} {Chip:acpitz-acpi-0 Name:temp1 Type:temperature Value:16.8 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tctl Type:temperature Value:37 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tccd1 Type:temperature Value:40.75 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tccd2 Type:temperature Value:30.5 Unit:°C Alarm:false}]}
[DEBUG] [2/6] Début collecte audio
[DEBUG] Exec: lspci []
[DEBUG] Exec: aplay [-l]
[DEBUG] Exec: arecord [-l]
[DEBUG] Exec: aplay [-L]
[DEBUG] Exec: pactl [info]
[DEBUG] [2/6] Détails audio: {Hardware:{PCIAudioDevices:[08:00.1 Audio device: NVIDIA Corporation GA106 High Definition Audio Controller (rev a1) 0a:00.4 Audio device: Advanced Micro Devices, Inc. [AMD] Starship/Matisse HD Audio Controller] AlsaPlayback:**** Liste des périphériques matériels PLAYBACK ****
carte 0 : NVidia [HDA NVidia], périphérique 3 : HDMI 0 [LG ULTRAWIDE]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 7 : HDMI 1 [K243Y]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 8 : HDMI 2 [HDMI 2]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 9 : HDMI 3 [HDMI 3]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]
Sous-périphériques : 0/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 1 : ALC892 Digital [ALC892 Digital]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
AlsaCapture:**** Liste des périphériques matériels CAPTURE ****
carte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 2 : ALC892 Alt Analog [ALC892 Alt Analog]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
PCMDevices:[null Discard all samples (playback) or generate zero samples (capture) pipewire PipeWire Sound Server default Default ALSA Output (currently PipeWire Media Server) hw:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Direct hardware device without any conversions hw:CARD=NVidia,DEV=7 HDA NVidia, K243Y Direct hardware device without any conversions hw:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Direct hardware device without any conversions hw:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Direct hardware device without any conversions plughw:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Hardware device with all software conversions plughw:CARD=NVidia,DEV=7 HDA NVidia, K243Y Hardware device with all software conversions plughw:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Hardware device with all software conversions plughw:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Hardware device with all software conversions hdmi:CARD=NVidia,DEV=0 HDA NVidia, LG ULTRAWIDE HDMI Audio Output hdmi:CARD=NVidia,DEV=1 HDA NVidia, K243Y HDMI Audio Output hdmi:CARD=NVidia,DEV=2 HDA NVidia, HDMI 2 HDMI Audio Output hdmi:CARD=NVidia,DEV=3 HDA NVidia, HDMI 3 HDMI Audio Output dmix:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Direct sample mixing device dmix:CARD=NVidia,DEV=7 HDA NVidia, K243Y Direct sample mixing device dmix:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Direct sample mixing device dmix:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Direct sample mixing device hw:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Direct hardware device without any conversions hw:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Direct hardware device without any conversions plughw:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Hardware device with all software conversions plughw:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Hardware device with all software conversions sysdefault:CARD=Generic HD-Audio Generic, ALC892 Analog Default Audio Device front:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Front output / input surround21:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 2.1 Surround output to Front and Subwoofer speakers surround40:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 4.0 Surround output to Front and Rear speakers surround41:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 4.1 Surround output to Front, Rear and Subwoofer speakers surround50:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 5.0 Surround output to Front, Center and Rear speakers surround51:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 5.1 Surround output to Front, Center, Rear and Subwoofer speakers surround71:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 7.1 Surround output to Front, Center, Side, Rear and Woofer speakers iec958:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Digital IEC958 (S/PDIF) Digital Audio Output dmix:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Direct sample mixing device dmix:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Direct sample mixing device]} Software:{Backend: ServerName: ServerVersion: DefaultSink:<nil> DefaultSource:<nil> Sinks:[] Sources:[]}}
[DEBUG] Exec: lscpu []
[DEBUG] Exec: lsblk [-a]
[DEBUG] Exec: dmidecode [-t 0,1,2,16,17]
[DEBUG] Matériel collecté : {CPU:{Vendor:AuthenticAMD Model:AMD Ryzen 9 5900X 12-Core Processor Cores:12 Threads:24 BaseFreqGHz:4.951 MaxFreqGHz:4.951 CacheL1KB:768 CacheL2KB:6144 CacheL3KB:32768 Flags:[fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local user_shstk clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm debug_swap] Microarchitecture:Zen TDPW:<nil>} RAM:{TotalMB:48096 UsedMB:16281 FreeMB:31815 SharedMB:986 SlotsTotal:10 SlotsUsed:4 MaxCapacityMB:48096 ECC:false Layout:[{Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 } {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE} {Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 } {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE}]} GPU:{Vendor:NVIDIA Model:NVIDIA GeForce RTX 3060 DriverVersion:550.163.01 MemoryDedicatedMB:0xc0002dd938 MemorySharedMB:<nil> APISupport:[]} Storage:{Devices:[{Name:/dev/nvme0n1 Type:ssd Interface:nvme CapacityGB:465.7617416381836 Vendor:CT500P2SSD8 Model:CT500P2SSD8 Serial:2138E5D60DD8 SmartHealth:PASSED Temperature:33} {Name:/dev/nvme1n1 Type: Interface:nvme CapacityGB:465.7617416381836 Vendor:CT500P2SSD8 Model:CT500P2SSD8 Serial:2108E4FD258D SmartHealth:PASSED Temperature:33} {Name:/dev/sda Type: Interface:sata CapacityGB:447.13167572021484 Vendor:ATA Model:KINGSTON SUV500480G Serial:50026B768226A365 SmartHealth:PASSED Temperature:25} {Name:/dev/sdb Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:Compact Flash Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sdc Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:SD/MMC Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sdd Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:MS/MS-PRO Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sde Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:xD-Picture Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0}] Partitions:[{Name:/dev/nvme0n1p2 MountPoint:/ FSType:ext4 TotalGB:432.80120849609375 UsedGB:0xc0002ddbf8 FreeGB:0xc0002ddc00} {Name:/dev/nvme0n1p1 MountPoint:/boot/efi FSType:vfat TotalGB:0.9512481689453125 UsedGB:0xc0002ddc08 FreeGB:0xc0002ddc40}]} PCIDevices:[{Slot:Host bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:Starship/Matisse Root Complex Device:Advanced Micro Devices, Inc. [AMD]} {Slot:IOMMU Class:Advanced Micro Devices, Inc. [AMD] Vendor:Starship/Matisse IOMMU Device:Advanced Micro Devices, Inc. [AMD]} {Slot:Host bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:Starship/Matisse PCIe Dummy Host Bridge Device: } {Slot:PCI bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:Starship/Matisse GPP Bridge Device:Advanced Micro Devices, Inc. [AMD]} {Slot:PCI bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:Starship/Matisse GPP Bridge Device:Advanced Micro Devices, Inc. [AMD]} {Slot:Host bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:Starship/Matisse PCIe Dummy Host Bridge Device: } {Slot:Host bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:Starship/Matisse PCIe Dummy Host Bridge Device: } {Slot:PCI bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:Starship/Matisse GPP Bridge Device:Advanced Micro Devices, Inc. [AMD]} {Slot:Host bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:Starship/Matisse PCIe Dummy Host Bridge Device: } {Slot:Host bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:Starship/Matisse PCIe Dummy Host Bridge Device: } {Slot:Host bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:Starship/Matisse PCIe Dummy Host Bridge Device: } {Slot:PCI bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B] Device:Advanced Micro Devices, Inc. [AMD]} {Slot:Host bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:Starship/Matisse PCIe Dummy Host Bridge Device: } {Slot:PCI bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B] Device:Advanced Micro Devices, Inc. [AMD]} {Slot:SMBus Class:Advanced Micro Devices, Inc. [AMD] Vendor:FCH SMBus Controller Device:Gigabyte Technology Co., Ltd} {Slot:ISA bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:FCH LPC Bridge Device:Gigabyte Technology Co., Ltd} {Slot:Host bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:Matisse/Vermeer Data Fabric: Device 18h; Function 0 Device: } {Slot:Host bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:Matisse/Vermeer Data Fabric: Device 18h; Function 1 Device: } {Slot:Host bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:Matisse/Vermeer Data Fabric: Device 18h; Function 2 Device: } {Slot:Host bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:Matisse/Vermeer Data Fabric: Device 18h; Function 3 Device: } {Slot:Host bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:Matisse/Vermeer Data Fabric: Device 18h; Function 4 Device: } {Slot:Host bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:Matisse/Vermeer Data Fabric: Device 18h; Function 5 Device: } {Slot:Host bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:Matisse/Vermeer Data Fabric: Device 18h; Function 6 Device: } {Slot:Host bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:Matisse/Vermeer Data Fabric: Device 18h; Function 7 Device: } {Slot:Non-Volatile memory controller Class:Micron/Crucial Technology Vendor:P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less) Device:Micron/Crucial Technology} {Slot:USB controller Class:Advanced Micro Devices, Inc. [AMD] Vendor:400 Series Chipset USB 3.1 xHCI Compliant Host Controller Device:ASMedia Technology Inc.} {Slot:SATA controller Class:Advanced Micro Devices, Inc. [AMD] Vendor:400 Series Chipset SATA Controller Device:ASMedia Technology Inc.} {Slot:PCI bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:400 Series Chipset PCIe Bridge Device:ASMedia Technology Inc.} {Slot:PCI bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:400 Series Chipset PCIe Port Device:ASMedia Technology Inc.} {Slot:PCI bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:400 Series Chipset PCIe Port Device:ASMedia Technology Inc.} {Slot:PCI bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:400 Series Chipset PCIe Port Device:ASMedia Technology Inc.} {Slot:PCI bridge Class:Advanced Micro Devices, Inc. [AMD] Vendor:400 Series Chipset PCIe Port Device:ASMedia Technology Inc.} {Slot:Ethernet controller Class:Realtek Semiconductor Co., Ltd. Vendor:RTL8111/8168/8211/8411 PCI Express Gigabit Ethernet Controller Device:Gigabyte Technology Co., Ltd} {Slot:Non-Volatile memory controller Class:Micron/Crucial Technology Vendor:P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less) Device:Micron/Crucial Technology} {Slot:VGA compatible controller Class:NVIDIA Corporation Vendor:GA106 [GeForce RTX 3060 Lite Hash Rate] Device:Gigabyte Technology Co., Ltd} {Slot:Audio device Class:NVIDIA Corporation Vendor:GA106 High Definition Audio Controller Device:Gigabyte Technology Co., Ltd} {Slot:Non-Essential Instrumentation [1300] Class:Advanced Micro Devices, Inc. [AMD] Vendor:Starship/Matisse PCIe Dummy Function Device:Advanced Micro Devices, Inc. [AMD]} {Slot:Non-Essential Instrumentation [1300] Class:Advanced Micro Devices, Inc. [AMD] Vendor:Starship/Matisse Reserved SPP Device:Advanced Micro Devices, Inc. [AMD]} {Slot:Encryption controller Class:Advanced Micro Devices, Inc. [AMD] Vendor:Starship/Matisse Cryptographic Coprocessor PSPCPP Device:Advanced Micro Devices, Inc. [AMD]} {Slot:USB controller Class:Advanced Micro Devices, Inc. [AMD] Vendor:Matisse USB 3.0 Host Controller Device:Gigabyte Technology Co., Ltd} {Slot:Audio device Class:Advanced Micro Devices, Inc. [AMD] Vendor:Starship/Matisse HD Audio Controller Device:Gigabyte Technology Co., Ltd}] USBDevices:[{Bus:001 Device:001 VendorID:1d6b ProductID:0002 Name:Linux Foundation 2.0 root hub} {Bus:001 Device:002 VendorID:058f ProductID:6362 Name:Alcor Micro Corp. Flash Card Reader/Writer} {Bus:002 Device:001 VendorID:1d6b ProductID:0003 Name:Linux Foundation 3.0 root hub} {Bus:003 Device:001 VendorID:1d6b ProductID:0002 Name:Linux Foundation 2.0 root hub} {Bus:003 Device:003 VendorID:046d ProductID:c52b Name:Logitech, Inc. Unifying Receiver} {Bus:003 Device:004 VendorID:0bda ProductID:b711 Name:Realtek Semiconductor Corp. RTL8188GU 802.11n WLAN Adapter (After Modeswitch)} {Bus:004 Device:001 VendorID:1d6b ProductID:0003 Name:Linux Foundation 3.0 root hub}] NetworkShares:[] Network:{Interfaces:[{Name:eno1 Type:ethernet MAC:18:c0:4d:b5:65:74 IP:10.0.1.109 SpeedMbps:0xc000300588 Driver:r8169 SSID: WakeOnLAN:false} {Name:wlxe84e06a6c1fc Type:wifi MAC:06:06:19:aa:1b:c8 IP: SpeedMbps:<nil> Driver:rtl8xxxu SSID: WakeOnLAN:false}]} Motherboard:{Vendor:Gigabyte Technology Co., Ltd. Model:B450 AORUS ELITE BIOSVendor:American Megatrends International, LLC. BIOSVersion:F65e BIOSDate:09/20/2023} OS:{Name:Debian GNU/Linux Version:13 (trixie) KernelVersion:6.12.57+deb13-amd64 Architecture:x86_64 SessionType: DisplayServer: ScreenResolution:5560 x 1920 LastBootTime:démarrage système 2026-01-11 09:11 UptimeSeconds:40816.12 BatteryPercentage:<nil> BatteryStatus: BatteryHealth: Hostname:aorus VirtualizationType:kvm-host DesktopEnvironment:GNOME} Sensors:{CPUTempC:<nil> DiskTempsC:map[nvme-pci-0100:Composite:32.85 nvme-pci-0700:Composite:32.85] Sensors:[{Chip:nvme-pci-0100 Name:Composite Type:temperature Value:32.85 Unit:°C Alarm:false} {Chip:nvme-pci-0700 Name:Composite Type:temperature Value:32.85 Unit:°C Alarm:false} {Chip:acpitz-acpi-0 Name:temp1 Type:temperature Value:16.8 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tctl Type:temperature Value:37 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tccd1 Type:temperature Value:40.75 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tccd2 Type:temperature Value:30.5 Unit:°C Alarm:false}]} Audio:{Hardware:{PCIAudioDevices:[08:00.1 Audio device: NVIDIA Corporation GA106 High Definition Audio Controller (rev a1) 0a:00.4 Audio device: Advanced Micro Devices, Inc. [AMD] Starship/Matisse HD Audio Controller] AlsaPlayback:**** Liste des périphériques matériels PLAYBACK ****
carte 0 : NVidia [HDA NVidia], périphérique 3 : HDMI 0 [LG ULTRAWIDE]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 7 : HDMI 1 [K243Y]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 8 : HDMI 2 [HDMI 2]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 9 : HDMI 3 [HDMI 3]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]
Sous-périphériques : 0/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 1 : ALC892 Digital [ALC892 Digital]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
AlsaCapture:**** Liste des périphériques matériels CAPTURE ****
carte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 2 : ALC892 Alt Analog [ALC892 Alt Analog]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
PCMDevices:[null Discard all samples (playback) or generate zero samples (capture) pipewire PipeWire Sound Server default Default ALSA Output (currently PipeWire Media Server) hw:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Direct hardware device without any conversions hw:CARD=NVidia,DEV=7 HDA NVidia, K243Y Direct hardware device without any conversions hw:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Direct hardware device without any conversions hw:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Direct hardware device without any conversions plughw:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Hardware device with all software conversions plughw:CARD=NVidia,DEV=7 HDA NVidia, K243Y Hardware device with all software conversions plughw:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Hardware device with all software conversions plughw:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Hardware device with all software conversions hdmi:CARD=NVidia,DEV=0 HDA NVidia, LG ULTRAWIDE HDMI Audio Output hdmi:CARD=NVidia,DEV=1 HDA NVidia, K243Y HDMI Audio Output hdmi:CARD=NVidia,DEV=2 HDA NVidia, HDMI 2 HDMI Audio Output hdmi:CARD=NVidia,DEV=3 HDA NVidia, HDMI 3 HDMI Audio Output dmix:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Direct sample mixing device dmix:CARD=NVidia,DEV=7 HDA NVidia, K243Y Direct sample mixing device dmix:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Direct sample mixing device dmix:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Direct sample mixing device hw:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Direct hardware device without any conversions hw:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Direct hardware device without any conversions plughw:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Hardware device with all software conversions plughw:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Hardware device with all software conversions sysdefault:CARD=Generic HD-Audio Generic, ALC892 Analog Default Audio Device front:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Front output / input surround21:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 2.1 Surround output to Front and Subwoofer speakers surround40:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 4.0 Surround output to Front and Rear speakers surround41:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 4.1 Surround output to Front, Rear and Subwoofer speakers surround50:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 5.0 Surround output to Front, Center and Rear speakers surround51:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 5.1 Surround output to Front, Center, Rear and Subwoofer speakers surround71:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 7.1 Surround output to Front, Center, Side, Rear and Woofer speakers iec958:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Digital IEC958 (S/PDIF) Digital Audio Output dmix:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Direct sample mixing device dmix:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Direct sample mixing device]} Software:{Backend: ServerName: ServerVersion: DefaultSink:<nil> DefaultSource:<nil> Sinks:[] Sources:[]}} RawInfo:map[dmidecode:# dmidecode 3.6
Getting SMBIOS data from sysfs.
SMBIOS 3.3.0 present.
Handle 0x0000, DMI type 0, 26 bytes
BIOS Information
Vendor: American Megatrends International, LLC.
Version: F65e
Release Date: 09/20/2023
Address: 0xF0000
Runtime Size: 64 kB
ROM Size: 16 MB
Characteristics:
PCI is supported
BIOS is upgradeable
BIOS shadowing is allowed
Boot from CD is supported
Selectable boot is supported
BIOS ROM is socketed
EDD is supported
Japanese floppy for NEC 9800 1.2 MB is supported (int 13h)
Japanese floppy for Toshiba 1.2 MB is supported (int 13h)
5.25"/360 kB floppy services are supported (int 13h)
5.25"/1.2 MB floppy services are supported (int 13h)
3.5"/720 kB floppy services are supported (int 13h)
3.5"/2.88 MB floppy services are supported (int 13h)
Print screen service is supported (int 5h)
Serial services are supported (int 14h)
Printer services are supported (int 17h)
CGA/mono video services are supported (int 10h)
USB legacy is supported
BIOS boot specification is supported
Targeted content distribution is supported
UEFI is supported
BIOS Revision: 5.17
Handle 0x0001, DMI type 1, 27 bytes
System Information
Manufacturer: Gigabyte Technology Co., Ltd.
Product Name: B450 AORUS ELITE
Version: Default string
Serial Number: Default string
UUID: 03c00218-044d-05b5-6506-740700080009
Wake-up Type: Power Switch
SKU Number: Default string
Family: B450 MB
Handle 0x0002, DMI type 2, 15 bytes
Base Board Information
Manufacturer: Gigabyte Technology Co., Ltd.
Product Name: B450 AORUS ELITE
Version: Default string
Serial Number: Default string
Asset Tag: Default string
Features:
Board is a hosting board
Board is replaceable
Location In Chassis: Default string
Chassis Handle: 0x0003
Type: Motherboard
Contained Object Handles: 0
Handle 0x000B, DMI type 16, 23 bytes
Physical Memory Array
Location: System Board Or Motherboard
Use: System Memory
Error Correction Type: None
Maximum Capacity: 128 GB
Error Information Handle: 0x000A
Number Of Devices: 4
Handle 0x0013, DMI type 17, 92 bytes
Memory Device
Array Handle: 0x000B
Error Information Handle: 0x0012
Total Width: 64 bits
Data Width: 64 bits
Size: 16 GB
Form Factor: DIMM
Set: None
Locator: DIMM 0
Bank Locator: P0 CHANNEL A
Type: DDR4
Type Detail: Synchronous Unbuffered (Unregistered)
Speed: 3200 MT/s
Manufacturer: Unknown
Serial Number: 00000000
Asset Tag: Not Specified
Part Number: CMW32GX4M2E3200C16
Rank: 2
Configured Memory Speed: 3200 MT/s
Minimum Voltage: Unknown
Maximum Voltage: Unknown
Configured Voltage: 1.2 V
Memory Technology: DRAM
Memory Operating Mode Capability: Volatile memory
Firmware Version: Unknown
Module Manufacturer ID: Bank 3, Hex 0x9E
Module Product ID: Unknown
Memory Subsystem Controller Manufacturer ID: Unknown
Memory Subsystem Controller Product ID: Unknown
Non-Volatile Size: None
Volatile Size: 16 GB
Cache Size: None
Logical Size: None
Handle 0x0016, DMI type 17, 92 bytes
Memory Device
Array Handle: 0x000B
Error Information Handle: 0x0015
Total Width: 64 bits
Data Width: 64 bits
Size: 8 GB
Form Factor: DIMM
Set: None
Locator: DIMM 1
Bank Locator: P0 CHANNEL A
Type: DDR4
Type Detail: Synchronous Unbuffered (Unregistered)
Speed: 3200 MT/s
Manufacturer: Unknown
Serial Number: E3C4408B
Asset Tag: Not Specified
Part Number: BL8G32C16U4BL.M8FE
Rank: 1
Configured Memory Speed: 3200 MT/s
Minimum Voltage: 1.2 V
Maximum Voltage: 1.2 V
Configured Voltage: 1.2 V
Memory Technology: DRAM
Memory Operating Mode Capability: Volatile memory
Firmware Version: Unknown
Module Manufacturer ID: Bank 6, Hex 0x9B
Module Product ID: Unknown
Memory Subsystem Controller Manufacturer ID: Unknown
Memory Subsystem Controller Product ID: Unknown
Non-Volatile Size: None
Volatile Size: 8 GB
Cache Size: None
Logical Size: None
Handle 0x0019, DMI type 17, 92 bytes
Memory Device
Array Handle: 0x000B
Error Information Handle: 0x0018
Total Width: 64 bits
Data Width: 64 bits
Size: 16 GB
Form Factor: DIMM
Set: None
Locator: DIMM 0
Bank Locator: P0 CHANNEL B
Type: DDR4
Type Detail: Synchronous Unbuffered (Unregistered)
Speed: 3200 MT/s
Manufacturer: Unknown
Serial Number: 00000000
Asset Tag: Not Specified
Part Number: CMW32GX4M2E3200C16
Rank: 2
Configured Memory Speed: 3200 MT/s
Minimum Voltage: Unknown
Maximum Voltage: Unknown
Configured Voltage: 1.2 V
Memory Technology: DRAM
Memory Operating Mode Capability: Volatile memory
Firmware Version: Unknown
Module Manufacturer ID: Bank 3, Hex 0x9E
Module Product ID: Unknown
Memory Subsystem Controller Manufacturer ID: Unknown
Memory Subsystem Controller Product ID: Unknown
Non-Volatile Size: None
Volatile Size: 16 GB
Cache Size: None
Logical Size: None
Handle 0x001C, DMI type 17, 92 bytes
Memory Device
Array Handle: 0x000B
Error Information Handle: 0x001B
Total Width: 64 bits
Data Width: 64 bits
Size: 8 GB
Form Factor: DIMM
Set: None
Locator: DIMM 1
Bank Locator: P0 CHANNEL B
Type: DDR4
Type Detail: Synchronous Unbuffered (Unregistered)
Speed: 3200 MT/s
Manufacturer: Unknown
Serial Number: E3C44087
Asset Tag: Not Specified
Part Number: BL8G32C16U4BL.M8FE
Rank: 1
Configured Memory Speed: 3200 MT/s
Minimum Voltage: 1.2 V
Maximum Voltage: 1.2 V
Configured Voltage: 1.2 V
Memory Technology: DRAM
Memory Operating Mode Capability: Volatile memory
Firmware Version: Unknown
Module Manufacturer ID: Bank 6, Hex 0x9B
Module Product ID: Unknown
Memory Subsystem Controller Manufacturer ID: Unknown
Memory Subsystem Controller Product ID: Unknown
Non-Volatile Size: None
Volatile Size: 8 GB
Cache Size: None
Logical Size: None
lsblk:NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS
loop0 7:0 0 118,5M 1 loop /snap/iptvnator/92
loop1 7:1 0 48,1M 1 loop /snap/snapd/25935
loop2 7:2 0 50,9M 1 loop /snap/snapd/25577
loop3 7:3 0 4K 1 loop /snap/bare/5
loop4 7:4 0 91,7M 1 loop /snap/gtk-common-themes/1535
loop5 7:5 0 55,5M 1 loop /snap/core18/2976
loop6 7:6 0 164,8M 1 loop /snap/gnome-3-28-1804/198
loop7 7:7 0 0B 0 loop
sda 8:0 0 447,1G 0 disk
└─sda1 8:1 0 447,1G 0 part
sdb 8:16 1 0B 0 disk
sdc 8:32 1 0B 0 disk
sdd 8:48 1 0B 0 disk
sde 8:64 1 0B 0 disk
nvme0n1 259:0 0 465,8G 0 disk
├─nvme0n1p1 259:1 0 976M 0 part /boot/efi
├─nvme0n1p2 259:2 0 440,8G 0 part /
└─nvme0n1p3 259:3 0 24G 0 part [SWAP]
nvme1n1 259:4 0 465,8G 0 disk
├─nvme1n1p1 259:5 0 50M 0 part
├─nvme1n1p2 259:6 0 464,3G 0 part
├─nvme1n1p3 259:7 0 808M 0 part
├─nvme1n1p4 259:8 0 100M 0 part
└─nvme1n1p5 259:9 0 522M 0 part
lscpu:Architecture : x86_64
Mode(s) opératoire(s) des processeurs : 32-bit, 64-bit
Tailles des adresses: 48 bits physical, 48 bits virtual
Boutisme : Little Endian
Processeur(s) : 24
Liste de processeur(s) en ligne : 0-23
Identifiant constructeur : AuthenticAMD
Nom de modèle : AMD Ryzen 9 5900X 12-Core Processor
Famille de processeur : 25
Modèle : 33
Thread(s) par cœur : 2
Cœur(s) par socket : 12
Socket(s) : 1
Révision : 2
Accroissement de fréquence : activé
multiplication des MHz du/des CPU(s) : 76%
Vitesse maximale du processeur en MHz : 4951,0000
Vitesse minimale du processeur en MHz : 550,0000
BogoMIPS : 7399,98
Drapeaux : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local user_shstk clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm debug_swap
Virtualisation : AMD-V
Cache L1d : 384 KiB (12 instances)
Cache L1i : 384 KiB (12 instances)
Cache L2 : 6 MiB (12 instances)
Cache L3 : 64 MiB (2 instances)
Nœud(s) NUMA : 1
Nœud NUMA 0 de processeur(s) : 0-23
Vulnérabilité Gather data sampling : Not affected
Vulnérabilité Indirect target selection : Not affected
Vulnérabilité Itlb multihit : Not affected
Vulnérabilité L1tf : Not affected
Vulnérabilité Mds : Not affected
Vulnérabilité Meltdown : Not affected
Vulnérabilité Mmio stale data : Not affected
Vulnérabilité Reg file data sampling : Not affected
Vulnérabilité Retbleed : Not affected
Vulnérabilité Spec rstack overflow : Mitigation; Safe RET
Vulnérabilité Spec store bypass : Mitigation; Speculative Store Bypass disabled via prctl
Vulnérabilité Spectre v1 : Mitigation; usercopy/swapgs barriers and __user pointer sanitization
Vulnérabilité Spectre v2 : Mitigation; Retpolines; IBPB conditional; IBRS_FW; STIBP always-on; RSB filling; PBRSB-eIBRS Not affected; BHI Not affected
Vulnérabilité Srbds : Not affected
Vulnérabilité Tsa : Vulnerable: Clear CPU buffers attempted, no microcode
Vulnérabilité Tsx async abort : Not affected
Vulnérabilité Vmscape : Mitigation; IBPB before exit to userspace
]}
[DEBUG] [3/6] Benchmark CPU démarré
[DEBUG] Exec: sysbench [cpu --threads=1 --time=10 run]
[DEBUG] Exec: nproc []
[DEBUG] Exec: sysbench [cpu --threads=24 --time=10 run]
[DEBUG] [3/6] Résultat CPU: {EventsPerSec:37055.185 EventsPerSecSingle:5597.83 EventsPerSecMulti:68512.54 DurationSec:20.0004 Score:37055.185 ScoreSingle:5597.83 ScoreMulti:68512.54}
[DEBUG] [3/6] Benchmark mémoire démarré
[DEBUG] Exec: sysbench [memory --memory-block-size=1K --memory-total-size=1G run]
[DEBUG] [3/6] Résultat mémoire: {Throughput:8403.44 Score:8403.44}
[DEBUG] [3/6] Benchmark disque démarré
[DEBUG] Exec: fio [--name=bench --ioengine=libaio --rw=randrw --bs=4k --direct=1 --size=500M --numjobs=1 --runtime=30 --time_based --output-format=json --filename=/tmp/bench.fio]
[DEBUG] [3/6] Résultat disque: {ReadMBs:1.007308006286621 WriteMBs:1.0068292617797852 IOPSRead:264059.966667 IOPSWrite:263934.333333 LatencyMs:0.000464654949 Score:1.0070686340332031}
[DEBUG] [3/6] Benchmark réseau démarré
[DEBUG] Exec: iperf3 [-c 10.0.0.50 -p 5201 -J -t 10]
[DEBUG] Exec: ping [-c 1 -W 1 10.0.0.50]
[DEBUG] [3/6] Résultat réseau: {Upload:941.3624878143848 Download:938.940941573623 PingMs:0.661 JitterMs:<nil> PacketLossPct:<nil> Score:940.1517146940039}
[DEBUG] Résultats des benchmarks : {CPU:{EventsPerSec:37055.185 EventsPerSecSingle:5597.83 EventsPerSecMulti:68512.54 DurationSec:20.0004 Score:37055.185 ScoreSingle:5597.83 ScoreMulti:68512.54} Memory:{Throughput:8403.44 Score:8403.44} Disk:{ReadMBs:1.007308006286621 WriteMBs:1.0068292617797852 IOPSRead:264059.966667 IOPSWrite:263934.333333 LatencyMs:0.000464654949 Score:1.0070686340332031} Network:{Upload:941.3624878143848 Download:938.940941573623 PingMs:0.661 JitterMs:<nil> PacketLossPct:<nil> Score:940.1517146940039} GPU:{GLMark2Score:<nil> Score:<nil>} GlobalScore:0}
[DEBUG] Poids benchmarks : map[cpu:0.4 disk:0.2 gpu:0.1 memory:0.2 network:0.1]
[DEBUG] Scores normalisés : cpu=1852.76 mem=84.03 disk=0.10 net=94.02
[DEBUG] Score global calculé : 76733.22
[DEBUG] Payload JSON (49676 octets) : {
"device_identifier": "aorus",
"bench_script_version": "1.6.6",
"bench_client_version": "1.0.1",
"hardware": {
"cpu": {
"vendor": "AuthenticAMD",
"model": "AMD Ryzen 9 5900X 12-Core Processor",
"cores": 12,
"threads": 24,
"base_freq_ghz": 4.951,
"max_freq_ghz": 4.951,
"cache_l1_kb": 768,
"cache_l2_kb": 6144,
"cache_l3_kb": 32768,
"flags": [
"fpu",
"vme",
"de",
"pse",
"tsc",
"msr",
"pae",
"mce",
"cx8",
"apic",
"sep",
"mtrr",
"pge",
"mca",
"cmov",
"pat",
"pse36",
"clflush",
"mmx",
"fxsr",
"sse",
"sse2",
"ht",
"syscall",
"nx",
"mmxext",
"fxsr_opt",
"pdpe1gb",
"rdtscp",
"lm",
"constant_tsc",
"rep_good",
"nopl",
"xtopology",
"nonstop_tsc",
"cpuid",
"extd_apicid",
"aperfmperf",
"rapl",
"pni",
"pclmulqdq",
"monitor",
"ssse3",
"fma",
"cx16",
"sse4_1",
"sse4_2",
"x2apic",
"movbe",
"popcnt",
"aes",
"xsave",
"avx",
"f16c",
"rdrand",
"lahf_lm",
"cmp_legacy",
"svm",
"extapic",
"cr8_legacy",
"abm",
"sse4a",
"misalignsse",
"3dnowprefetch",
"osvw",
"ibs",
"skinit",
"wdt",
"tce",
"topoext",
"perfctr_core",
"perfctr_nb",
"bpext",
"perfctr_llc",
"mwaitx",
"cpb",
"cat_l3",
"cdp_l3",
"hw_pstate",
"ssbd",
"mba",
"ibrs",
"ibpb",
"stibp",
"vmmcall",
"fsgsbase",
"bmi1",
"avx2",
"smep",
"bmi2",
"erms",
"invpcid",
"cqm",
"rdt_a",
"rdseed",
"adx",
"smap",
"clflushopt",
"clwb",
"sha_ni",
"xsaveopt",
"xsavec",
"xgetbv1",
"xsaves",
"cqm_llc",
"cqm_occup_llc",
"cqm_mbm_total",
"cqm_mbm_local",
"user_shstk",
"clzero",
"irperf",
"xsaveerptr",
"rdpru",
"wbnoinvd",
"arat",
"npt",
"lbrv",
"svm_lock",
"nrip_save",
"tsc_scale",
"vmcb_clean",
"flushbyasid",
"decodeassists",
"pausefilter",
"pfthreshold",
"avic",
"v_vmsave_vmload",
"vgif",
"v_spec_ctrl",
"umip",
"pku",
"ospke",
"vaes",
"vpclmulqdq",
"rdpid",
"overflow_recov",
"succor",
"smca",
"fsrm",
"debug_swap"
],
"microarchitecture": "Zen",
"tdp_w": null
},
"ram": {
"total_mb": 48096,
"used_mb": 16281,
"free_mb": 31815,
"shared_mb": 986,
"slots_total": 10,
"slots_used": 4,
"max_capacity_mb": 48096,
"ecc": false,
"layout": [
{
"slot": "DIMM 0",
"size_mb": 16384,
"type": "DDR4",
"speed_mhz": 3200,
"configured_speed_mhz": 3200,
"form_factor": "DIMM",
"type_detail": "Synchronous Unbuffered (Unregistered)",
"rank": "2",
"manufacturer": "Unknown",
"part_number": "CMW32GX4M2E3200C16 "
},
{
"slot": "DIMM 1",
"size_mb": 8192,
"type": "DDR4",
"speed_mhz": 3200,
"configured_speed_mhz": 3200,
"form_factor": "DIMM",
"type_detail": "Synchronous Unbuffered (Unregistered)",
"rank": "1",
"manufacturer": "Unknown",
"part_number": "BL8G32C16U4BL.M8FE"
},
{
"slot": "DIMM 0",
"size_mb": 16384,
"type": "DDR4",
"speed_mhz": 3200,
"configured_speed_mhz": 3200,
"form_factor": "DIMM",
"type_detail": "Synchronous Unbuffered (Unregistered)",
"rank": "2",
"manufacturer": "Unknown",
"part_number": "CMW32GX4M2E3200C16 "
},
{
"slot": "DIMM 1",
"size_mb": 8192,
"type": "DDR4",
"speed_mhz": 3200,
"configured_speed_mhz": 3200,
"form_factor": "DIMM",
"type_detail": "Synchronous Unbuffered (Unregistered)",
"rank": "1",
"manufacturer": "Unknown",
"part_number": "BL8G32C16U4BL.M8FE"
}
]
},
"gpu": {
"vendor": "NVIDIA",
"model": "NVIDIA GeForce RTX 3060",
"driver_version": "550.163.01",
"memory_dedicated_mb": 12288,
"memory_shared_mb": null,
"api_support": null
},
"storage": {
"devices": [
{
"name": "/dev/nvme0n1",
"type": "ssd",
"interface": "nvme",
"capacity_gb": 465.7617416381836,
"vendor": "CT500P2SSD8",
"model": "CT500P2SSD8",
"serial": "2138E5D60DD8",
"smart_health": "PASSED",
"temperature_c": 33
},
{
"name": "/dev/nvme1n1",
"type": "",
"interface": "nvme",
"capacity_gb": 465.7617416381836,
"vendor": "CT500P2SSD8",
"model": "CT500P2SSD8",
"serial": "2108E4FD258D",
"smart_health": "PASSED",
"temperature_c": 33
},
{
"name": "/dev/sda",
"type": "",
"interface": "sata",
"capacity_gb": 447.13167572021484,
"vendor": "ATA ",
"model": "KINGSTON SUV500480G",
"serial": "50026B768226A365",
"smart_health": "PASSED",
"temperature_c": 25
},
{
"name": "/dev/sdb",
"type": "",
"interface": "usb",
"capacity_gb": 0,
"vendor": "Generic-",
"model": "Compact Flash",
"serial": "058F63626479",
"smart_health": "UNAVAILABLE",
"temperature_c": 0
},
{
"name": "/dev/sdc",
"type": "",
"interface": "usb",
"capacity_gb": 0,
"vendor": "Generic-",
"model": "SD/MMC",
"serial": "058F63626479",
"smart_health": "UNAVAILABLE",
"temperature_c": 0
},
{
"name": "/dev/sdd",
"type": "",
"interface": "usb",
"capacity_gb": 0,
"vendor": "Generic-",
"model": "MS/MS-PRO",
"serial": "058F63626479",
"smart_health": "UNAVAILABLE",
"temperature_c": 0
},
{
"name": "/dev/sde",
"type": "",
"interface": "usb",
"capacity_gb": 0,
"vendor": "Generic-",
"model": "xD-Picture",
"serial": "058F63626479",
"smart_health": "UNAVAILABLE",
"temperature_c": 0
}
],
"partitions": [
{
"name": "/dev/nvme0n1p2",
"mount_point": "/",
"fs_type": "ext4",
"total_gb": 432.80120849609375,
"used_gb": 348.1476249694824,
"free_gb": 62.59840774536133
},
{
"name": "/dev/nvme0n1p1",
"mount_point": "/boot/efi",
"fs_type": "vfat",
"total_gb": 0.9512481689453125,
"used_gb": 0.008571624755859375,
"free_gb": 0.9426765441894531
}
]
},
"pci_devices": [
{
"slot": "Host bridge",
"class": "Advanced Micro Devices, Inc. [AMD]",
"vendor": "Starship/Matisse Root Complex",
"device": "Advanced Micro Devices, Inc. [AMD]"
},
{
"slot": "IOMMU",
"class": "Advanced Micro Devices, Inc. [AMD]",
"vendor": "Starship/Matisse IOMMU",
"device": "Advanced Micro Devices, Inc. [AMD]"
},
{
"slot": "Host bridge",
"class": "Advanced Micro Devices, Inc. [AMD]",
"vendor": "Starship/Matisse PCIe Dummy Host Bridge",
"device": " "
},
{
"slot": "PCI bridge",
"class": "Advanced Micro Devices, Inc. [AMD]",
"vendor": "Starship/Matisse GPP Bridge",
"device": "Advanced Micro Devices, Inc. [AMD]"
},
{
"slot": "PCI bridge",
"class": "Advanced Micro Devices, Inc. [AMD]",
"vendor": "Starship/Matisse GPP Bridge",
"device": "Advanced Micro Devices, Inc. [AMD]"
},
{
"slot": "Host bridge",
"class": "Advanced Micro Devices, Inc. [AMD]",
"vendor": "Starship/Matisse PCIe Dummy Host Bridge",
"device": " "
},
{
"slot": "Host bridge",
"class": "Advanced Micro Devices, Inc. [AMD]",
"vendor": "Starship/Matisse PCIe Dummy Host Bridge",
"device": " "
},
{
"slot": "PCI bridge",
"class": "Advanced Micro Devices, Inc. [AMD]",
"vendor": "Starship/Matisse GPP Bridge",
"device": "Advanced Micro Devices, Inc. [AMD]"
},
{
"slot": "Host bridge",
"class": "Advanced Micro Devices, Inc. [AMD]",
"vendor": "Starship/Matisse PCIe Dummy Host Bridge",
"device": " "
},
{
"slot": "Host bridge",
"class": "Advanced Micro Devices, Inc. [AMD]",
"vendor": "Starship/Matisse PCIe Dummy Host Bridge",
"device": " "
},
{
"slot": "Host bridge",
"class": "Advanced Micro Devices, Inc. [AMD]",
"vendor": "Starship/Matisse PCIe Dummy Host Bridge",
"device": " "
},
{
"slot": "PCI bridge",
"class": "Advanced Micro Devices, Inc. [AMD]",
"vendor": "Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]",
"device": "Advanced Micro Devices, Inc. [AMD]"
},
{
"slot": "Host bridge",
"class": "Advanced Micro Devices, Inc. [AMD]",
"vendor": "Starship/Matisse PCIe Dummy Host Bridge",
"device": " "
},
{
"slot": "PCI bridge",
"class": "Advanced Micro Devices, Inc. [AMD]",
"vendor": "Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]",
"device": "Advanced Micro Devices, Inc. [AMD]"
},
{
"slot": "SMBus",
"class": "Advanced Micro Devices, Inc. [AMD]",
"vendor": "FCH SMBus Controller",
"device": "Gigabyte Technology Co., Ltd"
},
{
"slot": "ISA bridge",
"class": "Advanced Micro Devices, Inc. [AMD]",
"vendor": "FCH LPC Bridge",
"device": "Gigabyte Technology Co., Ltd"
},
{
"slot": "Host bridge",
"class": "Advanced Micro Devices, Inc. [AMD]",
"vendor": "Matisse/Vermeer Data Fabric: Device 18h; Function 0",
"device": " "
},
{
"slot": "Host bridge",
"class": "Advanced Micro Devices, Inc. [AMD]",
"vendor": "Matisse/Vermeer Data Fabric: Device 18h; Function 1",
"device": " "
},
{
"slot": "Host bridge",
"class": "Advanced Micro Devices, Inc. [AMD]",
"vendor": "Matisse/Vermeer Data Fabric: Device 18h; Function 2",
"device": " "
},
{
"slot": "Host bridge",
"class": "Advanced Micro Devices, Inc. [AMD]",
"vendor": "Matisse/Vermeer Data Fabric: Device 18h; Function 3",
"device": " "
},
{
"slot": "Host bridge",
"class": "Advanced Micro Devices, Inc. [AMD]",
"vendor": "Matisse/Vermeer Data Fabric: Device 18h; Function 4",
"device": " "
},
{
"slot": "Host bridge",
"class": "Advanced Micro Devices, Inc. [AMD]",
"vendor": "Matisse/Vermeer Data Fabric: Device 18h; Function 5",
"device": " "
},
{
"slot": "Host bridge",
"class": "Advanced Micro Devices, Inc. [AMD]",
"vendor": "Matisse/Vermeer Data Fabric: Device 18h; Function 6",
"device": " "
},
{
"slot": "Host bridge",
"class": "Advanced Micro Devices, Inc. [AMD]",
"vendor": "Matisse/Vermeer Data Fabric: Device 18h; Function 7",
"device": " "
},
{
"slot": "Non-Volatile memory controller",
"class": "Micron/Crucial Technology",
"vendor": "P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)",
"device": "Micron/Crucial Technology"
},
{
"slot": "USB controller",
"class": "Advanced Micro Devices, Inc. [AMD]",
"vendor": "400 Series Chipset USB 3.1 xHCI Compliant Host Controller",
"device": "ASMedia Technology Inc."
},
{
"slot": "SATA controller",
"class": "Advanced Micro Devices, Inc. [AMD]",
"vendor": "400 Series Chipset SATA Controller",
"device": "ASMedia Technology Inc."
},
{
"slot": "PCI bridge",
"class": "Advanced Micro Devices, Inc. [AMD]",
"vendor": "400 Series Chipset PCIe Bridge",
"device": "ASMedia Technology Inc."
},
{
"slot": "PCI bridge",
"class": "Advanced Micro Devices, Inc. [AMD]",
"vendor": "400 Series Chipset PCIe Port",
"device": "ASMedia Technology Inc."
},
{
"slot": "PCI bridge",
"class": "Advanced Micro Devices, Inc. [AMD]",
"vendor": "400 Series Chipset PCIe Port",
"device": "ASMedia Technology Inc."
},
{
"slot": "PCI bridge",
"class": "Advanced Micro Devices, Inc. [AMD]",
"vendor": "400 Series Chipset PCIe Port",
"device": "ASMedia Technology Inc."
},
{
"slot": "PCI bridge",
"class": "Advanced Micro Devices, Inc. [AMD]",
"vendor": "400 Series Chipset PCIe Port",
"device": "ASMedia Technology Inc."
},
{
"slot": "Ethernet controller",
"class": "Realtek Semiconductor Co., Ltd.",
"vendor": "RTL8111/8168/8211/8411 PCI Express Gigabit Ethernet Controller",
"device": "Gigabyte Technology Co., Ltd"
},
{
"slot": "Non-Volatile memory controller",
"class": "Micron/Crucial Technology",
"vendor": "P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)",
"device": "Micron/Crucial Technology"
},
{
"slot": "VGA compatible controller",
"class": "NVIDIA Corporation",
"vendor": "GA106 [GeForce RTX 3060 Lite Hash Rate]",
"device": "Gigabyte Technology Co., Ltd"
},
{
"slot": "Audio device",
"class": "NVIDIA Corporation",
"vendor": "GA106 High Definition Audio Controller",
"device": "Gigabyte Technology Co., Ltd"
},
{
"slot": "Non-Essential Instrumentation [1300]",
"class": "Advanced Micro Devices, Inc. [AMD]",
"vendor": "Starship/Matisse PCIe Dummy Function",
"device": "Advanced Micro Devices, Inc. [AMD]"
},
{
"slot": "Non-Essential Instrumentation [1300]",
"class": "Advanced Micro Devices, Inc. [AMD]",
"vendor": "Starship/Matisse Reserved SPP",
"device": "Advanced Micro Devices, Inc. [AMD]"
},
{
"slot": "Encryption controller",
"class": "Advanced Micro Devices, Inc. [AMD]",
"vendor": "Starship/Matisse Cryptographic Coprocessor PSPCPP",
"device": "Advanced Micro Devices, Inc. [AMD]"
},
{
"slot": "USB controller",
"class": "Advanced Micro Devices, Inc. [AMD]",
"vendor": "Matisse USB 3.0 Host Controller",
"device": "Gigabyte Technology Co., Ltd"
},
{
"slot": "Audio device",
"class": "Advanced Micro Devices, Inc. [AMD]",
"vendor": "Starship/Matisse HD Audio Controller",
"device": "Gigabyte Technology Co., Ltd"
}
],
"usb_devices": [
{
"bus": "001",
"device": "001",
"vendor_id": "1d6b",
"product_id": "0002",
"name": "Linux Foundation 2.0 root hub"
},
{
"bus": "001",
"device": "002",
"vendor_id": "058f",
"product_id": "6362",
"name": "Alcor Micro Corp. Flash Card Reader/Writer"
},
{
"bus": "002",
"device": "001",
"vendor_id": "1d6b",
"product_id": "0003",
"name": "Linux Foundation 3.0 root hub"
},
{
"bus": "003",
"device": "001",
"vendor_id": "1d6b",
"product_id": "0002",
"name": "Linux Foundation 2.0 root hub"
},
{
"bus": "003",
"device": "003",
"vendor_id": "046d",
"product_id": "c52b",
"name": "Logitech, Inc. Unifying Receiver"
},
{
"bus": "003",
"device": "004",
"vendor_id": "0bda",
"product_id": "b711",
"name": "Realtek Semiconductor Corp. RTL8188GU 802.11n WLAN Adapter (After Modeswitch)"
},
{
"bus": "004",
"device": "001",
"vendor_id": "1d6b",
"product_id": "0003",
"name": "Linux Foundation 3.0 root hub"
}
],
"network_shares": [],
"network": {
"interfaces": [
{
"name": "eno1",
"type": "ethernet",
"mac": "18:c0:4d:b5:65:74",
"ip": "10.0.1.109",
"speed_mbps": 1000,
"driver": "r8169",
"ssid": "",
"wake_on_lan": false
},
{
"name": "wlxe84e06a6c1fc",
"type": "wifi",
"mac": "06:06:19:aa:1b:c8",
"ip": "",
"speed_mbps": null,
"driver": "rtl8xxxu",
"ssid": "",
"wake_on_lan": false
}
]
},
"motherboard": {
"vendor": "Gigabyte Technology Co., Ltd.",
"model": "B450 AORUS ELITE",
"bios_vendor": "American Megatrends International, LLC.",
"bios_version": "F65e",
"bios_date": "09/20/2023"
},
"os": {
"name": "Debian GNU/Linux",
"version": "13 (trixie)",
"kernel_version": "6.12.57+deb13-amd64",
"architecture": "x86_64",
"session_type": "",
"display_server": "",
"screen_resolution": "5560 x 1920",
"last_boot_time": "démarrage système 2026-01-11 09:11",
"uptime_seconds": 40816.12,
"battery_percentage": null,
"battery_status": "",
"battery_health": "",
"hostname": "aorus",
"virtualization_type": "kvm-host",
"desktop_environment": "GNOME"
},
"sensors": {
"cpu_temp_c": null,
"disk_temps_c": {
"nvme-pci-0100:Composite": 32.85,
"nvme-pci-0700:Composite": 32.85
},
"sensors": [
{
"chip": "nvme-pci-0100",
"name": "Composite",
"type": "temperature",
"value": 32.85,
"unit": "°C",
"alarm": false
},
{
"chip": "nvme-pci-0700",
"name": "Composite",
"type": "temperature",
"value": 32.85,
"unit": "°C",
"alarm": false
},
{
"chip": "acpitz-acpi-0",
"name": "temp1",
"type": "temperature",
"value": 16.8,
"unit": "°C",
"alarm": false
},
{
"chip": "k10temp-pci-00c3",
"name": "Tctl",
"type": "temperature",
"value": 37,
"unit": "°C",
"alarm": false
},
{
"chip": "k10temp-pci-00c3",
"name": "Tccd1",
"type": "temperature",
"value": 40.75,
"unit": "°C",
"alarm": false
},
{
"chip": "k10temp-pci-00c3",
"name": "Tccd2",
"type": "temperature",
"value": 30.5,
"unit": "°C",
"alarm": false
}
]
},
"audio": {
"hardware": {
"pci_audio_devices": [
"08:00.1 Audio device: NVIDIA Corporation GA106 High Definition Audio Controller (rev a1)",
"0a:00.4 Audio device: Advanced Micro Devices, Inc. [AMD] Starship/Matisse HD Audio Controller"
],
"alsa_playback": "**** Liste des périphériques matériels PLAYBACK ****\ncarte 0 : NVidia [HDA NVidia], périphérique 3 : HDMI 0 [LG ULTRAWIDE]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\ncarte 0 : NVidia [HDA NVidia], périphérique 7 : HDMI 1 [K243Y]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\ncarte 0 : NVidia [HDA NVidia], périphérique 8 : HDMI 2 [HDMI 2]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\ncarte 0 : NVidia [HDA NVidia], périphérique 9 : HDMI 3 [HDMI 3]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\ncarte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]\n Sous-périphériques : 0/1\n Sous-périphérique #0 : subdevice #0\ncarte 1 : Generic [HD-Audio Generic], périphérique 1 : ALC892 Digital [ALC892 Digital]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\n",
"alsa_capture": "**** Liste des périphériques matériels CAPTURE ****\ncarte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\ncarte 1 : Generic [HD-Audio Generic], périphérique 2 : ALC892 Alt Analog [ALC892 Alt Analog]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\n",
"pcm_devices": [
"null",
"Discard all samples (playback) or generate zero samples (capture)",
"pipewire",
"PipeWire Sound Server",
"default",
"Default ALSA Output (currently PipeWire Media Server)",
"hw:CARD=NVidia,DEV=3",
"HDA NVidia, LG ULTRAWIDE",
"Direct hardware device without any conversions",
"hw:CARD=NVidia,DEV=7",
"HDA NVidia, K243Y",
"Direct hardware device without any conversions",
"hw:CARD=NVidia,DEV=8",
"HDA NVidia, HDMI 2",
"Direct hardware device without any conversions",
"hw:CARD=NVidia,DEV=9",
"HDA NVidia, HDMI 3",
"Direct hardware device without any conversions",
"plughw:CARD=NVidia,DEV=3",
"HDA NVidia, LG ULTRAWIDE",
"Hardware device with all software conversions",
"plughw:CARD=NVidia,DEV=7",
"HDA NVidia, K243Y",
"Hardware device with all software conversions",
"plughw:CARD=NVidia,DEV=8",
"HDA NVidia, HDMI 2",
"Hardware device with all software conversions",
"plughw:CARD=NVidia,DEV=9",
"HDA NVidia, HDMI 3",
"Hardware device with all software conversions",
"hdmi:CARD=NVidia,DEV=0",
"HDA NVidia, LG ULTRAWIDE",
"HDMI Audio Output",
"hdmi:CARD=NVidia,DEV=1",
"HDA NVidia, K243Y",
"HDMI Audio Output",
"hdmi:CARD=NVidia,DEV=2",
"HDA NVidia, HDMI 2",
"HDMI Audio Output",
"hdmi:CARD=NVidia,DEV=3",
"HDA NVidia, HDMI 3",
"HDMI Audio Output",
"dmix:CARD=NVidia,DEV=3",
"HDA NVidia, LG ULTRAWIDE",
"Direct sample mixing device",
"dmix:CARD=NVidia,DEV=7",
"HDA NVidia, K243Y",
"Direct sample mixing device",
"dmix:CARD=NVidia,DEV=8",
"HDA NVidia, HDMI 2",
"Direct sample mixing device",
"dmix:CARD=NVidia,DEV=9",
"HDA NVidia, HDMI 3",
"Direct sample mixing device",
"hw:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"Direct hardware device without any conversions",
"hw:CARD=Generic,DEV=1",
"HD-Audio Generic, ALC892 Digital",
"Direct hardware device without any conversions",
"plughw:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"Hardware device with all software conversions",
"plughw:CARD=Generic,DEV=1",
"HD-Audio Generic, ALC892 Digital",
"Hardware device with all software conversions",
"sysdefault:CARD=Generic",
"HD-Audio Generic, ALC892 Analog",
"Default Audio Device",
"front:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"Front output / input",
"surround21:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"2.1 Surround output to Front and Subwoofer speakers",
"surround40:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"4.0 Surround output to Front and Rear speakers",
"surround41:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"4.1 Surround output to Front, Rear and Subwoofer speakers",
"surround50:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"5.0 Surround output to Front, Center and Rear speakers",
"surround51:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"5.1 Surround output to Front, Center, Rear and Subwoofer speakers",
"surround71:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"7.1 Surround output to Front, Center, Side, Rear and Woofer speakers",
"iec958:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Digital",
"IEC958 (S/PDIF) Digital Audio Output",
"dmix:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"Direct sample mixing device",
"dmix:CARD=Generic,DEV=1",
"HD-Audio Generic, ALC892 Digital",
"Direct sample mixing device"
]
},
"software": {
"backend": "",
"server_name": "",
"server_version": "",
"default_sink": null,
"default_source": null,
"sinks": null,
"sources": null
}
},
"raw_info": {
"debug": "active",
"dmidecode": "# dmidecode 3.6\nGetting SMBIOS data from sysfs.\nSMBIOS 3.3.0 present.\n\nHandle 0x0000, DMI type 0, 26 bytes\nBIOS Information\n\tVendor: American Megatrends International, LLC.\n\tVersion: F65e\n\tRelease Date: 09/20/2023\n\tAddress: 0xF0000\n\tRuntime Size: 64 kB\n\tROM Size: 16 MB\n\tCharacteristics:\n\t\tPCI is supported\n\t\tBIOS is upgradeable\n\t\tBIOS shadowing is allowed\n\t\tBoot from CD is supported\n\t\tSelectable boot is supported\n\t\tBIOS ROM is socketed\n\t\tEDD is supported\n\t\tJapanese floppy for NEC 9800 1.2 MB is supported (int 13h)\n\t\tJapanese floppy for Toshiba 1.2 MB is supported (int 13h)\n\t\t5.25\"/360 kB floppy services are supported (int 13h)\n\t\t5.25\"/1.2 MB floppy services are supported (int 13h)\n\t\t3.5\"/720 kB floppy services are supported (int 13h)\n\t\t3.5\"/2.88 MB floppy services are supported (int 13h)\n\t\tPrint screen service is supported (int 5h)\n\t\tSerial services are supported (int 14h)\n\t\tPrinter services are supported (int 17h)\n\t\tCGA/mono video services are supported (int 10h)\n\t\tUSB legacy is supported\n\t\tBIOS boot specification is supported\n\t\tTargeted content distribution is supported\n\t\tUEFI is supported\n\tBIOS Revision: 5.17\n\nHandle 0x0001, DMI type 1, 27 bytes\nSystem Information\n\tManufacturer: Gigabyte Technology Co., Ltd.\n\tProduct Name: B450 AORUS ELITE\n\tVersion: Default string\n\tSerial Number: Default string\n\tUUID: 03c00218-044d-05b5-6506-740700080009\n\tWake-up Type: Power Switch\n\tSKU Number: Default string\n\tFamily: B450 MB\n\nHandle 0x0002, DMI type 2, 15 bytes\nBase Board Information\n\tManufacturer: Gigabyte Technology Co., Ltd.\n\tProduct Name: B450 AORUS ELITE\n\tVersion: Default string\n\tSerial Number: Default string\n\tAsset Tag: Default string\n\tFeatures:\n\t\tBoard is a hosting board\n\t\tBoard is replaceable\n\tLocation In Chassis: Default string\n\tChassis Handle: 0x0003\n\tType: Motherboard\n\tContained Object Handles: 0\n\nHandle 0x000B, DMI type 16, 23 bytes\nPhysical Memory Array\n\tLocation: System Board Or Motherboard\n\tUse: System Memory\n\tError Correction Type: None\n\tMaximum Capacity: 128 GB\n\tError Information Handle: 0x000A\n\tNumber Of Devices: 4\n\nHandle 0x0013, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0012\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 16 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 0\n\tBank Locator: P0 CHANNEL A\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: 00000000\n\tAsset Tag: Not Specified\n\tPart Number: CMW32GX4M2E3200C16 \n\tRank: 2\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: Unknown\n\tMaximum Voltage: Unknown\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 3, Hex 0x9E\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 16 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x0016, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0015\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 8 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 1\n\tBank Locator: P0 CHANNEL A\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: E3C4408B\n\tAsset Tag: Not Specified\n\tPart Number: BL8G32C16U4BL.M8FE\n\tRank: 1\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: 1.2 V\n\tMaximum Voltage: 1.2 V\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 6, Hex 0x9B\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 8 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x0019, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0018\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 16 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 0\n\tBank Locator: P0 CHANNEL B\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: 00000000\n\tAsset Tag: Not Specified\n\tPart Number: CMW32GX4M2E3200C16 \n\tRank: 2\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: Unknown\n\tMaximum Voltage: Unknown\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 3, Hex 0x9E\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 16 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x001C, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x001B\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 8 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 1\n\tBank Locator: P0 CHANNEL B\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: E3C44087\n\tAsset Tag: Not Specified\n\tPart Number: BL8G32C16U4BL.M8FE\n\tRank: 1\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: 1.2 V\n\tMaximum Voltage: 1.2 V\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 6, Hex 0x9B\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 8 GB\n\tCache Size: None\n\tLogical Size: None\n\n",
"lsblk": "NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS\nloop0 7:0 0 118,5M 1 loop /snap/iptvnator/92\nloop1 7:1 0 48,1M 1 loop /snap/snapd/25935\nloop2 7:2 0 50,9M 1 loop /snap/snapd/25577\nloop3 7:3 0 4K 1 loop /snap/bare/5\nloop4 7:4 0 91,7M 1 loop /snap/gtk-common-themes/1535\nloop5 7:5 0 55,5M 1 loop /snap/core18/2976\nloop6 7:6 0 164,8M 1 loop /snap/gnome-3-28-1804/198\nloop7 7:7 0 0B 0 loop \nsda 8:0 0 447,1G 0 disk \n└─sda1 8:1 0 447,1G 0 part \nsdb 8:16 1 0B 0 disk \nsdc 8:32 1 0B 0 disk \nsdd 8:48 1 0B 0 disk \nsde 8:64 1 0B 0 disk \nnvme0n1 259:0 0 465,8G 0 disk \n├─nvme0n1p1 259:1 0 976M 0 part /boot/efi\n├─nvme0n1p2 259:2 0 440,8G 0 part /\n└─nvme0n1p3 259:3 0 24G 0 part [SWAP]\nnvme1n1 259:4 0 465,8G 0 disk \n├─nvme1n1p1 259:5 0 50M 0 part \n├─nvme1n1p2 259:6 0 464,3G 0 part \n├─nvme1n1p3 259:7 0 808M 0 part \n├─nvme1n1p4 259:8 0 100M 0 part \n└─nvme1n1p5 259:9 0 522M 0 part \n",
"lscpu": "Architecture : x86_64\nMode(s) opératoire(s) des processeurs : 32-bit, 64-bit\nTailles des adresses: 48 bits physical, 48 bits virtual\nBoutisme : Little Endian\nProcesseur(s) : 24\nListe de processeur(s) en ligne : 0-23\nIdentifiant constructeur : AuthenticAMD\nNom de modèle : AMD Ryzen 9 5900X 12-Core Processor\nFamille de processeur : 25\nModèle : 33\nThread(s) par cœur : 2\nCœur(s) par socket : 12\nSocket(s) : 1\nRévision : 2\nAccroissement de fréquence : activé\nmultiplication des MHz du/des CPU(s) : 76%\nVitesse maximale du processeur en MHz : 4951,0000\nVitesse minimale du processeur en MHz : 550,0000\nBogoMIPS : 7399,98\nDrapeaux : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local user_shstk clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm debug_swap\nVirtualisation : AMD-V\nCache L1d : 384 KiB (12 instances)\nCache L1i : 384 KiB (12 instances)\nCache L2 : 6 MiB (12 instances)\nCache L3 : 64 MiB (2 instances)\nNœud(s) NUMA : 1\nNœud NUMA 0 de processeur(s) : 0-23\nVulnérabilité Gather data sampling : Not affected\nVulnérabilité Indirect target selection : Not affected\nVulnérabilité Itlb multihit : Not affected\nVulnérabilité L1tf : Not affected\nVulnérabilité Mds : Not affected\nVulnérabilité Meltdown : Not affected\nVulnérabilité Mmio stale data : Not affected\nVulnérabilité Reg file data sampling : Not affected\nVulnérabilité Retbleed : Not affected\nVulnérabilité Spec rstack overflow : Mitigation; Safe RET\nVulnérabilité Spec store bypass : Mitigation; Speculative Store Bypass disabled via prctl\nVulnérabilité Spectre v1 : Mitigation; usercopy/swapgs barriers and __user pointer sanitization\nVulnérabilité Spectre v2 : Mitigation; Retpolines; IBPB conditional; IBRS_FW; STIBP always-on; RSB filling; PBRSB-eIBRS Not affected; BHI Not affected\nVulnérabilité Srbds : Not affected\nVulnérabilité Tsa : Vulnerable: Clear CPU buffers attempted, no microcode\nVulnérabilité Tsx async abort : Not affected\nVulnérabilité Vmscape : Mitigation; IBPB before exit to userspace\n"
}
},
"results": {
"cpu": {
"events_per_sec": 37055.185,
"events_per_sec_single": 5597.83,
"events_per_sec_multi": 68512.54,
"duration_s": 20.0004,
"score": 37055.185,
"score_single": 5597.83,
"score_multi": 68512.54
},
"memory": {
"throughput_mib_s": 8403.44,
"score": 8403.44
},
"disk": {
"read_mb_s": 1.007308006286621,
"write_mb_s": 1.0068292617797852,
"iops_read": 264059.966667,
"iops_write": 263934.333333,
"latency_ms": 0.000464654949,
"score": 1.0070686340332031
},
"network": {
"upload_mbps": 941.3624878143848,
"download_mbps": 938.940941573623,
"ping_ms": 0.661,
"jitter_ms": null,
"packet_loss_percent": null,
"score": 940.1517146940039
},
"gpu": {
"glmark2_score": null,
"score": null
},
"global_score": 76733.22385196207
},
"raw_info": {
"debug": "active",
"dmidecode": "# dmidecode 3.6\nGetting SMBIOS data from sysfs.\nSMBIOS 3.3.0 present.\n\nHandle 0x0000, DMI type 0, 26 bytes\nBIOS Information\n\tVendor: American Megatrends International, LLC.\n\tVersion: F65e\n\tRelease Date: 09/20/2023\n\tAddress: 0xF0000\n\tRuntime Size: 64 kB\n\tROM Size: 16 MB\n\tCharacteristics:\n\t\tPCI is supported\n\t\tBIOS is upgradeable\n\t\tBIOS shadowing is allowed\n\t\tBoot from CD is supported\n\t\tSelectable boot is supported\n\t\tBIOS ROM is socketed\n\t\tEDD is supported\n\t\tJapanese floppy for NEC 9800 1.2 MB is supported (int 13h)\n\t\tJapanese floppy for Toshiba 1.2 MB is supported (int 13h)\n\t\t5.25\"/360 kB floppy services are supported (int 13h)\n\t\t5.25\"/1.2 MB floppy services are supported (int 13h)\n\t\t3.5\"/720 kB floppy services are supported (int 13h)\n\t\t3.5\"/2.88 MB floppy services are supported (int 13h)\n\t\tPrint screen service is supported (int 5h)\n\t\tSerial services are supported (int 14h)\n\t\tPrinter services are supported (int 17h)\n\t\tCGA/mono video services are supported (int 10h)\n\t\tUSB legacy is supported\n\t\tBIOS boot specification is supported\n\t\tTargeted content distribution is supported\n\t\tUEFI is supported\n\tBIOS Revision: 5.17\n\nHandle 0x0001, DMI type 1, 27 bytes\nSystem Information\n\tManufacturer: Gigabyte Technology Co., Ltd.\n\tProduct Name: B450 AORUS ELITE\n\tVersion: Default string\n\tSerial Number: Default string\n\tUUID: 03c00218-044d-05b5-6506-740700080009\n\tWake-up Type: Power Switch\n\tSKU Number: Default string\n\tFamily: B450 MB\n\nHandle 0x0002, DMI type 2, 15 bytes\nBase Board Information\n\tManufacturer: Gigabyte Technology Co., Ltd.\n\tProduct Name: B450 AORUS ELITE\n\tVersion: Default string\n\tSerial Number: Default string\n\tAsset Tag: Default string\n\tFeatures:\n\t\tBoard is a hosting board\n\t\tBoard is replaceable\n\tLocation In Chassis: Default string\n\tChassis Handle: 0x0003\n\tType: Motherboard\n\tContained Object Handles: 0\n\nHandle 0x000B, DMI type 16, 23 bytes\nPhysical Memory Array\n\tLocation: System Board Or Motherboard\n\tUse: System Memory\n\tError Correction Type: None\n\tMaximum Capacity: 128 GB\n\tError Information Handle: 0x000A\n\tNumber Of Devices: 4\n\nHandle 0x0013, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0012\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 16 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 0\n\tBank Locator: P0 CHANNEL A\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: 00000000\n\tAsset Tag: Not Specified\n\tPart Number: CMW32GX4M2E3200C16 \n\tRank: 2\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: Unknown\n\tMaximum Voltage: Unknown\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 3, Hex 0x9E\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 16 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x0016, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0015\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 8 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 1\n\tBank Locator: P0 CHANNEL A\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: E3C4408B\n\tAsset Tag: Not Specified\n\tPart Number: BL8G32C16U4BL.M8FE\n\tRank: 1\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: 1.2 V\n\tMaximum Voltage: 1.2 V\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 6, Hex 0x9B\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 8 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x0019, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0018\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 16 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 0\n\tBank Locator: P0 CHANNEL B\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: 00000000\n\tAsset Tag: Not Specified\n\tPart Number: CMW32GX4M2E3200C16 \n\tRank: 2\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: Unknown\n\tMaximum Voltage: Unknown\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 3, Hex 0x9E\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 16 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x001C, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x001B\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 8 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 1\n\tBank Locator: P0 CHANNEL B\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: E3C44087\n\tAsset Tag: Not Specified\n\tPart Number: BL8G32C16U4BL.M8FE\n\tRank: 1\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: 1.2 V\n\tMaximum Voltage: 1.2 V\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 6, Hex 0x9B\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 8 GB\n\tCache Size: None\n\tLogical Size: None\n\n",
"lsblk": "NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS\nloop0 7:0 0 118,5M 1 loop /snap/iptvnator/92\nloop1 7:1 0 48,1M 1 loop /snap/snapd/25935\nloop2 7:2 0 50,9M 1 loop /snap/snapd/25577\nloop3 7:3 0 4K 1 loop /snap/bare/5\nloop4 7:4 0 91,7M 1 loop /snap/gtk-common-themes/1535\nloop5 7:5 0 55,5M 1 loop /snap/core18/2976\nloop6 7:6 0 164,8M 1 loop /snap/gnome-3-28-1804/198\nloop7 7:7 0 0B 0 loop \nsda 8:0 0 447,1G 0 disk \n└─sda1 8:1 0 447,1G 0 part \nsdb 8:16 1 0B 0 disk \nsdc 8:32 1 0B 0 disk \nsdd 8:48 1 0B 0 disk \nsde 8:64 1 0B 0 disk \nnvme0n1 259:0 0 465,8G 0 disk \n├─nvme0n1p1 259:1 0 976M 0 part /boot/efi\n├─nvme0n1p2 259:2 0 440,8G 0 part /\n└─nvme0n1p3 259:3 0 24G 0 part [SWAP]\nnvme1n1 259:4 0 465,8G 0 disk \n├─nvme1n1p1 259:5 0 50M 0 part \n├─nvme1n1p2 259:6 0 464,3G 0 part \n├─nvme1n1p3 259:7 0 808M 0 part \n├─nvme1n1p4 259:8 0 100M 0 part \n└─nvme1n1p5 259:9 0 522M 0 part \n",
"lscpu": "Architecture : x86_64\nMode(s) opératoire(s) des processeurs : 32-bit, 64-bit\nTailles des adresses: 48 bits physical, 48 bits virtual\nBoutisme : Little Endian\nProcesseur(s) : 24\nListe de processeur(s) en ligne : 0-23\nIdentifiant constructeur : AuthenticAMD\nNom de modèle : AMD Ryzen 9 5900X 12-Core Processor\nFamille de processeur : 25\nModèle : 33\nThread(s) par cœur : 2\nCœur(s) par socket : 12\nSocket(s) : 1\nRévision : 2\nAccroissement de fréquence : activé\nmultiplication des MHz du/des CPU(s) : 76%\nVitesse maximale du processeur en MHz : 4951,0000\nVitesse minimale du processeur en MHz : 550,0000\nBogoMIPS : 7399,98\nDrapeaux : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local user_shstk clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm debug_swap\nVirtualisation : AMD-V\nCache L1d : 384 KiB (12 instances)\nCache L1i : 384 KiB (12 instances)\nCache L2 : 6 MiB (12 instances)\nCache L3 : 64 MiB (2 instances)\nNœud(s) NUMA : 1\nNœud NUMA 0 de processeur(s) : 0-23\nVulnérabilité Gather data sampling : Not affected\nVulnérabilité Indirect target selection : Not affected\nVulnérabilité Itlb multihit : Not affected\nVulnérabilité L1tf : Not affected\nVulnérabilité Mds : Not affected\nVulnérabilité Meltdown : Not affected\nVulnérabilité Mmio stale data : Not affected\nVulnérabilité Reg file data sampling : Not affected\nVulnérabilité Retbleed : Not affected\nVulnérabilité Spec rstack overflow : Mitigation; Safe RET\nVulnérabilité Spec store bypass : Mitigation; Speculative Store Bypass disabled via prctl\nVulnérabilité Spectre v1 : Mitigation; usercopy/swapgs barriers and __user pointer sanitization\nVulnérabilité Spectre v2 : Mitigation; Retpolines; IBPB conditional; IBRS_FW; STIBP always-on; RSB filling; PBRSB-eIBRS Not affected; BHI Not affected\nVulnérabilité Srbds : Not affected\nVulnérabilité Tsa : Vulnerable: Clear CPU buffers attempted, no microcode\nVulnérabilité Tsx async abort : Not affected\nVulnérabilité Vmscape : Mitigation; IBPB before exit to userspace\n"
}
}
[DEBUG] Payload sauvegardé au format JSON dans bench_payload_last.json (49676 octets)
[DEBUG] Contenu de /home/gilles/Documents/vscode/bis/bench_go/config.yaml :
# bench-client config.yaml
# Objectif: décrire précisément
# - les outils à utiliser (et exigences d'installation)
# - les informations à collecter
# - les benchmarks à exécuter
# - les paramètres (timeouts, limites, endpoints, debug)
#
# Le binaire (Go/Rust) charge ce fichier depuis HTTP(S), valide les bornes, applique des defaults sûrs,
# et peut fallback sur une config locale si indisponible.
config_version: 1
profile: default
backend:
# URL finale du POST (le programme peut aussi accepter server_base_url + path)
url: "http://10.0.0.50:8007/api/benchmark"
# Auth: idéalement injecté par variable d'env sur le client; éviter de mettre le token dans la config distante.
auth:
mode: bearer_env
env_var: "test_hardware_perf"
http:
timeout_s: 15
retries: 2
retry_backoff_s: 2
tls:
verify: true
remote_config:
# Options de cache/ETag si le binaire gère le rafraîchissement
cache_path: "/var/cache/bench-client/config.yaml"
use_etag: true
refresh_max_age_s: 86400
runtime:
# Timeouts globaux de sécurité
max_total_runtime_s: 480
command_timeout_s: 30
command_timeout_overrides:
dmidecode_s: 20
smartctl_s: 10
lsblk_s: 10
sysbench_cpu_s: 120
sysbench_mem_s: 60
fio_s: 120
iperf3_s: 20
temp_dir: "/tmp"
locale: "C"
path_prepend:
- "/usr/sbin"
- "/sbin"
logging:
level: info # trace|debug|info|warn|error
progress: true # affichage étapes (1/N) + items
show_command_lines: false
capture_raw_output: true # remonte dans raw_info (attention taille)
raw_output_max_kb: 5120
save_payload_to_tmp: true
payload_tmp_dir: "/tmp"
payload_filename_prefix: "bench_payload_"
interactive_pause_on_debug: true
payload:
dir: "."
prefix: "bench_payload_"
always_save: true
device_identity:
# device_identifier envoyé au backend
prefer:
- hostname
- machine_id
hostname_command: "hostname"
machine_id_path: "/etc/machine-id"
dependencies:
# Liste des programmes externes (installés par le script shell)
# Le binaire doit pouvoir:
# - détecter présence/version (optionnel)
# - marquer chaque "feature" comme disponible ou non
required_base:
- name: "curl"
purpose: "Téléchargements/diagnostics (souvent côté script)"
- name: "jq"
purpose: "Optionnel: debug/validation (souvent côté script, pas nécessaire au binaire)"
- name: "lscpu"
purpose: "Infos CPU"
- name: "free"
purpose: "Infos mémoire"
- name: "lsblk"
purpose: "Infos stockage/partitions"
- name: "ip"
purpose: "Interfaces réseau, adresses IP"
- name: "bc"
purpose: "Optionnel: calculs (si pas fait en code)"
- name: "dmidecode"
purpose: "Infos BIOS/carte mère/RAM/DMI"
requires_root: true
- name: "smartctl"
package: "smartmontools"
purpose: "Infos disques SMART"
requires_root: true
- name: "ethtool"
purpose: "Vitesse réseau, Wake-on-LAN, driver"
requires_root: true
- name: "lspci"
package: "pciutils"
purpose: "Liste périphériques PCI (GPU/Audio/etc.)"
- name: "lsusb"
package: "usbutils"
purpose: "Liste périphériques USB"
- name: "aplay"
package: "alsa-utils"
purpose: "Inventaire audio ALSA"
- name: "arecord"
package: "alsa-utils"
purpose: "Inventaire capture ALSA"
- name: "pactl"
package: "pulseaudio-utils"
purpose: "Infos audio PulseAudio/PipeWire (si dispo)"
- name: "iw"
package: "iw"
purpose: "SSID + bitrate Wi-Fi"
- name: "loginctl"
package: "systemd"
purpose: "Type de session (x11/wayland/tty)"
- name: "xrandr"
package: "x11-xserver-utils"
purpose: "Résolution écran (X11)"
- name: "xdpyinfo"
package: "x11-utils"
purpose: "Résolution écran (fallback X11)"
- name: "swaymsg"
package: "sway"
purpose: "Résolution écran (Wayland/Sway)"
- name: "nvidia-smi"
package: "nvidia-utils"
purpose: "Infos GPU NVIDIA (si présent)"
- name: "systemd-detect-virt"
package: "systemd"
purpose: "Détection virtualisation/proxmox"
- name: "pveversion"
package: "pve-manager"
purpose: "Détection hôte Proxmox (si présent)"
benchmark_tools:
- name: "sysbench"
purpose: "Bench CPU et mémoire"
- name: "fio"
purpose: "Bench disque"
- name: "iperf3"
purpose: "Bench réseau"
- name: "ping"
package: "iputils-ping"
purpose: "Vérifier accessibilité iperf server"
- name: "nc"
package: "netcat-openbsd"
purpose: "Tester port 5201 iperf3"
collection:
# Liste des infos à récupérer, structurées comme dans ton script.
system:
enabled: true
items:
- hostname
- os_id
- os_version
- kernel_version
- architecture
- session_type # XDG_SESSION_TYPE / loginctl / DISPLAY / WAYLAND_DISPLAY
- screen_resolution # xrandr/xdpyinfo/swaymsg
- last_boot_time # who -b
- uptime_seconds # /proc/uptime
- battery_percentage # /sys/class/power_supply/BAT*/capacity
- battery_status # /sys/class/power_supply/BAT*/status
- battery_health # /sys/class/power_supply/BAT*/health ou uevent
- virtualization # systemd-detect-virt + proxmox hints
virtualization_detection:
enabled: true
proxmox:
detect_host_by:
- pveversion
- "/etc/pve"
detect_guest_by:
- systemd_detect_virt
- qemu_guest_agent
- dmidecode_manufacturer_product_matches: ["qemu", "proxmox"]
capture:
- is_proxmox_host
- is_proxmox_guest
- proxmox_version
- virtualization_type
cpu:
enabled: true
source:
primary: lscpu
supplement_dmidecode: true
items:
- vendor
- model
- cores_physical # cores_per_socket * sockets
- threads # nproc
- base_freq_ghz # lscpu CPU MHz -> GHz
- max_freq_ghz # lscpu CPU max MHz -> GHz
- cache_l1_kb
- cache_l2_kb
- cache_l3_kb
- flags # CPU flags list
- microarchitecture # depuis dmidecode type 4 (Family) si manquant
raw_capture:
- lscpu_output
ram:
enabled: true
sources:
- free
- dmidecode
items:
- total_mb
- used_mb
- free_mb
- shared_mb
- slots_total # dmidecode -t 16
- slots_used # dmidecode -t 17
- max_capacity_mb # dmidecode -t 16 Maximum Capacity
- ecc # dmidecode -t memory Error Correction Type
- layout # par slot: locator, size, type, speed, configured_speed, form_factor, type_detail, rank, manufacturer, part_number
raw_capture:
- dmidecode_full
gpu:
enabled: true
sources:
- lspci
- nvidia_smi_optional
items:
- vendor # NVIDIA/AMD/Intel/Unknown
- model # lspci vga/3d ou nvidia-smi name
- memory_dedicated_mb # nvidia-smi (si dispo)
- driver_version # nvidia-smi (si dispo)
motherboard_bios:
enabled: true
source: dmidecode
items:
- baseboard_manufacturer
- baseboard_product_name
- bios_vendor
- bios_version
- bios_release_date
pci_devices:
enabled: true
source: lspci
items:
- slot
- class
- vendor
- device
usb_devices:
enabled: true
source: lsusb
items:
- bus
- device
- vendor_id
- product_id
- name
audio:
enabled: true
sources:
- lspci
- alsa
- pactl_optional
items:
hardware:
- pci_audio_devices # lspci audio
- alsa_playback # aplay -l
- alsa_capture # arecord -l
- pcm_devices # aplay -L
software:
- backend # pipewire/pulseaudio/alsa
- server_name
- server_version
- default_sink
- default_source
- sinks
- sources
storage:
enabled: true
sources:
- lsblk
- smartctl
devices:
enumerate_by: "lsblk_disks" # lsblk -d -n -o NAME,TYPE
include_removable: false
items:
- device # /dev/sda
- model # smartctl -i
- serial # smartctl -i
- size # lsblk
- type # rota -> ssd/hdd
- interface # tran
- temperature_c # smartctl -A
- smart_health # smartctl -H
partitions:
enabled: true
source: lsblk_json
items:
- name
- mount_point
- fs_type
- total_gb
- used_gb
- free_gb
raw_capture:
- lsblk_output
network_shares:
enabled: true
source: "/proc/mounts"
detect_fs_types:
- nfs
- nfs4
- cifs
- smbfs
- fuse.cifs
- fuse.smbfs
- afp
- afpfs
- fuse.afpfs
- sshfs
- fuse.sshfs
- ftpfs
- curlftpfs
- fuse.ftpfs
- davfs
- davfs2
- fuse.webdavfs
items:
- protocol
- source
- mount_point
- fs_type
- options
- total_gb
- used_gb
- free_gb
network:
enabled: true
sources:
- ip
- ethtool
- iw_optional
interface_filter:
# reprise logique script: UP|UNKNOWN sauf interfaces virtuelles connues
include_states: ["UP", "UNKNOWN"]
exclude_name_prefixes: ["lo", "docker", "br-", "veth", "tap", "fw"]
items:
- name
- type # bridge|ethernet|wifi|unknown
- mac
- ip_address
- speed_mbps # ethtool speed ou iw tx bitrate
- driver # ethtool -i ou /sys/.../driver
- ssid # iw dev link
- wake_on_lan # ethtool Wake-on
raw_info:
enabled: true
include:
- lscpu
- lsblk
- dmidecode
max_size_kb: 5120
benchmarks:
enabled: true
# Pondérations identiques à ton script (si résultat dispo)
weights:
cpu: 0.40
memory: 0.20
disk: 0.20
network: 0.10
gpu: 0.10
cpu_sysbench:
enabled: true
tool: sysbench
params:
cpu_max_prime: 20000
single_thread: 1
multi_threads: "all" # all -> nproc
outputs:
- events_per_sec_single
- events_per_sec_multi
- duration_s
- score_single
- score_multi
- score_global
memory_sysbench:
enabled: true
tool: sysbench
params:
total_size: "1G"
outputs:
- throughput_mib_s
- score
disk_fio:
enabled: true
tool: fio
safety:
# Empêcher un bench destructif ou trop long
max_runtime_s: 60
max_size: "1G"
direct: 1
params:
name: "bench"
ioengine: "libaio"
rw: "randrw"
bs: "4k"
size: "500M"
numjobs: 1
runtime_s: 30
time_based: true
output_format: "json"
outputs:
- read_mb_s
- write_mb_s
- iops_read
- iops_write
- latency_ms
- score
network_iperf3:
enabled: true
tool: iperf3
server: "10.0.0.50"
port: 5201
prechecks:
ping:
enabled: true
count: 1
timeout_s: 1
port_check:
enabled: true
tool: nc
timeout_s: 2
params:
duration_s: 10
bidir: true
json: true
outputs:
- upload_mbps
- download_mbps
- ping_ms
- score
# placeholders (comme ton script)
- jitter_ms
- packet_loss_percent
gpu:
enabled: false
note: "GPU bench non implémenté dans le script d'origine (placeholder)."
payload_mapping:
# Le binaire peut mapper ses structures internes vers le schéma backend actuel.
# Utile si ton backend attend des champs précis.
device_identifier: "system.hostname"
bench_script_version_field: "bench_client_version"
include_sections:
- hardware
- results
- raw_info
limits:
# Bornes générales de sécurité (validation côté client)
max_payload_kb: 1024
max_raw_info_kb: 5120
max_fio_runtime_s: 60
max_fio_size_bytes: 1073741824 # 1 GiB
max_sysbench_cpu_prime: 50000
max_iperf_duration_s: 30
features:
# Permet d'activer/désactiver rapidement des blocs selon machines
enable_screen_resolution_detection: true
enable_battery_detection: true
enable_network_share_detection: true
enable_audio_detection: true
enable_proxmox_detection: true
[DEBUG] Config chargée : {ConfigVersion:1 Backend:{URL:http://10.0.0.50:8007/api/benchmark Auth:{Mode:bearer_env EnvVar:test_hardware_perf} HTTP:{TimeoutS:15 Retries:2 RetryBackoffS:2 TLSVerify:false}} Runtime:{MaxTotalRuntime:480 CommandTimeout:30 TempDir:/tmp Locale:C PathPrepend:[/usr/sbin /sbin]} Logging:{Level:info Progress:true ShowCommandLines:false CaptureRawOutput:true RawOutputMaxKB:5120 SavePayloadToTmp:true PayloadTmpDir:/tmp PayloadFilenamePrefix:bench_payload_ InteractiveDebugPause:true} Payload:{Dir:. Prefix:bench_payload_ Always:true} Benchmarks:{Enabled:true Weights:map[cpu:0.4 disk:0.2 gpu:0.1 memory:0.2 network:0.1] CPU:{Enabled:true Tool:sysbench Server: Port:0 Params:map[cpu_max_prime:20000 multi_threads:all single_thread:1] Safety:map[]} Memory:{Enabled:true Tool:sysbench Server: Port:0 Params:map[total_size:1G] Safety:map[]} Disk:{Enabled:true Tool:fio Server: Port:0 Params:map[bs:4k ioengine:libaio name:bench numjobs:1 output_format:json runtime_s:30 rw:randrw size:500M time_based:true] Safety:map[direct:1 max_runtime_s:60 max_size:1G]} Network:{Enabled:true Tool:iperf3 Server:10.0.0.50 Port:5201 Params:map[bidir:true duration_s:10 json:true] Safety:map[]}} Collection:{System:{Enabled:true} CPU:{Enabled:true} RAM:{Enabled:true} Storage:{Enabled:true} Network:{Enabled:true} GPU:{Enabled:true} Audio:{Enabled:true} PCI:{Enabled:true} USB:{Enabled:true}} RawInfo:{Enabled:true Include:[lscpu lsblk dmidecode] MaxSizeKB:5120}}
[DEBUG] Configuration complète : {ConfigVersion:1 Backend:{URL:http://10.0.0.50:8007/api/benchmark Auth:{Mode:bearer_env EnvVar:test_hardware_perf} HTTP:{TimeoutS:15 Retries:2 RetryBackoffS:2 TLSVerify:false}} Runtime:{MaxTotalRuntime:480 CommandTimeout:30 TempDir:/tmp Locale:C PathPrepend:[/usr/sbin /sbin]} Logging:{Level:info Progress:true ShowCommandLines:false CaptureRawOutput:true RawOutputMaxKB:5120 SavePayloadToTmp:true PayloadTmpDir:/tmp PayloadFilenamePrefix:bench_payload_ InteractiveDebugPause:true} Payload:{Dir:. Prefix:bench_payload_ Always:true} Benchmarks:{Enabled:true Weights:map[cpu:0.4 disk:0.2 gpu:0.1 memory:0.2 network:0.1] CPU:{Enabled:true Tool:sysbench Server: Port:0 Params:map[cpu_max_prime:20000 multi_threads:all single_thread:1] Safety:map[]} Memory:{Enabled:true Tool:sysbench Server: Port:0 Params:map[total_size:1G] Safety:map[]} Disk:{Enabled:true Tool:fio Server: Port:0 Params:map[bs:4k ioengine:libaio name:bench numjobs:1 output_format:json runtime_s:30 rw:randrw size:500M time_based:true] Safety:map[direct:1 max_runtime_s:60 max_size:1G]} Network:{Enabled:true Tool:iperf3 Server:10.0.0.50 Port:5201 Params:map[bidir:true duration_s:10 json:true] Safety:map[]}} Collection:{System:{Enabled:true} CPU:{Enabled:true} RAM:{Enabled:true} Storage:{Enabled:true} Network:{Enabled:true} GPU:{Enabled:true} Audio:{Enabled:true} PCI:{Enabled:true} USB:{Enabled:true}} RawInfo:{Enabled:true Include:[lscpu lsblk dmidecode] MaxSizeKB:5120}}
[DEBUG] [2/6] Début collecte CPU
[DEBUG] Exec: dmidecode [-t 4]
[DEBUG] [2/6] Détails CPU: {Vendor:AuthenticAMD Model:AMD Ryzen 9 5900X 12-Core Processor Cores:12 Threads:24 BaseFreqGHz:4.951 MaxFreqGHz:4.951 CacheL1KB:768 CacheL2KB:6144 CacheL3KB:32768 Flags:[fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local user_shstk clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm debug_swap] Microarchitecture:Zen TDPW:<nil>}
[DEBUG] [2/6] Début collecte RAM
[DEBUG] SMBIOS détecté : SMBIOS 3.3.0 (54 tables)
[DEBUG] Module SMBIOS détecté : DIMM 0 {Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 }
[DEBUG] Module SMBIOS détecté : DIMM 1 {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE}
[DEBUG] Module SMBIOS détecté : DIMM 0 {Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 }
[DEBUG] Module SMBIOS détecté : DIMM 1 {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE}
[DEBUG] Mémoire SMBIOS : slots_total=10 slots_used=4 ecc=false max=0MB
[DEBUG] [2/6] Détails RAM: {TotalMB:48096 UsedMB:16446 FreeMB:31649 SharedMB:998 SlotsTotal:10 SlotsUsed:4 MaxCapacityMB:48096 ECC:false Layout:[{Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 } {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE} {Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 } {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE}]}
[DEBUG] [2/6] Début collecte GPU
[DEBUG] Exec: lspci []
[DEBUG] Exec: nvidia-smi [--query-gpu=name,driver_version,memory.total --format=csv,noheader,nounits]
[DEBUG] [2/6] Détails GPU: {Vendor:NVIDIA Model:NVIDIA GeForce RTX 3060 DriverVersion:550.163.01 MemoryDedicatedMB:0xc000388010 MemorySharedMB:<nil> APISupport:[]}
[DEBUG] [2/6] Début collecte stockage
[DEBUG] Exec: lsblk [-J -b -o NAME,TYPE,TRAN,VENDOR,MODEL,SERIAL,SIZE]
[DEBUG] SMART open /dev/sdb impossible: unknown drive type
[DEBUG] SMART open /dev/sdc impossible: unknown drive type
[DEBUG] SMART open /dev/sdd impossible: unknown drive type
[DEBUG] SMART open /dev/sde impossible: unknown drive type
[DEBUG] [2/6] Détails stockage: {Devices:[{Name:/dev/nvme0n1 Type:ssd Interface:nvme CapacityGB:465.7617416381836 Vendor:CT500P2SSD8 Model:CT500P2SSD8 Serial:2138E5D60DD8 SmartHealth:PASSED Temperature:33} {Name:/dev/nvme1n1 Type: Interface:nvme CapacityGB:465.7617416381836 Vendor:CT500P2SSD8 Model:CT500P2SSD8 Serial:2108E4FD258D SmartHealth:PASSED Temperature:33} {Name:/dev/sda Type: Interface:sata CapacityGB:447.13167572021484 Vendor:ATA Model:KINGSTON SUV500480G Serial:50026B768226A365 SmartHealth:PASSED Temperature:25} {Name:/dev/sdb Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:Compact Flash Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sdc Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:SD/MMC Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sdd Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:MS/MS-PRO Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sde Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:xD-Picture Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0}] Partitions:[{Name:/dev/nvme0n1p2 MountPoint:/ FSType:ext4 TotalGB:432.80120849609375 UsedGB:0xc0003882d0 FreeGB:0xc0003882d8} {Name:/dev/nvme0n1p1 MountPoint:/boot/efi FSType:vfat TotalGB:0.9512481689453125 UsedGB:0xc000388310 FreeGB:0xc000388318}]}
[DEBUG] [2/6] Début collecte PCI devices
[DEBUG] Exec: lspci [-mm]
[DEBUG] [2/6] Détails PCI: [{Slot:00:00.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Root Complex} {Slot:00:00.2 Class:IOMMU Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse IOMMU} {Slot:00:01.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:01.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse GPP Bridge} {Slot:00:01.3 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse GPP Bridge} {Slot:00:02.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:03.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:03.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse GPP Bridge} {Slot:00:04.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:05.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:07.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:07.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]} {Slot:00:08.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:08.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]} {Slot:00:14.0 Class:SMBus Vendor:Advanced Micro Devices, Inc. [AMD] Device:FCH SMBus Controller} {Slot:00:14.3 Class:ISA bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:FCH LPC Bridge} {Slot:00:18.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 0} {Slot:00:18.1 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 1} {Slot:00:18.2 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 2} {Slot:00:18.3 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 3} {Slot:00:18.4 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 4} {Slot:00:18.5 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 5} {Slot:00:18.6 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 6} {Slot:00:18.7 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 7} {Slot:01:00.0 Class:Non-Volatile memory controller Vendor:Micron/Crucial Technology Device:P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)} {Slot:02:00.0 Class:USB controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset USB 3.1 xHCI Compliant Host Controller} {Slot:02:00.1 Class:SATA controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset SATA Controller} {Slot:02:00.2 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Bridge} {Slot:03:00.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:03:01.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:03:04.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:03:08.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:04:00.0 Class:Ethernet controller Vendor:Realtek Semiconductor Co., Ltd. Device:RTL8111/8168/8211/8411 PCI Express Gigabit Ethernet Controller} {Slot:07:00.0 Class:Non-Volatile memory controller Vendor:Micron/Crucial Technology Device:P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)} {Slot:08:00.0 Class:VGA compatible controller Vendor:NVIDIA Corporation Device:GA106 [GeForce RTX 3060 Lite Hash Rate]} {Slot:08:00.1 Class:Audio device Vendor:NVIDIA Corporation Device:GA106 High Definition Audio Controller} {Slot:09:00.0 Class:Non-Essential Instrumentation [1300] Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Function} {Slot:0a:00.0 Class:Non-Essential Instrumentation [1300] Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Reserved SPP} {Slot:0a:00.1 Class:Encryption controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Cryptographic Coprocessor PSPCPP} {Slot:0a:00.3 Class:USB controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse USB 3.0 Host Controller} {Slot:0a:00.4 Class:Audio device Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse HD Audio Controller}]
[DEBUG] [2/6] Début collecte USB devices
[DEBUG] Exec: lsusb []
[DEBUG] [2/6] Détails USB: [{Bus:001 Device:001 VendorID:1d6b ProductID:0002 Name:Linux Foundation 2.0 root hub} {Bus:001 Device:002 VendorID:058f ProductID:6362 Name:Alcor Micro Corp. Flash Card Reader/Writer} {Bus:002 Device:001 VendorID:1d6b ProductID:0003 Name:Linux Foundation 3.0 root hub} {Bus:003 Device:001 VendorID:1d6b ProductID:0002 Name:Linux Foundation 2.0 root hub} {Bus:003 Device:003 VendorID:046d ProductID:c52b Name:Logitech, Inc. Unifying Receiver} {Bus:003 Device:004 VendorID:0bda ProductID:b711 Name:Realtek Semiconductor Corp. RTL8188GU 802.11n WLAN Adapter (After Modeswitch)} {Bus:004 Device:001 VendorID:1d6b ProductID:0003 Name:Linux Foundation 3.0 root hub}]
[DEBUG] [2/6] Début collecte partages réseau
[DEBUG] [2/6] Détails partages réseau: []
[DEBUG] [2/6] Début collecte interfaces réseau
[DEBUG] Exec: ethtool [eno1]
[DEBUG] Exec: ethtool [-i eno1]
[DEBUG] Exec: ethtool [wlxe84e06a6c1fc]
[DEBUG] Exec: ethtool [-i wlxe84e06a6c1fc]
[DEBUG] Exec: iwgetid [wlxe84e06a6c1fc -r]
[DEBUG] Exec: iw [wlxe84e06a6c1fc link]
[DEBUG] [2/6] Détails réseau: {Interfaces:[{Name:eno1 Type:ethernet MAC:18:c0:4d:b5:65:74 IP:10.0.1.109 SpeedMbps:0xc00011a588 Driver:r8169 SSID: WakeOnLAN:false} {Name:wlxe84e06a6c1fc Type:wifi MAC:2e:08:e3:97:1a:e2 IP: SpeedMbps:<nil> Driver:rtl8xxxu SSID: WakeOnLAN:false}]}
[DEBUG] [2/6] Début collecte carte mère
[DEBUG] Exec: dmidecode [-t 2]
[DEBUG] Exec: dmidecode [-t 0]
[DEBUG] [2/6] Détails carte mère: {Vendor:Gigabyte Technology Co., Ltd. Model:B450 AORUS ELITE BIOSVendor:American Megatrends International, LLC. BIOSVersion:F65e BIOSDate:09/20/2023}
[DEBUG] [2/6] Début collecte OS
[DEBUG] Exec: uname [-r]
[DEBUG] Exec: uname [-m]
[DEBUG] Exec: systemd-detect-virt []
[DEBUG] Exec: xrandr []
[DEBUG] Exec: xrandr [--current]
[DEBUG] Exec: who [-b]
[DEBUG] [2/6] Détails OS: {Name:Debian GNU/Linux Version:13 (trixie) KernelVersion:6.12.57+deb13-amd64 Architecture:x86_64 SessionType: DisplayServer: ScreenResolution:5560 x 1920 LastBootTime:démarrage système 2026-01-11 09:11 UptimeSeconds:42047.39 BatteryPercentage:<nil> BatteryStatus: BatteryHealth: Hostname:aorus VirtualizationType:kvm-host DesktopEnvironment:GNOME}
[DEBUG] [2/6] Début collecte capteurs
[DEBUG] [2/6] Détails capteurs: {CPUTempC:<nil> DiskTempsC:map[nvme-pci-0100:Composite:32.85 nvme-pci-0700:Composite:32.85] Sensors:[{Chip:nvme-pci-0700 Name:Composite Type:temperature Value:32.85 Unit:°C Alarm:false} {Chip:acpitz-acpi-0 Name:temp1 Type:temperature Value:16.8 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tctl Type:temperature Value:38 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tccd1 Type:temperature Value:29.25 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tccd2 Type:temperature Value:27.25 Unit:°C Alarm:false} {Chip:nvme-pci-0100 Name:Composite Type:temperature Value:32.85 Unit:°C Alarm:false}]}
[DEBUG] [2/6] Début collecte audio
[DEBUG] Exec: lspci []
[DEBUG] Exec: aplay [-l]
[DEBUG] Exec: arecord [-l]
[DEBUG] Exec: aplay [-L]
[DEBUG] Exec: pactl [info]
[DEBUG] [2/6] Détails audio: {Hardware:{PCIAudioDevices:[08:00.1 Audio device: NVIDIA Corporation GA106 High Definition Audio Controller (rev a1) 0a:00.4 Audio device: Advanced Micro Devices, Inc. [AMD] Starship/Matisse HD Audio Controller] AlsaPlayback:**** Liste des périphériques matériels PLAYBACK ****
carte 0 : NVidia [HDA NVidia], périphérique 3 : HDMI 0 [LG ULTRAWIDE]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 7 : HDMI 1 [K243Y]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 8 : HDMI 2 [HDMI 2]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 9 : HDMI 3 [HDMI 3]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]
Sous-périphériques : 0/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 1 : ALC892 Digital [ALC892 Digital]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
AlsaCapture:**** Liste des périphériques matériels CAPTURE ****
carte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 2 : ALC892 Alt Analog [ALC892 Alt Analog]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
PCMDevices:[null Discard all samples (playback) or generate zero samples (capture) pipewire PipeWire Sound Server default Default ALSA Output (currently PipeWire Media Server) hw:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Direct hardware device without any conversions hw:CARD=NVidia,DEV=7 HDA NVidia, K243Y Direct hardware device without any conversions hw:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Direct hardware device without any conversions hw:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Direct hardware device without any conversions plughw:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Hardware device with all software conversions plughw:CARD=NVidia,DEV=7 HDA NVidia, K243Y Hardware device with all software conversions plughw:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Hardware device with all software conversions plughw:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Hardware device with all software conversions hdmi:CARD=NVidia,DEV=0 HDA NVidia, LG ULTRAWIDE HDMI Audio Output hdmi:CARD=NVidia,DEV=1 HDA NVidia, K243Y HDMI Audio Output hdmi:CARD=NVidia,DEV=2 HDA NVidia, HDMI 2 HDMI Audio Output hdmi:CARD=NVidia,DEV=3 HDA NVidia, HDMI 3 HDMI Audio Output dmix:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Direct sample mixing device dmix:CARD=NVidia,DEV=7 HDA NVidia, K243Y Direct sample mixing device dmix:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Direct sample mixing device dmix:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Direct sample mixing device hw:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Direct hardware device without any conversions hw:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Direct hardware device without any conversions plughw:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Hardware device with all software conversions plughw:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Hardware device with all software conversions sysdefault:CARD=Generic HD-Audio Generic, ALC892 Analog Default Audio Device front:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Front output / input surround21:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 2.1 Surround output to Front and Subwoofer speakers surround40:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 4.0 Surround output to Front and Rear speakers surround41:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 4.1 Surround output to Front, Rear and Subwoofer speakers surround50:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 5.0 Surround output to Front, Center and Rear speakers surround51:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 5.1 Surround output to Front, Center, Rear and Subwoofer speakers surround71:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 7.1 Surround output to Front, Center, Side, Rear and Woofer speakers iec958:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Digital IEC958 (S/PDIF) Digital Audio Output dmix:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Direct sample mixing device dmix:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Direct sample mixing device]} Software:{Backend: ServerName: ServerVersion: DefaultSink:<nil> DefaultSource:<nil> Sinks:[] Sources:[]}}
[DEBUG] Exec: lscpu []
[DEBUG] Exec: lsblk [-a]
[DEBUG] Exec: dmidecode [-t 0,1,2,16,17]
[DEBUG] Matériel collecté : {CPU:{Vendor:AuthenticAMD Model:AMD Ryzen 9 5900X 12-Core Processor Cores:12 Threads:24 BaseFreqGHz:4.951 MaxFreqGHz:4.951 CacheL1KB:768 CacheL2KB:6144 CacheL3KB:32768 Flags:[fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local user_shstk clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm debug_swap] Microarchitecture:Zen TDPW:<nil>} RAM:{TotalMB:48096 UsedMB:16446 FreeMB:31649 SharedMB:998 SlotsTotal:10 SlotsUsed:4 MaxCapacityMB:48096 ECC:false Layout:[{Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 } {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE} {Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 } {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE}]} GPU:{Vendor:NVIDIA Model:NVIDIA GeForce RTX 3060 DriverVersion:550.163.01 MemoryDedicatedMB:0xc000388010 MemorySharedMB:<nil> APISupport:[]} Storage:{Devices:[{Name:/dev/nvme0n1 Type:ssd Interface:nvme CapacityGB:465.7617416381836 Vendor:CT500P2SSD8 Model:CT500P2SSD8 Serial:2138E5D60DD8 SmartHealth:PASSED Temperature:33} {Name:/dev/nvme1n1 Type: Interface:nvme CapacityGB:465.7617416381836 Vendor:CT500P2SSD8 Model:CT500P2SSD8 Serial:2108E4FD258D SmartHealth:PASSED Temperature:33} {Name:/dev/sda Type: Interface:sata CapacityGB:447.13167572021484 Vendor:ATA Model:KINGSTON SUV500480G Serial:50026B768226A365 SmartHealth:PASSED Temperature:25} {Name:/dev/sdb Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:Compact Flash Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sdc Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:SD/MMC Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sdd Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:MS/MS-PRO Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sde Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:xD-Picture Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0}] Partitions:[{Name:/dev/nvme0n1p2 MountPoint:/ FSType:ext4 TotalGB:432.80120849609375 UsedGB:0xc0003882d0 FreeGB:0xc0003882d8} {Name:/dev/nvme0n1p1 MountPoint:/boot/efi FSType:vfat TotalGB:0.9512481689453125 UsedGB:0xc000388310 FreeGB:0xc000388318}]} PCIDevices:[{Slot:00:00.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Root Complex} {Slot:00:00.2 Class:IOMMU Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse IOMMU} {Slot:00:01.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:01.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse GPP Bridge} {Slot:00:01.3 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse GPP Bridge} {Slot:00:02.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:03.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:03.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse GPP Bridge} {Slot:00:04.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:05.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:07.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:07.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]} {Slot:00:08.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:08.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]} {Slot:00:14.0 Class:SMBus Vendor:Advanced Micro Devices, Inc. [AMD] Device:FCH SMBus Controller} {Slot:00:14.3 Class:ISA bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:FCH LPC Bridge} {Slot:00:18.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 0} {Slot:00:18.1 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 1} {Slot:00:18.2 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 2} {Slot:00:18.3 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 3} {Slot:00:18.4 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 4} {Slot:00:18.5 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 5} {Slot:00:18.6 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 6} {Slot:00:18.7 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 7} {Slot:01:00.0 Class:Non-Volatile memory controller Vendor:Micron/Crucial Technology Device:P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)} {Slot:02:00.0 Class:USB controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset USB 3.1 xHCI Compliant Host Controller} {Slot:02:00.1 Class:SATA controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset SATA Controller} {Slot:02:00.2 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Bridge} {Slot:03:00.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:03:01.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:03:04.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:03:08.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:04:00.0 Class:Ethernet controller Vendor:Realtek Semiconductor Co., Ltd. Device:RTL8111/8168/8211/8411 PCI Express Gigabit Ethernet Controller} {Slot:07:00.0 Class:Non-Volatile memory controller Vendor:Micron/Crucial Technology Device:P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)} {Slot:08:00.0 Class:VGA compatible controller Vendor:NVIDIA Corporation Device:GA106 [GeForce RTX 3060 Lite Hash Rate]} {Slot:08:00.1 Class:Audio device Vendor:NVIDIA Corporation Device:GA106 High Definition Audio Controller} {Slot:09:00.0 Class:Non-Essential Instrumentation [1300] Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Function} {Slot:0a:00.0 Class:Non-Essential Instrumentation [1300] Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Reserved SPP} {Slot:0a:00.1 Class:Encryption controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Cryptographic Coprocessor PSPCPP} {Slot:0a:00.3 Class:USB controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse USB 3.0 Host Controller} {Slot:0a:00.4 Class:Audio device Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse HD Audio Controller}] USBDevices:[{Bus:001 Device:001 VendorID:1d6b ProductID:0002 Name:Linux Foundation 2.0 root hub} {Bus:001 Device:002 VendorID:058f ProductID:6362 Name:Alcor Micro Corp. Flash Card Reader/Writer} {Bus:002 Device:001 VendorID:1d6b ProductID:0003 Name:Linux Foundation 3.0 root hub} {Bus:003 Device:001 VendorID:1d6b ProductID:0002 Name:Linux Foundation 2.0 root hub} {Bus:003 Device:003 VendorID:046d ProductID:c52b Name:Logitech, Inc. Unifying Receiver} {Bus:003 Device:004 VendorID:0bda ProductID:b711 Name:Realtek Semiconductor Corp. RTL8188GU 802.11n WLAN Adapter (After Modeswitch)} {Bus:004 Device:001 VendorID:1d6b ProductID:0003 Name:Linux Foundation 3.0 root hub}] NetworkShares:[] Network:{Interfaces:[{Name:eno1 Type:ethernet MAC:18:c0:4d:b5:65:74 IP:10.0.1.109 SpeedMbps:0xc00011a588 Driver:r8169 SSID: WakeOnLAN:false} {Name:wlxe84e06a6c1fc Type:wifi MAC:2e:08:e3:97:1a:e2 IP: SpeedMbps:<nil> Driver:rtl8xxxu SSID: WakeOnLAN:false}]} Motherboard:{Vendor:Gigabyte Technology Co., Ltd. Model:B450 AORUS ELITE BIOSVendor:American Megatrends International, LLC. BIOSVersion:F65e BIOSDate:09/20/2023} OS:{Name:Debian GNU/Linux Version:13 (trixie) KernelVersion:6.12.57+deb13-amd64 Architecture:x86_64 SessionType: DisplayServer: ScreenResolution:5560 x 1920 LastBootTime:démarrage système 2026-01-11 09:11 UptimeSeconds:42047.39 BatteryPercentage:<nil> BatteryStatus: BatteryHealth: Hostname:aorus VirtualizationType:kvm-host DesktopEnvironment:GNOME} Sensors:{CPUTempC:<nil> DiskTempsC:map[nvme-pci-0100:Composite:32.85 nvme-pci-0700:Composite:32.85] Sensors:[{Chip:nvme-pci-0700 Name:Composite Type:temperature Value:32.85 Unit:°C Alarm:false} {Chip:acpitz-acpi-0 Name:temp1 Type:temperature Value:16.8 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tctl Type:temperature Value:38 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tccd1 Type:temperature Value:29.25 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tccd2 Type:temperature Value:27.25 Unit:°C Alarm:false} {Chip:nvme-pci-0100 Name:Composite Type:temperature Value:32.85 Unit:°C Alarm:false}]} Audio:{Hardware:{PCIAudioDevices:[08:00.1 Audio device: NVIDIA Corporation GA106 High Definition Audio Controller (rev a1) 0a:00.4 Audio device: Advanced Micro Devices, Inc. [AMD] Starship/Matisse HD Audio Controller] AlsaPlayback:**** Liste des périphériques matériels PLAYBACK ****
carte 0 : NVidia [HDA NVidia], périphérique 3 : HDMI 0 [LG ULTRAWIDE]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 7 : HDMI 1 [K243Y]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 8 : HDMI 2 [HDMI 2]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 9 : HDMI 3 [HDMI 3]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]
Sous-périphériques : 0/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 1 : ALC892 Digital [ALC892 Digital]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
AlsaCapture:**** Liste des périphériques matériels CAPTURE ****
carte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 2 : ALC892 Alt Analog [ALC892 Alt Analog]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
PCMDevices:[null Discard all samples (playback) or generate zero samples (capture) pipewire PipeWire Sound Server default Default ALSA Output (currently PipeWire Media Server) hw:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Direct hardware device without any conversions hw:CARD=NVidia,DEV=7 HDA NVidia, K243Y Direct hardware device without any conversions hw:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Direct hardware device without any conversions hw:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Direct hardware device without any conversions plughw:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Hardware device with all software conversions plughw:CARD=NVidia,DEV=7 HDA NVidia, K243Y Hardware device with all software conversions plughw:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Hardware device with all software conversions plughw:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Hardware device with all software conversions hdmi:CARD=NVidia,DEV=0 HDA NVidia, LG ULTRAWIDE HDMI Audio Output hdmi:CARD=NVidia,DEV=1 HDA NVidia, K243Y HDMI Audio Output hdmi:CARD=NVidia,DEV=2 HDA NVidia, HDMI 2 HDMI Audio Output hdmi:CARD=NVidia,DEV=3 HDA NVidia, HDMI 3 HDMI Audio Output dmix:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Direct sample mixing device dmix:CARD=NVidia,DEV=7 HDA NVidia, K243Y Direct sample mixing device dmix:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Direct sample mixing device dmix:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Direct sample mixing device hw:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Direct hardware device without any conversions hw:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Direct hardware device without any conversions plughw:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Hardware device with all software conversions plughw:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Hardware device with all software conversions sysdefault:CARD=Generic HD-Audio Generic, ALC892 Analog Default Audio Device front:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Front output / input surround21:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 2.1 Surround output to Front and Subwoofer speakers surround40:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 4.0 Surround output to Front and Rear speakers surround41:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 4.1 Surround output to Front, Rear and Subwoofer speakers surround50:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 5.0 Surround output to Front, Center and Rear speakers surround51:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 5.1 Surround output to Front, Center, Rear and Subwoofer speakers surround71:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 7.1 Surround output to Front, Center, Side, Rear and Woofer speakers iec958:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Digital IEC958 (S/PDIF) Digital Audio Output dmix:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Direct sample mixing device dmix:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Direct sample mixing device]} Software:{Backend: ServerName: ServerVersion: DefaultSink:<nil> DefaultSource:<nil> Sinks:[] Sources:[]}} RawInfo:map[dmidecode:# dmidecode 3.6
Getting SMBIOS data from sysfs.
SMBIOS 3.3.0 present.
Handle 0x0000, DMI type 0, 26 bytes
BIOS Information
Vendor: American Megatrends International, LLC.
Version: F65e
Release Date: 09/20/2023
Address: 0xF0000
Runtime Size: 64 kB
ROM Size: 16 MB
Characteristics:
PCI is supported
BIOS is upgradeable
BIOS shadowing is allowed
Boot from CD is supported
Selectable boot is supported
BIOS ROM is socketed
EDD is supported
Japanese floppy for NEC 9800 1.2 MB is supported (int 13h)
Japanese floppy for Toshiba 1.2 MB is supported (int 13h)
5.25"/360 kB floppy services are supported (int 13h)
5.25"/1.2 MB floppy services are supported (int 13h)
3.5"/720 kB floppy services are supported (int 13h)
3.5"/2.88 MB floppy services are supported (int 13h)
Print screen service is supported (int 5h)
Serial services are supported (int 14h)
Printer services are supported (int 17h)
CGA/mono video services are supported (int 10h)
USB legacy is supported
BIOS boot specification is supported
Targeted content distribution is supported
UEFI is supported
BIOS Revision: 5.17
Handle 0x0001, DMI type 1, 27 bytes
System Information
Manufacturer: Gigabyte Technology Co., Ltd.
Product Name: B450 AORUS ELITE
Version: Default string
Serial Number: Default string
UUID: 03c00218-044d-05b5-6506-740700080009
Wake-up Type: Power Switch
SKU Number: Default string
Family: B450 MB
Handle 0x0002, DMI type 2, 15 bytes
Base Board Information
Manufacturer: Gigabyte Technology Co., Ltd.
Product Name: B450 AORUS ELITE
Version: Default string
Serial Number: Default string
Asset Tag: Default string
Features:
Board is a hosting board
Board is replaceable
Location In Chassis: Default string
Chassis Handle: 0x0003
Type: Motherboard
Contained Object Handles: 0
Handle 0x000B, DMI type 16, 23 bytes
Physical Memory Array
Location: System Board Or Motherboard
Use: System Memory
Error Correction Type: None
Maximum Capacity: 128 GB
Error Information Handle: 0x000A
Number Of Devices: 4
Handle 0x0013, DMI type 17, 92 bytes
Memory Device
Array Handle: 0x000B
Error Information Handle: 0x0012
Total Width: 64 bits
Data Width: 64 bits
Size: 16 GB
Form Factor: DIMM
Set: None
Locator: DIMM 0
Bank Locator: P0 CHANNEL A
Type: DDR4
Type Detail: Synchronous Unbuffered (Unregistered)
Speed: 3200 MT/s
Manufacturer: Unknown
Serial Number: 00000000
Asset Tag: Not Specified
Part Number: CMW32GX4M2E3200C16
Rank: 2
Configured Memory Speed: 3200 MT/s
Minimum Voltage: Unknown
Maximum Voltage: Unknown
Configured Voltage: 1.2 V
Memory Technology: DRAM
Memory Operating Mode Capability: Volatile memory
Firmware Version: Unknown
Module Manufacturer ID: Bank 3, Hex 0x9E
Module Product ID: Unknown
Memory Subsystem Controller Manufacturer ID: Unknown
Memory Subsystem Controller Product ID: Unknown
Non-Volatile Size: None
Volatile Size: 16 GB
Cache Size: None
Logical Size: None
Handle 0x0016, DMI type 17, 92 bytes
Memory Device
Array Handle: 0x000B
Error Information Handle: 0x0015
Total Width: 64 bits
Data Width: 64 bits
Size: 8 GB
Form Factor: DIMM
Set: None
Locator: DIMM 1
Bank Locator: P0 CHANNEL A
Type: DDR4
Type Detail: Synchronous Unbuffered (Unregistered)
Speed: 3200 MT/s
Manufacturer: Unknown
Serial Number: E3C4408B
Asset Tag: Not Specified
Part Number: BL8G32C16U4BL.M8FE
Rank: 1
Configured Memory Speed: 3200 MT/s
Minimum Voltage: 1.2 V
Maximum Voltage: 1.2 V
Configured Voltage: 1.2 V
Memory Technology: DRAM
Memory Operating Mode Capability: Volatile memory
Firmware Version: Unknown
Module Manufacturer ID: Bank 6, Hex 0x9B
Module Product ID: Unknown
Memory Subsystem Controller Manufacturer ID: Unknown
Memory Subsystem Controller Product ID: Unknown
Non-Volatile Size: None
Volatile Size: 8 GB
Cache Size: None
Logical Size: None
Handle 0x0019, DMI type 17, 92 bytes
Memory Device
Array Handle: 0x000B
Error Information Handle: 0x0018
Total Width: 64 bits
Data Width: 64 bits
Size: 16 GB
Form Factor: DIMM
Set: None
Locator: DIMM 0
Bank Locator: P0 CHANNEL B
Type: DDR4
Type Detail: Synchronous Unbuffered (Unregistered)
Speed: 3200 MT/s
Manufacturer: Unknown
Serial Number: 00000000
Asset Tag: Not Specified
Part Number: CMW32GX4M2E3200C16
Rank: 2
Configured Memory Speed: 3200 MT/s
Minimum Voltage: Unknown
Maximum Voltage: Unknown
Configured Voltage: 1.2 V
Memory Technology: DRAM
Memory Operating Mode Capability: Volatile memory
Firmware Version: Unknown
Module Manufacturer ID: Bank 3, Hex 0x9E
Module Product ID: Unknown
Memory Subsystem Controller Manufacturer ID: Unknown
Memory Subsystem Controller Product ID: Unknown
Non-Volatile Size: None
Volatile Size: 16 GB
Cache Size: None
Logical Size: None
Handle 0x001C, DMI type 17, 92 bytes
Memory Device
Array Handle: 0x000B
Error Information Handle: 0x001B
Total Width: 64 bits
Data Width: 64 bits
Size: 8 GB
Form Factor: DIMM
Set: None
Locator: DIMM 1
Bank Locator: P0 CHANNEL B
Type: DDR4
Type Detail: Synchronous Unbuffered (Unregistered)
Speed: 3200 MT/s
Manufacturer: Unknown
Serial Number: E3C44087
Asset Tag: Not Specified
Part Number: BL8G32C16U4BL.M8FE
Rank: 1
Configured Memory Speed: 3200 MT/s
Minimum Voltage: 1.2 V
Maximum Voltage: 1.2 V
Configured Voltage: 1.2 V
Memory Technology: DRAM
Memory Operating Mode Capability: Volatile memory
Firmware Version: Unknown
Module Manufacturer ID: Bank 6, Hex 0x9B
Module Product ID: Unknown
Memory Subsystem Controller Manufacturer ID: Unknown
Memory Subsystem Controller Product ID: Unknown
Non-Volatile Size: None
Volatile Size: 8 GB
Cache Size: None
Logical Size: None
lsblk:NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS
loop0 7:0 0 118,5M 1 loop /snap/iptvnator/92
loop1 7:1 0 48,1M 1 loop /snap/snapd/25935
loop2 7:2 0 50,9M 1 loop /snap/snapd/25577
loop3 7:3 0 4K 1 loop /snap/bare/5
loop4 7:4 0 91,7M 1 loop /snap/gtk-common-themes/1535
loop5 7:5 0 55,5M 1 loop /snap/core18/2976
loop6 7:6 0 164,8M 1 loop /snap/gnome-3-28-1804/198
loop7 7:7 0 0B 0 loop
sda 8:0 0 447,1G 0 disk
└─sda1 8:1 0 447,1G 0 part
sdb 8:16 1 0B 0 disk
sdc 8:32 1 0B 0 disk
sdd 8:48 1 0B 0 disk
sde 8:64 1 0B 0 disk
nvme0n1 259:0 0 465,8G 0 disk
├─nvme0n1p1 259:1 0 976M 0 part /boot/efi
├─nvme0n1p2 259:2 0 440,8G 0 part /
└─nvme0n1p3 259:3 0 24G 0 part [SWAP]
nvme1n1 259:4 0 465,8G 0 disk
├─nvme1n1p1 259:5 0 50M 0 part
├─nvme1n1p2 259:6 0 464,3G 0 part
├─nvme1n1p3 259:7 0 808M 0 part
├─nvme1n1p4 259:8 0 100M 0 part
└─nvme1n1p5 259:9 0 522M 0 part
lscpu:Architecture : x86_64
Mode(s) opératoire(s) des processeurs : 32-bit, 64-bit
Tailles des adresses: 48 bits physical, 48 bits virtual
Boutisme : Little Endian
Processeur(s) : 24
Liste de processeur(s) en ligne : 0-23
Identifiant constructeur : AuthenticAMD
Nom de modèle : AMD Ryzen 9 5900X 12-Core Processor
Famille de processeur : 25
Modèle : 33
Thread(s) par cœur : 2
Cœur(s) par socket : 12
Socket(s) : 1
Révision : 2
Accroissement de fréquence : activé
multiplication des MHz du/des CPU(s) : 73%
Vitesse maximale du processeur en MHz : 4951,0000
Vitesse minimale du processeur en MHz : 550,0000
BogoMIPS : 7399,98
Drapeaux : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local user_shstk clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm debug_swap
Virtualisation : AMD-V
Cache L1d : 384 KiB (12 instances)
Cache L1i : 384 KiB (12 instances)
Cache L2 : 6 MiB (12 instances)
Cache L3 : 64 MiB (2 instances)
Nœud(s) NUMA : 1
Nœud NUMA 0 de processeur(s) : 0-23
Vulnérabilité Gather data sampling : Not affected
Vulnérabilité Indirect target selection : Not affected
Vulnérabilité Itlb multihit : Not affected
Vulnérabilité L1tf : Not affected
Vulnérabilité Mds : Not affected
Vulnérabilité Meltdown : Not affected
Vulnérabilité Mmio stale data : Not affected
Vulnérabilité Reg file data sampling : Not affected
Vulnérabilité Retbleed : Not affected
Vulnérabilité Spec rstack overflow : Mitigation; Safe RET
Vulnérabilité Spec store bypass : Mitigation; Speculative Store Bypass disabled via prctl
Vulnérabilité Spectre v1 : Mitigation; usercopy/swapgs barriers and __user pointer sanitization
Vulnérabilité Spectre v2 : Mitigation; Retpolines; IBPB conditional; IBRS_FW; STIBP always-on; RSB filling; PBRSB-eIBRS Not affected; BHI Not affected
Vulnérabilité Srbds : Not affected
Vulnérabilité Tsa : Vulnerable: Clear CPU buffers attempted, no microcode
Vulnérabilité Tsx async abort : Not affected
Vulnérabilité Vmscape : Mitigation; IBPB before exit to userspace
]}
[DEBUG] [3/6] Benchmark CPU démarré
[DEBUG] Exec: sysbench [cpu --threads=1 --time=10 run]
[DEBUG] Exec: nproc []
[DEBUG] Exec: sysbench [cpu --threads=24 --time=10 run]
[DEBUG] [3/6] Résultat CPU: {EventsPerSec:37481.55 EventsPerSecSingle:5616.19 EventsPerSecMulti:69346.91 DurationSec:20.0003 Score:37481.55 ScoreSingle:5616.19 ScoreMulti:69346.91}
[DEBUG] [3/6] Benchmark mémoire démarré
[DEBUG] Exec: sysbench [memory --memory-block-size=1K --memory-total-size=1G run]
[DEBUG] [3/6] Résultat mémoire: {Throughput:8598.37 Score:8598.37}
[DEBUG] [3/6] Benchmark disque démarré
[DEBUG] Exec: fio [--name=bench --ioengine=libaio --rw=randrw --bs=4k --direct=1 --size=500M --numjobs=1 --runtime=30 --time_based --output-format=json --filename=/tmp/bench.fio]
[DEBUG] [3/6] Résultat disque: {ReadMBs:1057.6943359375 WriteMBs:1057.150390625 IOPSRead:270769.90767 IOPSWrite:270630.745642 LatencyMs:0.000439065137 Score:1057.42236328125}
[DEBUG] [3/6] Benchmark réseau démarré
[DEBUG] Exec: iperf3 [-c 10.0.0.50 -p 5201 -J -t 10]
[DEBUG] Exec: ping [-c 1 -W 1 10.0.0.50]
[DEBUG] [3/6] Résultat réseau: {Upload:941.6102875346334 Download:939.180709941553 PingMs:0.241 JitterMs:<nil> PacketLossPct:<nil> Score:940.3954987380932}
[DEBUG] Résultats des benchmarks : {CPU:{EventsPerSec:37481.55 EventsPerSecSingle:5616.19 EventsPerSecMulti:69346.91 DurationSec:20.0003 Score:37481.55 ScoreSingle:5616.19 ScoreMulti:69346.91} Memory:{Throughput:8598.37 Score:8598.37} Disk:{ReadMBs:1057.6943359375 WriteMBs:1057.150390625 IOPSRead:270769.90767 IOPSWrite:270630.745642 LatencyMs:0.000439065137 Score:1057.42236328125} Network:{Upload:941.6102875346334 Download:939.180709941553 PingMs:0.241 JitterMs:<nil> PacketLossPct:<nil> Score:940.3954987380932} GPU:{GLMark2Score:<nil> Score:<nil>} GlobalScore:0}
[DEBUG] Poids benchmarks : map[cpu:0.4 disk:0.2 gpu:0.1 memory:0.2 network:0.1]
[DEBUG] Scores normalisés : cpu=1874.08 mem=85.98 disk=105.74 net=94.04
[DEBUG] Score global calculé : 79738.01
[DEBUG] Payload JSON (49192 octets) : {
"device_identifier": "aorus",
"bench_script_version": "1.6.6",
"bench_client_version": "1.0.1",
"hardware": {
"cpu": {
"vendor": "AuthenticAMD",
"model": "AMD Ryzen 9 5900X 12-Core Processor",
"cores": 12,
"threads": 24,
"base_freq_ghz": 4.951,
"max_freq_ghz": 4.951,
"cache_l1_kb": 768,
"cache_l2_kb": 6144,
"cache_l3_kb": 32768,
"flags": [
"fpu",
"vme",
"de",
"pse",
"tsc",
"msr",
"pae",
"mce",
"cx8",
"apic",
"sep",
"mtrr",
"pge",
"mca",
"cmov",
"pat",
"pse36",
"clflush",
"mmx",
"fxsr",
"sse",
"sse2",
"ht",
"syscall",
"nx",
"mmxext",
"fxsr_opt",
"pdpe1gb",
"rdtscp",
"lm",
"constant_tsc",
"rep_good",
"nopl",
"xtopology",
"nonstop_tsc",
"cpuid",
"extd_apicid",
"aperfmperf",
"rapl",
"pni",
"pclmulqdq",
"monitor",
"ssse3",
"fma",
"cx16",
"sse4_1",
"sse4_2",
"x2apic",
"movbe",
"popcnt",
"aes",
"xsave",
"avx",
"f16c",
"rdrand",
"lahf_lm",
"cmp_legacy",
"svm",
"extapic",
"cr8_legacy",
"abm",
"sse4a",
"misalignsse",
"3dnowprefetch",
"osvw",
"ibs",
"skinit",
"wdt",
"tce",
"topoext",
"perfctr_core",
"perfctr_nb",
"bpext",
"perfctr_llc",
"mwaitx",
"cpb",
"cat_l3",
"cdp_l3",
"hw_pstate",
"ssbd",
"mba",
"ibrs",
"ibpb",
"stibp",
"vmmcall",
"fsgsbase",
"bmi1",
"avx2",
"smep",
"bmi2",
"erms",
"invpcid",
"cqm",
"rdt_a",
"rdseed",
"adx",
"smap",
"clflushopt",
"clwb",
"sha_ni",
"xsaveopt",
"xsavec",
"xgetbv1",
"xsaves",
"cqm_llc",
"cqm_occup_llc",
"cqm_mbm_total",
"cqm_mbm_local",
"user_shstk",
"clzero",
"irperf",
"xsaveerptr",
"rdpru",
"wbnoinvd",
"arat",
"npt",
"lbrv",
"svm_lock",
"nrip_save",
"tsc_scale",
"vmcb_clean",
"flushbyasid",
"decodeassists",
"pausefilter",
"pfthreshold",
"avic",
"v_vmsave_vmload",
"vgif",
"v_spec_ctrl",
"umip",
"pku",
"ospke",
"vaes",
"vpclmulqdq",
"rdpid",
"overflow_recov",
"succor",
"smca",
"fsrm",
"debug_swap"
],
"microarchitecture": "Zen",
"tdp_w": null
},
"ram": {
"total_mb": 48096,
"used_mb": 16446,
"free_mb": 31649,
"shared_mb": 998,
"slots_total": 10,
"slots_used": 4,
"max_capacity_mb": 48096,
"ecc": false,
"layout": [
{
"slot": "DIMM 0",
"size_mb": 16384,
"type": "DDR4",
"speed_mhz": 3200,
"configured_speed_mhz": 3200,
"form_factor": "DIMM",
"type_detail": "Synchronous Unbuffered (Unregistered)",
"rank": "2",
"manufacturer": "Unknown",
"part_number": "CMW32GX4M2E3200C16 "
},
{
"slot": "DIMM 1",
"size_mb": 8192,
"type": "DDR4",
"speed_mhz": 3200,
"configured_speed_mhz": 3200,
"form_factor": "DIMM",
"type_detail": "Synchronous Unbuffered (Unregistered)",
"rank": "1",
"manufacturer": "Unknown",
"part_number": "BL8G32C16U4BL.M8FE"
},
{
"slot": "DIMM 0",
"size_mb": 16384,
"type": "DDR4",
"speed_mhz": 3200,
"configured_speed_mhz": 3200,
"form_factor": "DIMM",
"type_detail": "Synchronous Unbuffered (Unregistered)",
"rank": "2",
"manufacturer": "Unknown",
"part_number": "CMW32GX4M2E3200C16 "
},
{
"slot": "DIMM 1",
"size_mb": 8192,
"type": "DDR4",
"speed_mhz": 3200,
"configured_speed_mhz": 3200,
"form_factor": "DIMM",
"type_detail": "Synchronous Unbuffered (Unregistered)",
"rank": "1",
"manufacturer": "Unknown",
"part_number": "BL8G32C16U4BL.M8FE"
}
]
},
"gpu": {
"vendor": "NVIDIA",
"model": "NVIDIA GeForce RTX 3060",
"driver_version": "550.163.01",
"memory_dedicated_mb": 12288,
"memory_shared_mb": null,
"api_support": null
},
"storage": {
"devices": [
{
"name": "/dev/nvme0n1",
"type": "ssd",
"interface": "nvme",
"capacity_gb": 465.7617416381836,
"vendor": "CT500P2SSD8",
"model": "CT500P2SSD8",
"serial": "2138E5D60DD8",
"smart_health": "PASSED",
"temperature_c": 33
},
{
"name": "/dev/nvme1n1",
"type": "",
"interface": "nvme",
"capacity_gb": 465.7617416381836,
"vendor": "CT500P2SSD8",
"model": "CT500P2SSD8",
"serial": "2108E4FD258D",
"smart_health": "PASSED",
"temperature_c": 33
},
{
"name": "/dev/sda",
"type": "",
"interface": "sata",
"capacity_gb": 447.13167572021484,
"vendor": "ATA ",
"model": "KINGSTON SUV500480G",
"serial": "50026B768226A365",
"smart_health": "PASSED",
"temperature_c": 25
},
{
"name": "/dev/sdb",
"type": "",
"interface": "usb",
"capacity_gb": 0,
"vendor": "Generic-",
"model": "Compact Flash",
"serial": "058F63626479",
"smart_health": "UNAVAILABLE",
"temperature_c": 0
},
{
"name": "/dev/sdc",
"type": "",
"interface": "usb",
"capacity_gb": 0,
"vendor": "Generic-",
"model": "SD/MMC",
"serial": "058F63626479",
"smart_health": "UNAVAILABLE",
"temperature_c": 0
},
{
"name": "/dev/sdd",
"type": "",
"interface": "usb",
"capacity_gb": 0,
"vendor": "Generic-",
"model": "MS/MS-PRO",
"serial": "058F63626479",
"smart_health": "UNAVAILABLE",
"temperature_c": 0
},
{
"name": "/dev/sde",
"type": "",
"interface": "usb",
"capacity_gb": 0,
"vendor": "Generic-",
"model": "xD-Picture",
"serial": "058F63626479",
"smart_health": "UNAVAILABLE",
"temperature_c": 0
}
],
"partitions": [
{
"name": "/dev/nvme0n1p2",
"mount_point": "/",
"fs_type": "ext4",
"total_gb": 432.80120849609375,
"used_gb": 348.15784072875977,
"free_gb": 62.588191986083984
},
{
"name": "/dev/nvme0n1p1",
"mount_point": "/boot/efi",
"fs_type": "vfat",
"total_gb": 0.9512481689453125,
"used_gb": 0.008571624755859375,
"free_gb": 0.9426765441894531
}
]
},
"pci_devices": [
{
"slot": "00:00.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse Root Complex"
},
{
"slot": "00:00.2",
"class": "IOMMU",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse IOMMU"
},
{
"slot": "00:01.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:01.1",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse GPP Bridge"
},
{
"slot": "00:01.3",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse GPP Bridge"
},
{
"slot": "00:02.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:03.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:03.1",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse GPP Bridge"
},
{
"slot": "00:04.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:05.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:07.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:07.1",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]"
},
{
"slot": "00:08.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:08.1",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]"
},
{
"slot": "00:14.0",
"class": "SMBus",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "FCH SMBus Controller"
},
{
"slot": "00:14.3",
"class": "ISA bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "FCH LPC Bridge"
},
{
"slot": "00:18.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 0"
},
{
"slot": "00:18.1",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 1"
},
{
"slot": "00:18.2",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 2"
},
{
"slot": "00:18.3",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 3"
},
{
"slot": "00:18.4",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 4"
},
{
"slot": "00:18.5",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 5"
},
{
"slot": "00:18.6",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 6"
},
{
"slot": "00:18.7",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 7"
},
{
"slot": "01:00.0",
"class": "Non-Volatile memory controller",
"vendor": "Micron/Crucial Technology",
"device": "P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)"
},
{
"slot": "02:00.0",
"class": "USB controller",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset USB 3.1 xHCI Compliant Host Controller"
},
{
"slot": "02:00.1",
"class": "SATA controller",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset SATA Controller"
},
{
"slot": "02:00.2",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset PCIe Bridge"
},
{
"slot": "03:00.0",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset PCIe Port"
},
{
"slot": "03:01.0",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset PCIe Port"
},
{
"slot": "03:04.0",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset PCIe Port"
},
{
"slot": "03:08.0",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset PCIe Port"
},
{
"slot": "04:00.0",
"class": "Ethernet controller",
"vendor": "Realtek Semiconductor Co., Ltd.",
"device": "RTL8111/8168/8211/8411 PCI Express Gigabit Ethernet Controller"
},
{
"slot": "07:00.0",
"class": "Non-Volatile memory controller",
"vendor": "Micron/Crucial Technology",
"device": "P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)"
},
{
"slot": "08:00.0",
"class": "VGA compatible controller",
"vendor": "NVIDIA Corporation",
"device": "GA106 [GeForce RTX 3060 Lite Hash Rate]"
},
{
"slot": "08:00.1",
"class": "Audio device",
"vendor": "NVIDIA Corporation",
"device": "GA106 High Definition Audio Controller"
},
{
"slot": "09:00.0",
"class": "Non-Essential Instrumentation [1300]",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Function"
},
{
"slot": "0a:00.0",
"class": "Non-Essential Instrumentation [1300]",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse Reserved SPP"
},
{
"slot": "0a:00.1",
"class": "Encryption controller",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse Cryptographic Coprocessor PSPCPP"
},
{
"slot": "0a:00.3",
"class": "USB controller",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse USB 3.0 Host Controller"
},
{
"slot": "0a:00.4",
"class": "Audio device",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse HD Audio Controller"
}
],
"usb_devices": [
{
"bus": "001",
"device": "001",
"vendor_id": "1d6b",
"product_id": "0002",
"name": "Linux Foundation 2.0 root hub"
},
{
"bus": "001",
"device": "002",
"vendor_id": "058f",
"product_id": "6362",
"name": "Alcor Micro Corp. Flash Card Reader/Writer"
},
{
"bus": "002",
"device": "001",
"vendor_id": "1d6b",
"product_id": "0003",
"name": "Linux Foundation 3.0 root hub"
},
{
"bus": "003",
"device": "001",
"vendor_id": "1d6b",
"product_id": "0002",
"name": "Linux Foundation 2.0 root hub"
},
{
"bus": "003",
"device": "003",
"vendor_id": "046d",
"product_id": "c52b",
"name": "Logitech, Inc. Unifying Receiver"
},
{
"bus": "003",
"device": "004",
"vendor_id": "0bda",
"product_id": "b711",
"name": "Realtek Semiconductor Corp. RTL8188GU 802.11n WLAN Adapter (After Modeswitch)"
},
{
"bus": "004",
"device": "001",
"vendor_id": "1d6b",
"product_id": "0003",
"name": "Linux Foundation 3.0 root hub"
}
],
"network_shares": [],
"network": {
"interfaces": [
{
"name": "eno1",
"type": "ethernet",
"mac": "18:c0:4d:b5:65:74",
"ip": "10.0.1.109",
"speed_mbps": 1000,
"driver": "r8169",
"ssid": "",
"wake_on_lan": false
},
{
"name": "wlxe84e06a6c1fc",
"type": "wifi",
"mac": "2e:08:e3:97:1a:e2",
"ip": "",
"speed_mbps": null,
"driver": "rtl8xxxu",
"ssid": "",
"wake_on_lan": false
}
]
},
"motherboard": {
"vendor": "Gigabyte Technology Co., Ltd.",
"model": "B450 AORUS ELITE",
"bios_vendor": "American Megatrends International, LLC.",
"bios_version": "F65e",
"bios_date": "09/20/2023"
},
"os": {
"name": "Debian GNU/Linux",
"version": "13 (trixie)",
"kernel_version": "6.12.57+deb13-amd64",
"architecture": "x86_64",
"session_type": "",
"display_server": "",
"screen_resolution": "5560 x 1920",
"last_boot_time": "démarrage système 2026-01-11 09:11",
"uptime_seconds": 42047.39,
"battery_percentage": null,
"battery_status": "",
"battery_health": "",
"hostname": "aorus",
"virtualization_type": "kvm-host",
"desktop_environment": "GNOME"
},
"sensors": {
"cpu_temp_c": null,
"disk_temps_c": {
"nvme-pci-0100:Composite": 32.85,
"nvme-pci-0700:Composite": 32.85
},
"sensors": [
{
"chip": "nvme-pci-0700",
"name": "Composite",
"type": "temperature",
"value": 32.85,
"unit": "°C",
"alarm": false
},
{
"chip": "acpitz-acpi-0",
"name": "temp1",
"type": "temperature",
"value": 16.8,
"unit": "°C",
"alarm": false
},
{
"chip": "k10temp-pci-00c3",
"name": "Tctl",
"type": "temperature",
"value": 38,
"unit": "°C",
"alarm": false
},
{
"chip": "k10temp-pci-00c3",
"name": "Tccd1",
"type": "temperature",
"value": 29.25,
"unit": "°C",
"alarm": false
},
{
"chip": "k10temp-pci-00c3",
"name": "Tccd2",
"type": "temperature",
"value": 27.25,
"unit": "°C",
"alarm": false
},
{
"chip": "nvme-pci-0100",
"name": "Composite",
"type": "temperature",
"value": 32.85,
"unit": "°C",
"alarm": false
}
]
},
"audio": {
"hardware": {
"pci_audio_devices": [
"08:00.1 Audio device: NVIDIA Corporation GA106 High Definition Audio Controller (rev a1)",
"0a:00.4 Audio device: Advanced Micro Devices, Inc. [AMD] Starship/Matisse HD Audio Controller"
],
"alsa_playback": "**** Liste des périphériques matériels PLAYBACK ****\ncarte 0 : NVidia [HDA NVidia], périphérique 3 : HDMI 0 [LG ULTRAWIDE]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\ncarte 0 : NVidia [HDA NVidia], périphérique 7 : HDMI 1 [K243Y]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\ncarte 0 : NVidia [HDA NVidia], périphérique 8 : HDMI 2 [HDMI 2]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\ncarte 0 : NVidia [HDA NVidia], périphérique 9 : HDMI 3 [HDMI 3]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\ncarte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]\n Sous-périphériques : 0/1\n Sous-périphérique #0 : subdevice #0\ncarte 1 : Generic [HD-Audio Generic], périphérique 1 : ALC892 Digital [ALC892 Digital]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\n",
"alsa_capture": "**** Liste des périphériques matériels CAPTURE ****\ncarte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\ncarte 1 : Generic [HD-Audio Generic], périphérique 2 : ALC892 Alt Analog [ALC892 Alt Analog]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\n",
"pcm_devices": [
"null",
"Discard all samples (playback) or generate zero samples (capture)",
"pipewire",
"PipeWire Sound Server",
"default",
"Default ALSA Output (currently PipeWire Media Server)",
"hw:CARD=NVidia,DEV=3",
"HDA NVidia, LG ULTRAWIDE",
"Direct hardware device without any conversions",
"hw:CARD=NVidia,DEV=7",
"HDA NVidia, K243Y",
"Direct hardware device without any conversions",
"hw:CARD=NVidia,DEV=8",
"HDA NVidia, HDMI 2",
"Direct hardware device without any conversions",
"hw:CARD=NVidia,DEV=9",
"HDA NVidia, HDMI 3",
"Direct hardware device without any conversions",
"plughw:CARD=NVidia,DEV=3",
"HDA NVidia, LG ULTRAWIDE",
"Hardware device with all software conversions",
"plughw:CARD=NVidia,DEV=7",
"HDA NVidia, K243Y",
"Hardware device with all software conversions",
"plughw:CARD=NVidia,DEV=8",
"HDA NVidia, HDMI 2",
"Hardware device with all software conversions",
"plughw:CARD=NVidia,DEV=9",
"HDA NVidia, HDMI 3",
"Hardware device with all software conversions",
"hdmi:CARD=NVidia,DEV=0",
"HDA NVidia, LG ULTRAWIDE",
"HDMI Audio Output",
"hdmi:CARD=NVidia,DEV=1",
"HDA NVidia, K243Y",
"HDMI Audio Output",
"hdmi:CARD=NVidia,DEV=2",
"HDA NVidia, HDMI 2",
"HDMI Audio Output",
"hdmi:CARD=NVidia,DEV=3",
"HDA NVidia, HDMI 3",
"HDMI Audio Output",
"dmix:CARD=NVidia,DEV=3",
"HDA NVidia, LG ULTRAWIDE",
"Direct sample mixing device",
"dmix:CARD=NVidia,DEV=7",
"HDA NVidia, K243Y",
"Direct sample mixing device",
"dmix:CARD=NVidia,DEV=8",
"HDA NVidia, HDMI 2",
"Direct sample mixing device",
"dmix:CARD=NVidia,DEV=9",
"HDA NVidia, HDMI 3",
"Direct sample mixing device",
"hw:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"Direct hardware device without any conversions",
"hw:CARD=Generic,DEV=1",
"HD-Audio Generic, ALC892 Digital",
"Direct hardware device without any conversions",
"plughw:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"Hardware device with all software conversions",
"plughw:CARD=Generic,DEV=1",
"HD-Audio Generic, ALC892 Digital",
"Hardware device with all software conversions",
"sysdefault:CARD=Generic",
"HD-Audio Generic, ALC892 Analog",
"Default Audio Device",
"front:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"Front output / input",
"surround21:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"2.1 Surround output to Front and Subwoofer speakers",
"surround40:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"4.0 Surround output to Front and Rear speakers",
"surround41:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"4.1 Surround output to Front, Rear and Subwoofer speakers",
"surround50:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"5.0 Surround output to Front, Center and Rear speakers",
"surround51:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"5.1 Surround output to Front, Center, Rear and Subwoofer speakers",
"surround71:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"7.1 Surround output to Front, Center, Side, Rear and Woofer speakers",
"iec958:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Digital",
"IEC958 (S/PDIF) Digital Audio Output",
"dmix:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"Direct sample mixing device",
"dmix:CARD=Generic,DEV=1",
"HD-Audio Generic, ALC892 Digital",
"Direct sample mixing device"
]
},
"software": {
"backend": "",
"server_name": "",
"server_version": "",
"default_sink": null,
"default_source": null,
"sinks": null,
"sources": null
}
},
"raw_info": {
"debug": "active",
"dmidecode": "# dmidecode 3.6\nGetting SMBIOS data from sysfs.\nSMBIOS 3.3.0 present.\n\nHandle 0x0000, DMI type 0, 26 bytes\nBIOS Information\n\tVendor: American Megatrends International, LLC.\n\tVersion: F65e\n\tRelease Date: 09/20/2023\n\tAddress: 0xF0000\n\tRuntime Size: 64 kB\n\tROM Size: 16 MB\n\tCharacteristics:\n\t\tPCI is supported\n\t\tBIOS is upgradeable\n\t\tBIOS shadowing is allowed\n\t\tBoot from CD is supported\n\t\tSelectable boot is supported\n\t\tBIOS ROM is socketed\n\t\tEDD is supported\n\t\tJapanese floppy for NEC 9800 1.2 MB is supported (int 13h)\n\t\tJapanese floppy for Toshiba 1.2 MB is supported (int 13h)\n\t\t5.25\"/360 kB floppy services are supported (int 13h)\n\t\t5.25\"/1.2 MB floppy services are supported (int 13h)\n\t\t3.5\"/720 kB floppy services are supported (int 13h)\n\t\t3.5\"/2.88 MB floppy services are supported (int 13h)\n\t\tPrint screen service is supported (int 5h)\n\t\tSerial services are supported (int 14h)\n\t\tPrinter services are supported (int 17h)\n\t\tCGA/mono video services are supported (int 10h)\n\t\tUSB legacy is supported\n\t\tBIOS boot specification is supported\n\t\tTargeted content distribution is supported\n\t\tUEFI is supported\n\tBIOS Revision: 5.17\n\nHandle 0x0001, DMI type 1, 27 bytes\nSystem Information\n\tManufacturer: Gigabyte Technology Co., Ltd.\n\tProduct Name: B450 AORUS ELITE\n\tVersion: Default string\n\tSerial Number: Default string\n\tUUID: 03c00218-044d-05b5-6506-740700080009\n\tWake-up Type: Power Switch\n\tSKU Number: Default string\n\tFamily: B450 MB\n\nHandle 0x0002, DMI type 2, 15 bytes\nBase Board Information\n\tManufacturer: Gigabyte Technology Co., Ltd.\n\tProduct Name: B450 AORUS ELITE\n\tVersion: Default string\n\tSerial Number: Default string\n\tAsset Tag: Default string\n\tFeatures:\n\t\tBoard is a hosting board\n\t\tBoard is replaceable\n\tLocation In Chassis: Default string\n\tChassis Handle: 0x0003\n\tType: Motherboard\n\tContained Object Handles: 0\n\nHandle 0x000B, DMI type 16, 23 bytes\nPhysical Memory Array\n\tLocation: System Board Or Motherboard\n\tUse: System Memory\n\tError Correction Type: None\n\tMaximum Capacity: 128 GB\n\tError Information Handle: 0x000A\n\tNumber Of Devices: 4\n\nHandle 0x0013, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0012\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 16 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 0\n\tBank Locator: P0 CHANNEL A\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: 00000000\n\tAsset Tag: Not Specified\n\tPart Number: CMW32GX4M2E3200C16 \n\tRank: 2\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: Unknown\n\tMaximum Voltage: Unknown\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 3, Hex 0x9E\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 16 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x0016, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0015\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 8 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 1\n\tBank Locator: P0 CHANNEL A\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: E3C4408B\n\tAsset Tag: Not Specified\n\tPart Number: BL8G32C16U4BL.M8FE\n\tRank: 1\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: 1.2 V\n\tMaximum Voltage: 1.2 V\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 6, Hex 0x9B\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 8 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x0019, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0018\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 16 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 0\n\tBank Locator: P0 CHANNEL B\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: 00000000\n\tAsset Tag: Not Specified\n\tPart Number: CMW32GX4M2E3200C16 \n\tRank: 2\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: Unknown\n\tMaximum Voltage: Unknown\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 3, Hex 0x9E\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 16 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x001C, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x001B\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 8 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 1\n\tBank Locator: P0 CHANNEL B\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: E3C44087\n\tAsset Tag: Not Specified\n\tPart Number: BL8G32C16U4BL.M8FE\n\tRank: 1\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: 1.2 V\n\tMaximum Voltage: 1.2 V\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 6, Hex 0x9B\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 8 GB\n\tCache Size: None\n\tLogical Size: None\n\n",
"lsblk": "NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS\nloop0 7:0 0 118,5M 1 loop /snap/iptvnator/92\nloop1 7:1 0 48,1M 1 loop /snap/snapd/25935\nloop2 7:2 0 50,9M 1 loop /snap/snapd/25577\nloop3 7:3 0 4K 1 loop /snap/bare/5\nloop4 7:4 0 91,7M 1 loop /snap/gtk-common-themes/1535\nloop5 7:5 0 55,5M 1 loop /snap/core18/2976\nloop6 7:6 0 164,8M 1 loop /snap/gnome-3-28-1804/198\nloop7 7:7 0 0B 0 loop \nsda 8:0 0 447,1G 0 disk \n└─sda1 8:1 0 447,1G 0 part \nsdb 8:16 1 0B 0 disk \nsdc 8:32 1 0B 0 disk \nsdd 8:48 1 0B 0 disk \nsde 8:64 1 0B 0 disk \nnvme0n1 259:0 0 465,8G 0 disk \n├─nvme0n1p1 259:1 0 976M 0 part /boot/efi\n├─nvme0n1p2 259:2 0 440,8G 0 part /\n└─nvme0n1p3 259:3 0 24G 0 part [SWAP]\nnvme1n1 259:4 0 465,8G 0 disk \n├─nvme1n1p1 259:5 0 50M 0 part \n├─nvme1n1p2 259:6 0 464,3G 0 part \n├─nvme1n1p3 259:7 0 808M 0 part \n├─nvme1n1p4 259:8 0 100M 0 part \n└─nvme1n1p5 259:9 0 522M 0 part \n",
"lscpu": "Architecture : x86_64\nMode(s) opératoire(s) des processeurs : 32-bit, 64-bit\nTailles des adresses: 48 bits physical, 48 bits virtual\nBoutisme : Little Endian\nProcesseur(s) : 24\nListe de processeur(s) en ligne : 0-23\nIdentifiant constructeur : AuthenticAMD\nNom de modèle : AMD Ryzen 9 5900X 12-Core Processor\nFamille de processeur : 25\nModèle : 33\nThread(s) par cœur : 2\nCœur(s) par socket : 12\nSocket(s) : 1\nRévision : 2\nAccroissement de fréquence : activé\nmultiplication des MHz du/des CPU(s) : 73%\nVitesse maximale du processeur en MHz : 4951,0000\nVitesse minimale du processeur en MHz : 550,0000\nBogoMIPS : 7399,98\nDrapeaux : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local user_shstk clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm debug_swap\nVirtualisation : AMD-V\nCache L1d : 384 KiB (12 instances)\nCache L1i : 384 KiB (12 instances)\nCache L2 : 6 MiB (12 instances)\nCache L3 : 64 MiB (2 instances)\nNœud(s) NUMA : 1\nNœud NUMA 0 de processeur(s) : 0-23\nVulnérabilité Gather data sampling : Not affected\nVulnérabilité Indirect target selection : Not affected\nVulnérabilité Itlb multihit : Not affected\nVulnérabilité L1tf : Not affected\nVulnérabilité Mds : Not affected\nVulnérabilité Meltdown : Not affected\nVulnérabilité Mmio stale data : Not affected\nVulnérabilité Reg file data sampling : Not affected\nVulnérabilité Retbleed : Not affected\nVulnérabilité Spec rstack overflow : Mitigation; Safe RET\nVulnérabilité Spec store bypass : Mitigation; Speculative Store Bypass disabled via prctl\nVulnérabilité Spectre v1 : Mitigation; usercopy/swapgs barriers and __user pointer sanitization\nVulnérabilité Spectre v2 : Mitigation; Retpolines; IBPB conditional; IBRS_FW; STIBP always-on; RSB filling; PBRSB-eIBRS Not affected; BHI Not affected\nVulnérabilité Srbds : Not affected\nVulnérabilité Tsa : Vulnerable: Clear CPU buffers attempted, no microcode\nVulnérabilité Tsx async abort : Not affected\nVulnérabilité Vmscape : Mitigation; IBPB before exit to userspace\n"
}
},
"results": {
"cpu": {
"events_per_sec": 37481.55,
"events_per_sec_single": 5616.19,
"events_per_sec_multi": 69346.91,
"duration_s": 20.0003,
"score": 37481.55,
"score_single": 5616.19,
"score_multi": 69346.91
},
"memory": {
"throughput_mib_s": 8598.37,
"score": 8598.37
},
"disk": {
"read_mb_s": 1057.6943359375,
"write_mb_s": 1057.150390625,
"iops_read": 270769.90767,
"iops_write": 270630.745642,
"latency_ms": 0.000439065137,
"score": 1057.42236328125
},
"network": {
"upload_mbps": 941.6102875346334,
"download_mbps": 939.180709941553,
"ping_ms": 0.241,
"jitter_ms": null,
"packet_loss_percent": null,
"score": 940.3954987380932
},
"gpu": {
"glmark2_score": null,
"score": null
},
"global_score": 79738.0142253006
},
"raw_info": {
"debug": "active",
"dmidecode": "# dmidecode 3.6\nGetting SMBIOS data from sysfs.\nSMBIOS 3.3.0 present.\n\nHandle 0x0000, DMI type 0, 26 bytes\nBIOS Information\n\tVendor: American Megatrends International, LLC.\n\tVersion: F65e\n\tRelease Date: 09/20/2023\n\tAddress: 0xF0000\n\tRuntime Size: 64 kB\n\tROM Size: 16 MB\n\tCharacteristics:\n\t\tPCI is supported\n\t\tBIOS is upgradeable\n\t\tBIOS shadowing is allowed\n\t\tBoot from CD is supported\n\t\tSelectable boot is supported\n\t\tBIOS ROM is socketed\n\t\tEDD is supported\n\t\tJapanese floppy for NEC 9800 1.2 MB is supported (int 13h)\n\t\tJapanese floppy for Toshiba 1.2 MB is supported (int 13h)\n\t\t5.25\"/360 kB floppy services are supported (int 13h)\n\t\t5.25\"/1.2 MB floppy services are supported (int 13h)\n\t\t3.5\"/720 kB floppy services are supported (int 13h)\n\t\t3.5\"/2.88 MB floppy services are supported (int 13h)\n\t\tPrint screen service is supported (int 5h)\n\t\tSerial services are supported (int 14h)\n\t\tPrinter services are supported (int 17h)\n\t\tCGA/mono video services are supported (int 10h)\n\t\tUSB legacy is supported\n\t\tBIOS boot specification is supported\n\t\tTargeted content distribution is supported\n\t\tUEFI is supported\n\tBIOS Revision: 5.17\n\nHandle 0x0001, DMI type 1, 27 bytes\nSystem Information\n\tManufacturer: Gigabyte Technology Co., Ltd.\n\tProduct Name: B450 AORUS ELITE\n\tVersion: Default string\n\tSerial Number: Default string\n\tUUID: 03c00218-044d-05b5-6506-740700080009\n\tWake-up Type: Power Switch\n\tSKU Number: Default string\n\tFamily: B450 MB\n\nHandle 0x0002, DMI type 2, 15 bytes\nBase Board Information\n\tManufacturer: Gigabyte Technology Co., Ltd.\n\tProduct Name: B450 AORUS ELITE\n\tVersion: Default string\n\tSerial Number: Default string\n\tAsset Tag: Default string\n\tFeatures:\n\t\tBoard is a hosting board\n\t\tBoard is replaceable\n\tLocation In Chassis: Default string\n\tChassis Handle: 0x0003\n\tType: Motherboard\n\tContained Object Handles: 0\n\nHandle 0x000B, DMI type 16, 23 bytes\nPhysical Memory Array\n\tLocation: System Board Or Motherboard\n\tUse: System Memory\n\tError Correction Type: None\n\tMaximum Capacity: 128 GB\n\tError Information Handle: 0x000A\n\tNumber Of Devices: 4\n\nHandle 0x0013, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0012\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 16 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 0\n\tBank Locator: P0 CHANNEL A\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: 00000000\n\tAsset Tag: Not Specified\n\tPart Number: CMW32GX4M2E3200C16 \n\tRank: 2\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: Unknown\n\tMaximum Voltage: Unknown\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 3, Hex 0x9E\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 16 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x0016, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0015\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 8 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 1\n\tBank Locator: P0 CHANNEL A\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: E3C4408B\n\tAsset Tag: Not Specified\n\tPart Number: BL8G32C16U4BL.M8FE\n\tRank: 1\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: 1.2 V\n\tMaximum Voltage: 1.2 V\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 6, Hex 0x9B\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 8 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x0019, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0018\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 16 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 0\n\tBank Locator: P0 CHANNEL B\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: 00000000\n\tAsset Tag: Not Specified\n\tPart Number: CMW32GX4M2E3200C16 \n\tRank: 2\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: Unknown\n\tMaximum Voltage: Unknown\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 3, Hex 0x9E\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 16 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x001C, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x001B\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 8 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 1\n\tBank Locator: P0 CHANNEL B\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: E3C44087\n\tAsset Tag: Not Specified\n\tPart Number: BL8G32C16U4BL.M8FE\n\tRank: 1\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: 1.2 V\n\tMaximum Voltage: 1.2 V\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 6, Hex 0x9B\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 8 GB\n\tCache Size: None\n\tLogical Size: None\n\n",
"lsblk": "NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS\nloop0 7:0 0 118,5M 1 loop /snap/iptvnator/92\nloop1 7:1 0 48,1M 1 loop /snap/snapd/25935\nloop2 7:2 0 50,9M 1 loop /snap/snapd/25577\nloop3 7:3 0 4K 1 loop /snap/bare/5\nloop4 7:4 0 91,7M 1 loop /snap/gtk-common-themes/1535\nloop5 7:5 0 55,5M 1 loop /snap/core18/2976\nloop6 7:6 0 164,8M 1 loop /snap/gnome-3-28-1804/198\nloop7 7:7 0 0B 0 loop \nsda 8:0 0 447,1G 0 disk \n└─sda1 8:1 0 447,1G 0 part \nsdb 8:16 1 0B 0 disk \nsdc 8:32 1 0B 0 disk \nsdd 8:48 1 0B 0 disk \nsde 8:64 1 0B 0 disk \nnvme0n1 259:0 0 465,8G 0 disk \n├─nvme0n1p1 259:1 0 976M 0 part /boot/efi\n├─nvme0n1p2 259:2 0 440,8G 0 part /\n└─nvme0n1p3 259:3 0 24G 0 part [SWAP]\nnvme1n1 259:4 0 465,8G 0 disk \n├─nvme1n1p1 259:5 0 50M 0 part \n├─nvme1n1p2 259:6 0 464,3G 0 part \n├─nvme1n1p3 259:7 0 808M 0 part \n├─nvme1n1p4 259:8 0 100M 0 part \n└─nvme1n1p5 259:9 0 522M 0 part \n",
"lscpu": "Architecture : x86_64\nMode(s) opératoire(s) des processeurs : 32-bit, 64-bit\nTailles des adresses: 48 bits physical, 48 bits virtual\nBoutisme : Little Endian\nProcesseur(s) : 24\nListe de processeur(s) en ligne : 0-23\nIdentifiant constructeur : AuthenticAMD\nNom de modèle : AMD Ryzen 9 5900X 12-Core Processor\nFamille de processeur : 25\nModèle : 33\nThread(s) par cœur : 2\nCœur(s) par socket : 12\nSocket(s) : 1\nRévision : 2\nAccroissement de fréquence : activé\nmultiplication des MHz du/des CPU(s) : 73%\nVitesse maximale du processeur en MHz : 4951,0000\nVitesse minimale du processeur en MHz : 550,0000\nBogoMIPS : 7399,98\nDrapeaux : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local user_shstk clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm debug_swap\nVirtualisation : AMD-V\nCache L1d : 384 KiB (12 instances)\nCache L1i : 384 KiB (12 instances)\nCache L2 : 6 MiB (12 instances)\nCache L3 : 64 MiB (2 instances)\nNœud(s) NUMA : 1\nNœud NUMA 0 de processeur(s) : 0-23\nVulnérabilité Gather data sampling : Not affected\nVulnérabilité Indirect target selection : Not affected\nVulnérabilité Itlb multihit : Not affected\nVulnérabilité L1tf : Not affected\nVulnérabilité Mds : Not affected\nVulnérabilité Meltdown : Not affected\nVulnérabilité Mmio stale data : Not affected\nVulnérabilité Reg file data sampling : Not affected\nVulnérabilité Retbleed : Not affected\nVulnérabilité Spec rstack overflow : Mitigation; Safe RET\nVulnérabilité Spec store bypass : Mitigation; Speculative Store Bypass disabled via prctl\nVulnérabilité Spectre v1 : Mitigation; usercopy/swapgs barriers and __user pointer sanitization\nVulnérabilité Spectre v2 : Mitigation; Retpolines; IBPB conditional; IBRS_FW; STIBP always-on; RSB filling; PBRSB-eIBRS Not affected; BHI Not affected\nVulnérabilité Srbds : Not affected\nVulnérabilité Tsa : Vulnerable: Clear CPU buffers attempted, no microcode\nVulnérabilité Tsx async abort : Not affected\nVulnérabilité Vmscape : Mitigation; IBPB before exit to userspace\n"
}
}
[DEBUG] Payload sauvegardé au format JSON dans bench_payload_last.json (49192 octets)
[DEBUG] Contenu de /home/gilles/Documents/vscode/bis/bench_go/config.yaml :
# bench-client config.yaml
# Objectif: décrire précisément
# - les outils à utiliser (et exigences d'installation)
# - les informations à collecter
# - les benchmarks à exécuter
# - les paramètres (timeouts, limites, endpoints, debug)
#
# Le binaire (Go/Rust) charge ce fichier depuis HTTP(S), valide les bornes, applique des defaults sûrs,
# et peut fallback sur une config locale si indisponible.
config_version: 1
profile: default
backend:
# URL finale du POST (le programme peut aussi accepter server_base_url + path)
url: "http://10.0.0.50:8007/api/benchmark"
# Auth: idéalement injecté par variable d'env sur le client; éviter de mettre le token dans la config distante.
auth:
mode: bearer_env
env_var: "test_hardware_perf"
http:
timeout_s: 15
retries: 2
retry_backoff_s: 2
tls:
verify: true
remote_config:
# Options de cache/ETag si le binaire gère le rafraîchissement
cache_path: "/var/cache/bench-client/config.yaml"
use_etag: true
refresh_max_age_s: 86400
runtime:
# Timeouts globaux de sécurité
max_total_runtime_s: 480
command_timeout_s: 30
command_timeout_overrides:
dmidecode_s: 20
smartctl_s: 10
lsblk_s: 10
sysbench_cpu_s: 120
sysbench_mem_s: 60
fio_s: 120
iperf3_s: 20
temp_dir: "/tmp"
locale: "C"
path_prepend:
- "/usr/sbin"
- "/sbin"
logging:
level: info # trace|debug|info|warn|error
progress: true # affichage étapes (1/N) + items
show_command_lines: false
capture_raw_output: true # remonte dans raw_info (attention taille)
raw_output_max_kb: 5120
save_payload_to_tmp: true
payload_tmp_dir: "/tmp"
payload_filename_prefix: "bench_payload_"
interactive_pause_on_debug: true
payload:
dir: "."
prefix: "bench_payload_"
always_save: true
device_identity:
# device_identifier envoyé au backend
prefer:
- hostname
- machine_id
hostname_command: "hostname"
machine_id_path: "/etc/machine-id"
dependencies:
# Liste des programmes externes (installés par le script shell)
# Le binaire doit pouvoir:
# - détecter présence/version (optionnel)
# - marquer chaque "feature" comme disponible ou non
required_base:
- name: "curl"
purpose: "Téléchargements/diagnostics (souvent côté script)"
- name: "jq"
purpose: "Optionnel: debug/validation (souvent côté script, pas nécessaire au binaire)"
- name: "lscpu"
purpose: "Infos CPU"
- name: "free"
purpose: "Infos mémoire"
- name: "lsblk"
purpose: "Infos stockage/partitions"
- name: "ip"
purpose: "Interfaces réseau, adresses IP"
- name: "bc"
purpose: "Optionnel: calculs (si pas fait en code)"
- name: "dmidecode"
purpose: "Infos BIOS/carte mère/RAM/DMI"
requires_root: true
- name: "smartctl"
package: "smartmontools"
purpose: "Infos disques SMART"
requires_root: true
- name: "ethtool"
purpose: "Vitesse réseau, Wake-on-LAN, driver"
requires_root: true
- name: "lspci"
package: "pciutils"
purpose: "Liste périphériques PCI (GPU/Audio/etc.)"
- name: "lsusb"
package: "usbutils"
purpose: "Liste périphériques USB"
- name: "aplay"
package: "alsa-utils"
purpose: "Inventaire audio ALSA"
- name: "arecord"
package: "alsa-utils"
purpose: "Inventaire capture ALSA"
- name: "pactl"
package: "pulseaudio-utils"
purpose: "Infos audio PulseAudio/PipeWire (si dispo)"
- name: "iw"
package: "iw"
purpose: "SSID + bitrate Wi-Fi"
- name: "loginctl"
package: "systemd"
purpose: "Type de session (x11/wayland/tty)"
- name: "xrandr"
package: "x11-xserver-utils"
purpose: "Résolution écran (X11)"
- name: "xdpyinfo"
package: "x11-utils"
purpose: "Résolution écran (fallback X11)"
- name: "swaymsg"
package: "sway"
purpose: "Résolution écran (Wayland/Sway)"
- name: "nvidia-smi"
package: "nvidia-utils"
purpose: "Infos GPU NVIDIA (si présent)"
- name: "systemd-detect-virt"
package: "systemd"
purpose: "Détection virtualisation/proxmox"
- name: "pveversion"
package: "pve-manager"
purpose: "Détection hôte Proxmox (si présent)"
benchmark_tools:
- name: "sysbench"
purpose: "Bench CPU et mémoire"
- name: "fio"
purpose: "Bench disque"
- name: "iperf3"
purpose: "Bench réseau"
- name: "ping"
package: "iputils-ping"
purpose: "Vérifier accessibilité iperf server"
- name: "nc"
package: "netcat-openbsd"
purpose: "Tester port 5201 iperf3"
collection:
# Liste des infos à récupérer, structurées comme dans ton script.
system:
enabled: true
items:
- hostname
- os_id
- os_version
- kernel_version
- architecture
- session_type # XDG_SESSION_TYPE / loginctl / DISPLAY / WAYLAND_DISPLAY
- screen_resolution # xrandr/xdpyinfo/swaymsg
- last_boot_time # who -b
- uptime_seconds # /proc/uptime
- battery_percentage # /sys/class/power_supply/BAT*/capacity
- battery_status # /sys/class/power_supply/BAT*/status
- battery_health # /sys/class/power_supply/BAT*/health ou uevent
- virtualization # systemd-detect-virt + proxmox hints
virtualization_detection:
enabled: true
proxmox:
detect_host_by:
- pveversion
- "/etc/pve"
detect_guest_by:
- systemd_detect_virt
- qemu_guest_agent
- dmidecode_manufacturer_product_matches: ["qemu", "proxmox"]
capture:
- is_proxmox_host
- is_proxmox_guest
- proxmox_version
- virtualization_type
cpu:
enabled: true
source:
primary: lscpu
supplement_dmidecode: true
items:
- vendor
- model
- cores_physical # cores_per_socket * sockets
- threads # nproc
- base_freq_ghz # lscpu CPU MHz -> GHz
- max_freq_ghz # lscpu CPU max MHz -> GHz
- cache_l1_kb
- cache_l2_kb
- cache_l3_kb
- flags # CPU flags list
- microarchitecture # depuis dmidecode type 4 (Family) si manquant
raw_capture:
- lscpu_output
ram:
enabled: true
sources:
- free
- dmidecode
items:
- total_mb
- used_mb
- free_mb
- shared_mb
- slots_total # dmidecode -t 16
- slots_used # dmidecode -t 17
- max_capacity_mb # dmidecode -t 16 Maximum Capacity
- ecc # dmidecode -t memory Error Correction Type
- layout # par slot: locator, size, type, speed, configured_speed, form_factor, type_detail, rank, manufacturer, part_number
raw_capture:
- dmidecode_full
gpu:
enabled: true
sources:
- lspci
- nvidia_smi_optional
items:
- vendor # NVIDIA/AMD/Intel/Unknown
- model # lspci vga/3d ou nvidia-smi name
- memory_dedicated_mb # nvidia-smi (si dispo)
- driver_version # nvidia-smi (si dispo)
motherboard_bios:
enabled: true
source: dmidecode
items:
- baseboard_manufacturer
- baseboard_product_name
- bios_vendor
- bios_version
- bios_release_date
pci_devices:
enabled: true
source: lspci
items:
- slot
- class
- vendor
- device
usb_devices:
enabled: true
source: lsusb
items:
- bus
- device
- vendor_id
- product_id
- name
audio:
enabled: true
sources:
- lspci
- alsa
- pactl_optional
items:
hardware:
- pci_audio_devices # lspci audio
- alsa_playback # aplay -l
- alsa_capture # arecord -l
- pcm_devices # aplay -L
software:
- backend # pipewire/pulseaudio/alsa
- server_name
- server_version
- default_sink
- default_source
- sinks
- sources
storage:
enabled: true
sources:
- lsblk
- smartctl
devices:
enumerate_by: "lsblk_disks" # lsblk -d -n -o NAME,TYPE
include_removable: false
items:
- device # /dev/sda
- model # smartctl -i
- serial # smartctl -i
- size # lsblk
- type # rota -> ssd/hdd
- interface # tran
- temperature_c # smartctl -A
- smart_health # smartctl -H
partitions:
enabled: true
source: lsblk_json
items:
- name
- mount_point
- fs_type
- total_gb
- used_gb
- free_gb
raw_capture:
- lsblk_output
network_shares:
enabled: true
source: "/proc/mounts"
detect_fs_types:
- nfs
- nfs4
- cifs
- smbfs
- fuse.cifs
- fuse.smbfs
- afp
- afpfs
- fuse.afpfs
- sshfs
- fuse.sshfs
- ftpfs
- curlftpfs
- fuse.ftpfs
- davfs
- davfs2
- fuse.webdavfs
items:
- protocol
- source
- mount_point
- fs_type
- options
- total_gb
- used_gb
- free_gb
network:
enabled: true
sources:
- ip
- ethtool
- iw_optional
interface_filter:
# reprise logique script: UP|UNKNOWN sauf interfaces virtuelles connues
include_states: ["UP", "UNKNOWN"]
exclude_name_prefixes: ["lo", "docker", "br-", "veth", "tap", "fw"]
items:
- name
- type # bridge|ethernet|wifi|unknown
- mac
- ip_address
- speed_mbps # ethtool speed ou iw tx bitrate
- driver # ethtool -i ou /sys/.../driver
- ssid # iw dev link
- wake_on_lan # ethtool Wake-on
raw_info:
enabled: true
include:
- lscpu
- lsblk
- dmidecode
max_size_kb: 5120
benchmarks:
enabled: true
# Pondérations identiques à ton script (si résultat dispo)
weights:
cpu: 0.40
memory: 0.20
disk: 0.20
network: 0.10
gpu: 0.10
cpu_sysbench:
enabled: true
tool: sysbench
params:
cpu_max_prime: 20000
single_thread: 1
multi_threads: "all" # all -> nproc
outputs:
- events_per_sec_single
- events_per_sec_multi
- duration_s
- score_single
- score_multi
- score_global
memory_sysbench:
enabled: true
tool: sysbench
params:
total_size: "1G"
outputs:
- throughput_mib_s
- score
disk_fio:
enabled: true
tool: fio
safety:
# Empêcher un bench destructif ou trop long
max_runtime_s: 60
max_size: "1G"
direct: 1
params:
name: "bench"
ioengine: "libaio"
rw: "randrw"
bs: "4k"
size: "500M"
numjobs: 1
runtime_s: 30
time_based: true
output_format: "json"
outputs:
- read_mb_s
- write_mb_s
- iops_read
- iops_write
- latency_ms
- score
network_iperf3:
enabled: true
tool: iperf3
server: "10.0.0.50"
port: 5201
prechecks:
ping:
enabled: true
count: 1
timeout_s: 1
port_check:
enabled: true
tool: nc
timeout_s: 2
params:
duration_s: 10
bidir: true
json: true
outputs:
- upload_mbps
- download_mbps
- ping_ms
- score
# placeholders (comme ton script)
- jitter_ms
- packet_loss_percent
gpu:
enabled: false
note: "GPU bench non implémenté dans le script d'origine (placeholder)."
payload_mapping:
# Le binaire peut mapper ses structures internes vers le schéma backend actuel.
# Utile si ton backend attend des champs précis.
device_identifier: "system.hostname"
bench_script_version_field: "bench_client_version"
include_sections:
- hardware
- results
- raw_info
limits:
# Bornes générales de sécurité (validation côté client)
max_payload_kb: 1024
max_raw_info_kb: 5120
max_fio_runtime_s: 60
max_fio_size_bytes: 1073741824 # 1 GiB
max_sysbench_cpu_prime: 50000
max_iperf_duration_s: 30
features:
# Permet d'activer/désactiver rapidement des blocs selon machines
enable_screen_resolution_detection: true
enable_battery_detection: true
enable_network_share_detection: true
enable_audio_detection: true
enable_proxmox_detection: true
[DEBUG] Config chargée : {ConfigVersion:1 Backend:{URL:http://10.0.0.50:8007/api/benchmark Auth:{Mode:bearer_env EnvVar:test_hardware_perf} HTTP:{TimeoutS:15 Retries:2 RetryBackoffS:2 TLSVerify:false}} Runtime:{MaxTotalRuntime:480 CommandTimeout:30 TempDir:/tmp Locale:C PathPrepend:[/usr/sbin /sbin]} Logging:{Level:info Progress:true ShowCommandLines:false CaptureRawOutput:true RawOutputMaxKB:5120 SavePayloadToTmp:true PayloadTmpDir:/tmp PayloadFilenamePrefix:bench_payload_ InteractiveDebugPause:true} Payload:{Dir:. Prefix:bench_payload_ Always:true} Benchmarks:{Enabled:true Weights:map[cpu:0.4 disk:0.2 gpu:0.1 memory:0.2 network:0.1] CPU:{Enabled:true Tool:sysbench Server: Port:0 Params:map[cpu_max_prime:20000 multi_threads:all single_thread:1] Safety:map[]} Memory:{Enabled:true Tool:sysbench Server: Port:0 Params:map[total_size:1G] Safety:map[]} Disk:{Enabled:true Tool:fio Server: Port:0 Params:map[bs:4k ioengine:libaio name:bench numjobs:1 output_format:json runtime_s:30 rw:randrw size:500M time_based:true] Safety:map[direct:1 max_runtime_s:60 max_size:1G]} Network:{Enabled:true Tool:iperf3 Server:10.0.0.50 Port:5201 Params:map[bidir:true duration_s:10 json:true] Safety:map[]}} Collection:{System:{Enabled:true} CPU:{Enabled:true} RAM:{Enabled:true} Storage:{Enabled:true} Network:{Enabled:true} GPU:{Enabled:true} Audio:{Enabled:true} PCI:{Enabled:true} USB:{Enabled:true}} RawInfo:{Enabled:true Include:[lscpu lsblk dmidecode] MaxSizeKB:5120}}
[DEBUG] Configuration complète : {ConfigVersion:1 Backend:{URL:http://10.0.0.50:8007/api/benchmark Auth:{Mode:bearer_env EnvVar:test_hardware_perf} HTTP:{TimeoutS:15 Retries:2 RetryBackoffS:2 TLSVerify:false}} Runtime:{MaxTotalRuntime:480 CommandTimeout:30 TempDir:/tmp Locale:C PathPrepend:[/usr/sbin /sbin]} Logging:{Level:info Progress:true ShowCommandLines:false CaptureRawOutput:true RawOutputMaxKB:5120 SavePayloadToTmp:true PayloadTmpDir:/tmp PayloadFilenamePrefix:bench_payload_ InteractiveDebugPause:true} Payload:{Dir:. Prefix:bench_payload_ Always:true} Benchmarks:{Enabled:true Weights:map[cpu:0.4 disk:0.2 gpu:0.1 memory:0.2 network:0.1] CPU:{Enabled:true Tool:sysbench Server: Port:0 Params:map[cpu_max_prime:20000 multi_threads:all single_thread:1] Safety:map[]} Memory:{Enabled:true Tool:sysbench Server: Port:0 Params:map[total_size:1G] Safety:map[]} Disk:{Enabled:true Tool:fio Server: Port:0 Params:map[bs:4k ioengine:libaio name:bench numjobs:1 output_format:json runtime_s:30 rw:randrw size:500M time_based:true] Safety:map[direct:1 max_runtime_s:60 max_size:1G]} Network:{Enabled:true Tool:iperf3 Server:10.0.0.50 Port:5201 Params:map[bidir:true duration_s:10 json:true] Safety:map[]}} Collection:{System:{Enabled:true} CPU:{Enabled:true} RAM:{Enabled:true} Storage:{Enabled:true} Network:{Enabled:true} GPU:{Enabled:true} Audio:{Enabled:true} PCI:{Enabled:true} USB:{Enabled:true}} RawInfo:{Enabled:true Include:[lscpu lsblk dmidecode] MaxSizeKB:5120}}
[DEBUG] [2/6] Début collecte CPU
[DEBUG] Exec: dmidecode [-t 4]
[DEBUG] [2/6] Détails CPU: {Vendor:AuthenticAMD Model:AMD Ryzen 9 5900X 12-Core Processor Cores:12 Threads:24 BaseFreqGHz:4.951 MaxFreqGHz:4.951 CacheL1KB:768 CacheL2KB:6144 CacheL3KB:32768 Flags:[fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local user_shstk clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm debug_swap] Microarchitecture:Zen TDPW:<nil>}
[DEBUG] [2/6] Début collecte RAM
[DEBUG] SMBIOS détecté : SMBIOS 3.3.0 (54 tables)
[DEBUG] Module SMBIOS détecté : DIMM 0 {Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 }
[DEBUG] Module SMBIOS détecté : DIMM 1 {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE}
[DEBUG] Module SMBIOS détecté : DIMM 0 {Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 }
[DEBUG] Module SMBIOS détecté : DIMM 1 {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE}
[DEBUG] Mémoire SMBIOS : slots_total=10 slots_used=4 ecc=false max=0MB
[DEBUG] [2/6] Détails RAM: {TotalMB:48096 UsedMB:17180 FreeMB:30916 SharedMB:985 SlotsTotal:10 SlotsUsed:4 MaxCapacityMB:48096 ECC:false Layout:[{Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 } {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE} {Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 } {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE}]}
[DEBUG] [2/6] Début collecte GPU
[DEBUG] Exec: lspci []
[DEBUG] Exec: nvidia-smi [--query-gpu=name,driver_version,memory.total --format=csv,noheader,nounits]
[DEBUG] [2/6] Détails GPU: {Vendor:NVIDIA Model:NVIDIA GeForce RTX 3060 DriverVersion:550.163.01 MemoryDedicatedMB:0xc000480010 MemorySharedMB:<nil> APISupport:[]}
[DEBUG] [2/6] Début collecte stockage
[DEBUG] Exec: lsblk [-J -b -o NAME,TYPE,TRAN,VENDOR,MODEL,SERIAL,SIZE]
[DEBUG] SMART open /dev/sde impossible: unknown drive type
[DEBUG] SMART open /dev/sdb impossible: unknown drive type
[DEBUG] SMART open /dev/sdc impossible: unknown drive type
[DEBUG] SMART open /dev/sdd impossible: unknown drive type
[DEBUG] [2/6] Détails stockage: {Devices:[{Name:/dev/nvme0n1 Type:ssd Interface:nvme CapacityGB:465.7617416381836 Vendor:CT500P2SSD8 Model:CT500P2SSD8 Serial:2138E5D60DD8 SmartHealth:PASSED Temperature:33} {Name:/dev/nvme1n1 Type: Interface:nvme CapacityGB:465.7617416381836 Vendor:CT500P2SSD8 Model:CT500P2SSD8 Serial:2108E4FD258D SmartHealth:PASSED Temperature:32} {Name:/dev/sda Type: Interface:sata CapacityGB:447.13167572021484 Vendor:ATA Model:KINGSTON SUV500480G Serial:50026B768226A365 SmartHealth:PASSED Temperature:25} {Name:/dev/sdb Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:Compact Flash Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sdc Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:SD/MMC Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sdd Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:MS/MS-PRO Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sde Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:xD-Picture Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0}] Partitions:[{Name:/dev/nvme0n1p2 MountPoint:/ FSType:ext4 TotalGB:432.80120849609375 UsedGB:0xc0004802d0 FreeGB:0xc0004802d8} {Name:/dev/nvme0n1p1 MountPoint:/boot/efi FSType:vfat TotalGB:0.9512481689453125 UsedGB:0xc000480310 FreeGB:0xc000480318}]}
[DEBUG] [2/6] Début collecte PCI devices
[DEBUG] Exec: lspci [-mm]
[DEBUG] [2/6] Détails PCI: [{Slot:00:00.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Root Complex} {Slot:00:00.2 Class:IOMMU Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse IOMMU} {Slot:00:01.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:01.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse GPP Bridge} {Slot:00:01.3 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse GPP Bridge} {Slot:00:02.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:03.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:03.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse GPP Bridge} {Slot:00:04.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:05.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:07.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:07.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]} {Slot:00:08.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:08.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]} {Slot:00:14.0 Class:SMBus Vendor:Advanced Micro Devices, Inc. [AMD] Device:FCH SMBus Controller} {Slot:00:14.3 Class:ISA bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:FCH LPC Bridge} {Slot:00:18.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 0} {Slot:00:18.1 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 1} {Slot:00:18.2 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 2} {Slot:00:18.3 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 3} {Slot:00:18.4 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 4} {Slot:00:18.5 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 5} {Slot:00:18.6 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 6} {Slot:00:18.7 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 7} {Slot:01:00.0 Class:Non-Volatile memory controller Vendor:Micron/Crucial Technology Device:P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)} {Slot:02:00.0 Class:USB controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset USB 3.1 xHCI Compliant Host Controller} {Slot:02:00.1 Class:SATA controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset SATA Controller} {Slot:02:00.2 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Bridge} {Slot:03:00.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:03:01.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:03:04.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:03:08.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:04:00.0 Class:Ethernet controller Vendor:Realtek Semiconductor Co., Ltd. Device:RTL8111/8168/8211/8411 PCI Express Gigabit Ethernet Controller} {Slot:07:00.0 Class:Non-Volatile memory controller Vendor:Micron/Crucial Technology Device:P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)} {Slot:08:00.0 Class:VGA compatible controller Vendor:NVIDIA Corporation Device:GA106 [GeForce RTX 3060 Lite Hash Rate]} {Slot:08:00.1 Class:Audio device Vendor:NVIDIA Corporation Device:GA106 High Definition Audio Controller} {Slot:09:00.0 Class:Non-Essential Instrumentation [1300] Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Function} {Slot:0a:00.0 Class:Non-Essential Instrumentation [1300] Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Reserved SPP} {Slot:0a:00.1 Class:Encryption controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Cryptographic Coprocessor PSPCPP} {Slot:0a:00.3 Class:USB controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse USB 3.0 Host Controller} {Slot:0a:00.4 Class:Audio device Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse HD Audio Controller}]
[DEBUG] [2/6] Début collecte USB devices
[DEBUG] Exec: lsusb []
[DEBUG] [2/6] Détails USB: [{Bus:001 Device:001 VendorID:1d6b ProductID:0002 Name:Linux Foundation 2.0 root hub} {Bus:001 Device:002 VendorID:058f ProductID:6362 Name:Alcor Micro Corp. Flash Card Reader/Writer} {Bus:002 Device:001 VendorID:1d6b ProductID:0003 Name:Linux Foundation 3.0 root hub} {Bus:003 Device:001 VendorID:1d6b ProductID:0002 Name:Linux Foundation 2.0 root hub} {Bus:003 Device:003 VendorID:046d ProductID:c52b Name:Logitech, Inc. Unifying Receiver} {Bus:003 Device:004 VendorID:0bda ProductID:b711 Name:Realtek Semiconductor Corp. RTL8188GU 802.11n WLAN Adapter (After Modeswitch)} {Bus:004 Device:001 VendorID:1d6b ProductID:0003 Name:Linux Foundation 3.0 root hub}]
[DEBUG] [2/6] Début collecte partages réseau
[DEBUG] [2/6] Détails partages réseau: []
[DEBUG] [2/6] Début collecte interfaces réseau
[DEBUG] Exec: ethtool [eno1]
[DEBUG] Exec: ethtool [-i eno1]
[DEBUG] Exec: ethtool [wlxe84e06a6c1fc]
[DEBUG] Exec: ethtool [-i wlxe84e06a6c1fc]
[DEBUG] Exec: iwgetid [wlxe84e06a6c1fc -r]
[DEBUG] Exec: iw [wlxe84e06a6c1fc link]
[DEBUG] [2/6] Détails réseau: {Interfaces:[{Name:eno1 Type:ethernet MAC:18:c0:4d:b5:65:74 IP:10.0.1.109 SpeedMbps:0xc0002d4578 Driver:r8169 SSID: WakeOnLAN:false} {Name:wlxe84e06a6c1fc Type:wifi MAC:9a:e7:6f:42:b0:36 IP: SpeedMbps:<nil> Driver:rtl8xxxu SSID: WakeOnLAN:false}]}
[DEBUG] [2/6] Début collecte carte mère
[DEBUG] Exec: dmidecode [-t 2]
[DEBUG] Exec: dmidecode [-t 0]
[DEBUG] [2/6] Détails carte mère: {Vendor:Gigabyte Technology Co., Ltd. Model:B450 AORUS ELITE BIOSVendor:American Megatrends International, LLC. BIOSVersion:F65e BIOSDate:09/20/2023}
[DEBUG] [2/6] Début collecte OS
[DEBUG] Exec: uname [-r]
[DEBUG] Exec: uname [-m]
[DEBUG] Exec: systemd-detect-virt []
[DEBUG] Exec: xrandr []
[DEBUG] Exec: xrandr [--current]
[DEBUG] Exec: who [-b]
[DEBUG] [2/6] Détails OS: {Name:Debian GNU/Linux Version:13 (trixie) KernelVersion:6.12.57+deb13-amd64 Architecture:x86_64 SessionType: DisplayServer: ScreenResolution:5560 x 1920 LastBootTime:démarrage système 2026-01-11 09:11 UptimeSeconds:42678.75 BatteryPercentage:<nil> BatteryStatus: BatteryHealth: Hostname:aorus VirtualizationType:kvm-host DesktopEnvironment:GNOME}
[DEBUG] [2/6] Début collecte capteurs
[DEBUG] [2/6] Détails capteurs: {CPUTempC:<nil> DiskTempsC:map[nvme-pci-0100:Composite:32.85 nvme-pci-0700:Composite:31.85] Sensors:[{Chip:nvme-pci-0700 Name:Composite Type:temperature Value:31.85 Unit:°C Alarm:false} {Chip:acpitz-acpi-0 Name:temp1 Type:temperature Value:16.8 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tccd1 Type:temperature Value:37.25 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tccd2 Type:temperature Value:27.5 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tctl Type:temperature Value:41.25 Unit:°C Alarm:false} {Chip:nvme-pci-0100 Name:Composite Type:temperature Value:32.85 Unit:°C Alarm:false}]}
[DEBUG] [2/6] Début collecte audio
[DEBUG] Exec: lspci []
[DEBUG] Exec: aplay [-l]
[DEBUG] Exec: arecord [-l]
[DEBUG] Exec: aplay [-L]
[DEBUG] Exec: pactl [info]
[DEBUG] [2/6] Détails audio: {Hardware:{PCIAudioDevices:[08:00.1 Audio device: NVIDIA Corporation GA106 High Definition Audio Controller (rev a1) 0a:00.4 Audio device: Advanced Micro Devices, Inc. [AMD] Starship/Matisse HD Audio Controller] AlsaPlayback:**** Liste des périphériques matériels PLAYBACK ****
carte 0 : NVidia [HDA NVidia], périphérique 3 : HDMI 0 [LG ULTRAWIDE]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 7 : HDMI 1 [K243Y]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 8 : HDMI 2 [HDMI 2]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 9 : HDMI 3 [HDMI 3]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]
Sous-périphériques : 0/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 1 : ALC892 Digital [ALC892 Digital]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
AlsaCapture:**** Liste des périphériques matériels CAPTURE ****
carte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 2 : ALC892 Alt Analog [ALC892 Alt Analog]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
PCMDevices:[null Discard all samples (playback) or generate zero samples (capture) pipewire PipeWire Sound Server default Default ALSA Output (currently PipeWire Media Server) hw:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Direct hardware device without any conversions hw:CARD=NVidia,DEV=7 HDA NVidia, K243Y Direct hardware device without any conversions hw:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Direct hardware device without any conversions hw:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Direct hardware device without any conversions plughw:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Hardware device with all software conversions plughw:CARD=NVidia,DEV=7 HDA NVidia, K243Y Hardware device with all software conversions plughw:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Hardware device with all software conversions plughw:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Hardware device with all software conversions hdmi:CARD=NVidia,DEV=0 HDA NVidia, LG ULTRAWIDE HDMI Audio Output hdmi:CARD=NVidia,DEV=1 HDA NVidia, K243Y HDMI Audio Output hdmi:CARD=NVidia,DEV=2 HDA NVidia, HDMI 2 HDMI Audio Output hdmi:CARD=NVidia,DEV=3 HDA NVidia, HDMI 3 HDMI Audio Output dmix:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Direct sample mixing device dmix:CARD=NVidia,DEV=7 HDA NVidia, K243Y Direct sample mixing device dmix:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Direct sample mixing device dmix:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Direct sample mixing device hw:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Direct hardware device without any conversions hw:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Direct hardware device without any conversions plughw:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Hardware device with all software conversions plughw:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Hardware device with all software conversions sysdefault:CARD=Generic HD-Audio Generic, ALC892 Analog Default Audio Device front:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Front output / input surround21:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 2.1 Surround output to Front and Subwoofer speakers surround40:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 4.0 Surround output to Front and Rear speakers surround41:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 4.1 Surround output to Front, Rear and Subwoofer speakers surround50:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 5.0 Surround output to Front, Center and Rear speakers surround51:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 5.1 Surround output to Front, Center, Rear and Subwoofer speakers surround71:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 7.1 Surround output to Front, Center, Side, Rear and Woofer speakers iec958:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Digital IEC958 (S/PDIF) Digital Audio Output dmix:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Direct sample mixing device dmix:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Direct sample mixing device]} Software:{Backend: ServerName: ServerVersion: DefaultSink:<nil> DefaultSource:<nil> Sinks:[] Sources:[]}}
[DEBUG] Exec: lscpu []
[DEBUG] Exec: lsblk [-a]
[DEBUG] Exec: dmidecode [-t 0,1,2,16,17]
[DEBUG] Matériel collecté : {CPU:{Vendor:AuthenticAMD Model:AMD Ryzen 9 5900X 12-Core Processor Cores:12 Threads:24 BaseFreqGHz:4.951 MaxFreqGHz:4.951 CacheL1KB:768 CacheL2KB:6144 CacheL3KB:32768 Flags:[fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local user_shstk clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm debug_swap] Microarchitecture:Zen TDPW:<nil>} RAM:{TotalMB:48096 UsedMB:17180 FreeMB:30916 SharedMB:985 SlotsTotal:10 SlotsUsed:4 MaxCapacityMB:48096 ECC:false Layout:[{Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 } {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE} {Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 } {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE}]} GPU:{Vendor:NVIDIA Model:NVIDIA GeForce RTX 3060 DriverVersion:550.163.01 MemoryDedicatedMB:0xc000480010 MemorySharedMB:<nil> APISupport:[]} Storage:{Devices:[{Name:/dev/nvme0n1 Type:ssd Interface:nvme CapacityGB:465.7617416381836 Vendor:CT500P2SSD8 Model:CT500P2SSD8 Serial:2138E5D60DD8 SmartHealth:PASSED Temperature:33} {Name:/dev/nvme1n1 Type: Interface:nvme CapacityGB:465.7617416381836 Vendor:CT500P2SSD8 Model:CT500P2SSD8 Serial:2108E4FD258D SmartHealth:PASSED Temperature:32} {Name:/dev/sda Type: Interface:sata CapacityGB:447.13167572021484 Vendor:ATA Model:KINGSTON SUV500480G Serial:50026B768226A365 SmartHealth:PASSED Temperature:25} {Name:/dev/sdb Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:Compact Flash Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sdc Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:SD/MMC Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sdd Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:MS/MS-PRO Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sde Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:xD-Picture Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0}] Partitions:[{Name:/dev/nvme0n1p2 MountPoint:/ FSType:ext4 TotalGB:432.80120849609375 UsedGB:0xc0004802d0 FreeGB:0xc0004802d8} {Name:/dev/nvme0n1p1 MountPoint:/boot/efi FSType:vfat TotalGB:0.9512481689453125 UsedGB:0xc000480310 FreeGB:0xc000480318}]} PCIDevices:[{Slot:00:00.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Root Complex} {Slot:00:00.2 Class:IOMMU Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse IOMMU} {Slot:00:01.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:01.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse GPP Bridge} {Slot:00:01.3 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse GPP Bridge} {Slot:00:02.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:03.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:03.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse GPP Bridge} {Slot:00:04.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:05.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:07.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:07.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]} {Slot:00:08.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:08.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]} {Slot:00:14.0 Class:SMBus Vendor:Advanced Micro Devices, Inc. [AMD] Device:FCH SMBus Controller} {Slot:00:14.3 Class:ISA bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:FCH LPC Bridge} {Slot:00:18.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 0} {Slot:00:18.1 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 1} {Slot:00:18.2 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 2} {Slot:00:18.3 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 3} {Slot:00:18.4 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 4} {Slot:00:18.5 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 5} {Slot:00:18.6 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 6} {Slot:00:18.7 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 7} {Slot:01:00.0 Class:Non-Volatile memory controller Vendor:Micron/Crucial Technology Device:P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)} {Slot:02:00.0 Class:USB controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset USB 3.1 xHCI Compliant Host Controller} {Slot:02:00.1 Class:SATA controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset SATA Controller} {Slot:02:00.2 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Bridge} {Slot:03:00.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:03:01.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:03:04.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:03:08.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:04:00.0 Class:Ethernet controller Vendor:Realtek Semiconductor Co., Ltd. Device:RTL8111/8168/8211/8411 PCI Express Gigabit Ethernet Controller} {Slot:07:00.0 Class:Non-Volatile memory controller Vendor:Micron/Crucial Technology Device:P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)} {Slot:08:00.0 Class:VGA compatible controller Vendor:NVIDIA Corporation Device:GA106 [GeForce RTX 3060 Lite Hash Rate]} {Slot:08:00.1 Class:Audio device Vendor:NVIDIA Corporation Device:GA106 High Definition Audio Controller} {Slot:09:00.0 Class:Non-Essential Instrumentation [1300] Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Function} {Slot:0a:00.0 Class:Non-Essential Instrumentation [1300] Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Reserved SPP} {Slot:0a:00.1 Class:Encryption controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Cryptographic Coprocessor PSPCPP} {Slot:0a:00.3 Class:USB controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse USB 3.0 Host Controller} {Slot:0a:00.4 Class:Audio device Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse HD Audio Controller}] USBDevices:[{Bus:001 Device:001 VendorID:1d6b ProductID:0002 Name:Linux Foundation 2.0 root hub} {Bus:001 Device:002 VendorID:058f ProductID:6362 Name:Alcor Micro Corp. Flash Card Reader/Writer} {Bus:002 Device:001 VendorID:1d6b ProductID:0003 Name:Linux Foundation 3.0 root hub} {Bus:003 Device:001 VendorID:1d6b ProductID:0002 Name:Linux Foundation 2.0 root hub} {Bus:003 Device:003 VendorID:046d ProductID:c52b Name:Logitech, Inc. Unifying Receiver} {Bus:003 Device:004 VendorID:0bda ProductID:b711 Name:Realtek Semiconductor Corp. RTL8188GU 802.11n WLAN Adapter (After Modeswitch)} {Bus:004 Device:001 VendorID:1d6b ProductID:0003 Name:Linux Foundation 3.0 root hub}] NetworkShares:[] Network:{Interfaces:[{Name:eno1 Type:ethernet MAC:18:c0:4d:b5:65:74 IP:10.0.1.109 SpeedMbps:0xc0002d4578 Driver:r8169 SSID: WakeOnLAN:false} {Name:wlxe84e06a6c1fc Type:wifi MAC:9a:e7:6f:42:b0:36 IP: SpeedMbps:<nil> Driver:rtl8xxxu SSID: WakeOnLAN:false}]} Motherboard:{Vendor:Gigabyte Technology Co., Ltd. Model:B450 AORUS ELITE BIOSVendor:American Megatrends International, LLC. BIOSVersion:F65e BIOSDate:09/20/2023} OS:{Name:Debian GNU/Linux Version:13 (trixie) KernelVersion:6.12.57+deb13-amd64 Architecture:x86_64 SessionType: DisplayServer: ScreenResolution:5560 x 1920 LastBootTime:démarrage système 2026-01-11 09:11 UptimeSeconds:42678.75 BatteryPercentage:<nil> BatteryStatus: BatteryHealth: Hostname:aorus VirtualizationType:kvm-host DesktopEnvironment:GNOME} Sensors:{CPUTempC:<nil> DiskTempsC:map[nvme-pci-0100:Composite:32.85 nvme-pci-0700:Composite:31.85] Sensors:[{Chip:nvme-pci-0700 Name:Composite Type:temperature Value:31.85 Unit:°C Alarm:false} {Chip:acpitz-acpi-0 Name:temp1 Type:temperature Value:16.8 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tccd1 Type:temperature Value:37.25 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tccd2 Type:temperature Value:27.5 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tctl Type:temperature Value:41.25 Unit:°C Alarm:false} {Chip:nvme-pci-0100 Name:Composite Type:temperature Value:32.85 Unit:°C Alarm:false}]} Audio:{Hardware:{PCIAudioDevices:[08:00.1 Audio device: NVIDIA Corporation GA106 High Definition Audio Controller (rev a1) 0a:00.4 Audio device: Advanced Micro Devices, Inc. [AMD] Starship/Matisse HD Audio Controller] AlsaPlayback:**** Liste des périphériques matériels PLAYBACK ****
carte 0 : NVidia [HDA NVidia], périphérique 3 : HDMI 0 [LG ULTRAWIDE]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 7 : HDMI 1 [K243Y]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 8 : HDMI 2 [HDMI 2]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 9 : HDMI 3 [HDMI 3]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]
Sous-périphériques : 0/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 1 : ALC892 Digital [ALC892 Digital]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
AlsaCapture:**** Liste des périphériques matériels CAPTURE ****
carte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 2 : ALC892 Alt Analog [ALC892 Alt Analog]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
PCMDevices:[null Discard all samples (playback) or generate zero samples (capture) pipewire PipeWire Sound Server default Default ALSA Output (currently PipeWire Media Server) hw:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Direct hardware device without any conversions hw:CARD=NVidia,DEV=7 HDA NVidia, K243Y Direct hardware device without any conversions hw:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Direct hardware device without any conversions hw:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Direct hardware device without any conversions plughw:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Hardware device with all software conversions plughw:CARD=NVidia,DEV=7 HDA NVidia, K243Y Hardware device with all software conversions plughw:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Hardware device with all software conversions plughw:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Hardware device with all software conversions hdmi:CARD=NVidia,DEV=0 HDA NVidia, LG ULTRAWIDE HDMI Audio Output hdmi:CARD=NVidia,DEV=1 HDA NVidia, K243Y HDMI Audio Output hdmi:CARD=NVidia,DEV=2 HDA NVidia, HDMI 2 HDMI Audio Output hdmi:CARD=NVidia,DEV=3 HDA NVidia, HDMI 3 HDMI Audio Output dmix:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Direct sample mixing device dmix:CARD=NVidia,DEV=7 HDA NVidia, K243Y Direct sample mixing device dmix:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Direct sample mixing device dmix:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Direct sample mixing device hw:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Direct hardware device without any conversions hw:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Direct hardware device without any conversions plughw:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Hardware device with all software conversions plughw:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Hardware device with all software conversions sysdefault:CARD=Generic HD-Audio Generic, ALC892 Analog Default Audio Device front:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Front output / input surround21:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 2.1 Surround output to Front and Subwoofer speakers surround40:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 4.0 Surround output to Front and Rear speakers surround41:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 4.1 Surround output to Front, Rear and Subwoofer speakers surround50:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 5.0 Surround output to Front, Center and Rear speakers surround51:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 5.1 Surround output to Front, Center, Rear and Subwoofer speakers surround71:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 7.1 Surround output to Front, Center, Side, Rear and Woofer speakers iec958:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Digital IEC958 (S/PDIF) Digital Audio Output dmix:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Direct sample mixing device dmix:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Direct sample mixing device]} Software:{Backend: ServerName: ServerVersion: DefaultSink:<nil> DefaultSource:<nil> Sinks:[] Sources:[]}} RawInfo:map[dmidecode:# dmidecode 3.6
Getting SMBIOS data from sysfs.
SMBIOS 3.3.0 present.
Handle 0x0000, DMI type 0, 26 bytes
BIOS Information
Vendor: American Megatrends International, LLC.
Version: F65e
Release Date: 09/20/2023
Address: 0xF0000
Runtime Size: 64 kB
ROM Size: 16 MB
Characteristics:
PCI is supported
BIOS is upgradeable
BIOS shadowing is allowed
Boot from CD is supported
Selectable boot is supported
BIOS ROM is socketed
EDD is supported
Japanese floppy for NEC 9800 1.2 MB is supported (int 13h)
Japanese floppy for Toshiba 1.2 MB is supported (int 13h)
5.25"/360 kB floppy services are supported (int 13h)
5.25"/1.2 MB floppy services are supported (int 13h)
3.5"/720 kB floppy services are supported (int 13h)
3.5"/2.88 MB floppy services are supported (int 13h)
Print screen service is supported (int 5h)
Serial services are supported (int 14h)
Printer services are supported (int 17h)
CGA/mono video services are supported (int 10h)
USB legacy is supported
BIOS boot specification is supported
Targeted content distribution is supported
UEFI is supported
BIOS Revision: 5.17
Handle 0x0001, DMI type 1, 27 bytes
System Information
Manufacturer: Gigabyte Technology Co., Ltd.
Product Name: B450 AORUS ELITE
Version: Default string
Serial Number: Default string
UUID: 03c00218-044d-05b5-6506-740700080009
Wake-up Type: Power Switch
SKU Number: Default string
Family: B450 MB
Handle 0x0002, DMI type 2, 15 bytes
Base Board Information
Manufacturer: Gigabyte Technology Co., Ltd.
Product Name: B450 AORUS ELITE
Version: Default string
Serial Number: Default string
Asset Tag: Default string
Features:
Board is a hosting board
Board is replaceable
Location In Chassis: Default string
Chassis Handle: 0x0003
Type: Motherboard
Contained Object Handles: 0
Handle 0x000B, DMI type 16, 23 bytes
Physical Memory Array
Location: System Board Or Motherboard
Use: System Memory
Error Correction Type: None
Maximum Capacity: 128 GB
Error Information Handle: 0x000A
Number Of Devices: 4
Handle 0x0013, DMI type 17, 92 bytes
Memory Device
Array Handle: 0x000B
Error Information Handle: 0x0012
Total Width: 64 bits
Data Width: 64 bits
Size: 16 GB
Form Factor: DIMM
Set: None
Locator: DIMM 0
Bank Locator: P0 CHANNEL A
Type: DDR4
Type Detail: Synchronous Unbuffered (Unregistered)
Speed: 3200 MT/s
Manufacturer: Unknown
Serial Number: 00000000
Asset Tag: Not Specified
Part Number: CMW32GX4M2E3200C16
Rank: 2
Configured Memory Speed: 3200 MT/s
Minimum Voltage: Unknown
Maximum Voltage: Unknown
Configured Voltage: 1.2 V
Memory Technology: DRAM
Memory Operating Mode Capability: Volatile memory
Firmware Version: Unknown
Module Manufacturer ID: Bank 3, Hex 0x9E
Module Product ID: Unknown
Memory Subsystem Controller Manufacturer ID: Unknown
Memory Subsystem Controller Product ID: Unknown
Non-Volatile Size: None
Volatile Size: 16 GB
Cache Size: None
Logical Size: None
Handle 0x0016, DMI type 17, 92 bytes
Memory Device
Array Handle: 0x000B
Error Information Handle: 0x0015
Total Width: 64 bits
Data Width: 64 bits
Size: 8 GB
Form Factor: DIMM
Set: None
Locator: DIMM 1
Bank Locator: P0 CHANNEL A
Type: DDR4
Type Detail: Synchronous Unbuffered (Unregistered)
Speed: 3200 MT/s
Manufacturer: Unknown
Serial Number: E3C4408B
Asset Tag: Not Specified
Part Number: BL8G32C16U4BL.M8FE
Rank: 1
Configured Memory Speed: 3200 MT/s
Minimum Voltage: 1.2 V
Maximum Voltage: 1.2 V
Configured Voltage: 1.2 V
Memory Technology: DRAM
Memory Operating Mode Capability: Volatile memory
Firmware Version: Unknown
Module Manufacturer ID: Bank 6, Hex 0x9B
Module Product ID: Unknown
Memory Subsystem Controller Manufacturer ID: Unknown
Memory Subsystem Controller Product ID: Unknown
Non-Volatile Size: None
Volatile Size: 8 GB
Cache Size: None
Logical Size: None
Handle 0x0019, DMI type 17, 92 bytes
Memory Device
Array Handle: 0x000B
Error Information Handle: 0x0018
Total Width: 64 bits
Data Width: 64 bits
Size: 16 GB
Form Factor: DIMM
Set: None
Locator: DIMM 0
Bank Locator: P0 CHANNEL B
Type: DDR4
Type Detail: Synchronous Unbuffered (Unregistered)
Speed: 3200 MT/s
Manufacturer: Unknown
Serial Number: 00000000
Asset Tag: Not Specified
Part Number: CMW32GX4M2E3200C16
Rank: 2
Configured Memory Speed: 3200 MT/s
Minimum Voltage: Unknown
Maximum Voltage: Unknown
Configured Voltage: 1.2 V
Memory Technology: DRAM
Memory Operating Mode Capability: Volatile memory
Firmware Version: Unknown
Module Manufacturer ID: Bank 3, Hex 0x9E
Module Product ID: Unknown
Memory Subsystem Controller Manufacturer ID: Unknown
Memory Subsystem Controller Product ID: Unknown
Non-Volatile Size: None
Volatile Size: 16 GB
Cache Size: None
Logical Size: None
Handle 0x001C, DMI type 17, 92 bytes
Memory Device
Array Handle: 0x000B
Error Information Handle: 0x001B
Total Width: 64 bits
Data Width: 64 bits
Size: 8 GB
Form Factor: DIMM
Set: None
Locator: DIMM 1
Bank Locator: P0 CHANNEL B
Type: DDR4
Type Detail: Synchronous Unbuffered (Unregistered)
Speed: 3200 MT/s
Manufacturer: Unknown
Serial Number: E3C44087
Asset Tag: Not Specified
Part Number: BL8G32C16U4BL.M8FE
Rank: 1
Configured Memory Speed: 3200 MT/s
Minimum Voltage: 1.2 V
Maximum Voltage: 1.2 V
Configured Voltage: 1.2 V
Memory Technology: DRAM
Memory Operating Mode Capability: Volatile memory
Firmware Version: Unknown
Module Manufacturer ID: Bank 6, Hex 0x9B
Module Product ID: Unknown
Memory Subsystem Controller Manufacturer ID: Unknown
Memory Subsystem Controller Product ID: Unknown
Non-Volatile Size: None
Volatile Size: 8 GB
Cache Size: None
Logical Size: None
lsblk:NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS
loop0 7:0 0 118,5M 1 loop /snap/iptvnator/92
loop1 7:1 0 48,1M 1 loop /snap/snapd/25935
loop2 7:2 0 50,9M 1 loop /snap/snapd/25577
loop3 7:3 0 4K 1 loop /snap/bare/5
loop4 7:4 0 91,7M 1 loop /snap/gtk-common-themes/1535
loop5 7:5 0 55,5M 1 loop /snap/core18/2976
loop6 7:6 0 164,8M 1 loop /snap/gnome-3-28-1804/198
loop7 7:7 0 0B 0 loop
sda 8:0 0 447,1G 0 disk
└─sda1 8:1 0 447,1G 0 part
sdb 8:16 1 0B 0 disk
sdc 8:32 1 0B 0 disk
sdd 8:48 1 0B 0 disk
sde 8:64 1 0B 0 disk
nvme0n1 259:0 0 465,8G 0 disk
├─nvme0n1p1 259:1 0 976M 0 part /boot/efi
├─nvme0n1p2 259:2 0 440,8G 0 part /
└─nvme0n1p3 259:3 0 24G 0 part [SWAP]
nvme1n1 259:4 0 465,8G 0 disk
├─nvme1n1p1 259:5 0 50M 0 part
├─nvme1n1p2 259:6 0 464,3G 0 part
├─nvme1n1p3 259:7 0 808M 0 part
├─nvme1n1p4 259:8 0 100M 0 part
└─nvme1n1p5 259:9 0 522M 0 part
lscpu:Architecture : x86_64
Mode(s) opératoire(s) des processeurs : 32-bit, 64-bit
Tailles des adresses: 48 bits physical, 48 bits virtual
Boutisme : Little Endian
Processeur(s) : 24
Liste de processeur(s) en ligne : 0-23
Identifiant constructeur : AuthenticAMD
Nom de modèle : AMD Ryzen 9 5900X 12-Core Processor
Famille de processeur : 25
Modèle : 33
Thread(s) par cœur : 2
Cœur(s) par socket : 12
Socket(s) : 1
Révision : 2
Accroissement de fréquence : activé
multiplication des MHz du/des CPU(s) : 75%
Vitesse maximale du processeur en MHz : 4951,0000
Vitesse minimale du processeur en MHz : 550,0000
BogoMIPS : 7399,98
Drapeaux : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local user_shstk clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm debug_swap
Virtualisation : AMD-V
Cache L1d : 384 KiB (12 instances)
Cache L1i : 384 KiB (12 instances)
Cache L2 : 6 MiB (12 instances)
Cache L3 : 64 MiB (2 instances)
Nœud(s) NUMA : 1
Nœud NUMA 0 de processeur(s) : 0-23
Vulnérabilité Gather data sampling : Not affected
Vulnérabilité Indirect target selection : Not affected
Vulnérabilité Itlb multihit : Not affected
Vulnérabilité L1tf : Not affected
Vulnérabilité Mds : Not affected
Vulnérabilité Meltdown : Not affected
Vulnérabilité Mmio stale data : Not affected
Vulnérabilité Reg file data sampling : Not affected
Vulnérabilité Retbleed : Not affected
Vulnérabilité Spec rstack overflow : Mitigation; Safe RET
Vulnérabilité Spec store bypass : Mitigation; Speculative Store Bypass disabled via prctl
Vulnérabilité Spectre v1 : Mitigation; usercopy/swapgs barriers and __user pointer sanitization
Vulnérabilité Spectre v2 : Mitigation; Retpolines; IBPB conditional; IBRS_FW; STIBP always-on; RSB filling; PBRSB-eIBRS Not affected; BHI Not affected
Vulnérabilité Srbds : Not affected
Vulnérabilité Tsa : Vulnerable: Clear CPU buffers attempted, no microcode
Vulnérabilité Tsx async abort : Not affected
Vulnérabilité Vmscape : Mitigation; IBPB before exit to userspace
]}
[DEBUG] [3/6] Benchmark CPU démarré
[DEBUG] Exec: sysbench [cpu --threads=1 --time=10 run]
[DEBUG] Exec: nproc []
[DEBUG] Exec: sysbench [cpu --threads=24 --time=10 run]
[DEBUG] [3/6] Résultat CPU: {EventsPerSec:37468.91499999999 EventsPerSecSingle:5634.43 EventsPerSecMulti:69303.4 DurationSec:20.000500000000002 Score:37468.91499999999 ScoreSingle:5634.43 ScoreMulti:69303.4}
[DEBUG] [3/6] Benchmark mémoire démarré
[DEBUG] Exec: sysbench [memory --memory-block-size=1K --memory-total-size=1G run]
[DEBUG] [3/6] Résultat mémoire: {Throughput:8917.3 Score:8917.3}
[DEBUG] [3/6] Benchmark disque démarré
[DEBUG] Exec: fio [--name=bench --ioengine=libaio --rw=randrw --bs=4k --direct=1 --size=500M --numjobs=1 --runtime=30 --time_based --output-format=json --filename=/tmp/bench.fio]
[DEBUG] [3/6] Résultat disque: {ReadMBs:1081.203125 WriteMBs:1080.669921875 IOPSRead:276788.133333 IOPSWrite:276651.7 LatencyMs:0.000432117427 Score:1080.9365234375}
[DEBUG] [3/6] Benchmark réseau démarré
[DEBUG] Exec: iperf3 [-c 10.0.0.50 -p 5201 -J -t 10]
[DEBUG] Exec: ping [-c 1 -W 1 10.0.0.50]
[DEBUG] [3/6] Résultat réseau: {Upload:941.5029952238 Download:939.298012804101 PingMs:0.36 JitterMs:<nil> PacketLossPct:<nil> Score:940.4005040139505}
[DEBUG] Résultats des benchmarks : {CPU:{EventsPerSec:37468.91499999999 EventsPerSecSingle:5634.43 EventsPerSecMulti:69303.4 DurationSec:20.000500000000002 Score:37468.91499999999 ScoreSingle:5634.43 ScoreMulti:69303.4} Memory:{Throughput:8917.3 Score:8917.3} Disk:{ReadMBs:1081.203125 WriteMBs:1080.669921875 IOPSRead:276788.133333 IOPSWrite:276651.7 LatencyMs:0.000432117427 Score:1080.9365234375} Network:{Upload:941.5029952238 Download:939.298012804101 PingMs:0.36 JitterMs:<nil> PacketLossPct:<nil> Score:940.4005040139505} GPU:{GLMark2Score:<nil> Score:<nil>} GlobalScore:0}
[DEBUG] Poids benchmarks : map[cpu:0.4 disk:0.2 gpu:0.1 memory:0.2 network:0.1]
[DEBUG] Scores normalisés : cpu=1873.45 mem=89.17 disk=108.09 net=94.04
[DEBUG] Score global calculé : 79823.56
[DEBUG] Payload JSON (49205 octets) : {
"device_identifier": "aorus",
"bench_script_version": "1.6.6",
"bench_client_version": "1.0.1",
"hardware": {
"cpu": {
"vendor": "AuthenticAMD",
"model": "AMD Ryzen 9 5900X 12-Core Processor",
"cores": 12,
"threads": 24,
"base_freq_ghz": 4.951,
"max_freq_ghz": 4.951,
"cache_l1_kb": 768,
"cache_l2_kb": 6144,
"cache_l3_kb": 32768,
"flags": [
"fpu",
"vme",
"de",
"pse",
"tsc",
"msr",
"pae",
"mce",
"cx8",
"apic",
"sep",
"mtrr",
"pge",
"mca",
"cmov",
"pat",
"pse36",
"clflush",
"mmx",
"fxsr",
"sse",
"sse2",
"ht",
"syscall",
"nx",
"mmxext",
"fxsr_opt",
"pdpe1gb",
"rdtscp",
"lm",
"constant_tsc",
"rep_good",
"nopl",
"xtopology",
"nonstop_tsc",
"cpuid",
"extd_apicid",
"aperfmperf",
"rapl",
"pni",
"pclmulqdq",
"monitor",
"ssse3",
"fma",
"cx16",
"sse4_1",
"sse4_2",
"x2apic",
"movbe",
"popcnt",
"aes",
"xsave",
"avx",
"f16c",
"rdrand",
"lahf_lm",
"cmp_legacy",
"svm",
"extapic",
"cr8_legacy",
"abm",
"sse4a",
"misalignsse",
"3dnowprefetch",
"osvw",
"ibs",
"skinit",
"wdt",
"tce",
"topoext",
"perfctr_core",
"perfctr_nb",
"bpext",
"perfctr_llc",
"mwaitx",
"cpb",
"cat_l3",
"cdp_l3",
"hw_pstate",
"ssbd",
"mba",
"ibrs",
"ibpb",
"stibp",
"vmmcall",
"fsgsbase",
"bmi1",
"avx2",
"smep",
"bmi2",
"erms",
"invpcid",
"cqm",
"rdt_a",
"rdseed",
"adx",
"smap",
"clflushopt",
"clwb",
"sha_ni",
"xsaveopt",
"xsavec",
"xgetbv1",
"xsaves",
"cqm_llc",
"cqm_occup_llc",
"cqm_mbm_total",
"cqm_mbm_local",
"user_shstk",
"clzero",
"irperf",
"xsaveerptr",
"rdpru",
"wbnoinvd",
"arat",
"npt",
"lbrv",
"svm_lock",
"nrip_save",
"tsc_scale",
"vmcb_clean",
"flushbyasid",
"decodeassists",
"pausefilter",
"pfthreshold",
"avic",
"v_vmsave_vmload",
"vgif",
"v_spec_ctrl",
"umip",
"pku",
"ospke",
"vaes",
"vpclmulqdq",
"rdpid",
"overflow_recov",
"succor",
"smca",
"fsrm",
"debug_swap"
],
"microarchitecture": "Zen",
"tdp_w": null
},
"ram": {
"total_mb": 48096,
"used_mb": 17180,
"free_mb": 30916,
"shared_mb": 985,
"slots_total": 10,
"slots_used": 4,
"max_capacity_mb": 48096,
"ecc": false,
"layout": [
{
"slot": "DIMM 0",
"size_mb": 16384,
"type": "DDR4",
"speed_mhz": 3200,
"configured_speed_mhz": 3200,
"form_factor": "DIMM",
"type_detail": "Synchronous Unbuffered (Unregistered)",
"rank": "2",
"manufacturer": "Unknown",
"part_number": "CMW32GX4M2E3200C16 "
},
{
"slot": "DIMM 1",
"size_mb": 8192,
"type": "DDR4",
"speed_mhz": 3200,
"configured_speed_mhz": 3200,
"form_factor": "DIMM",
"type_detail": "Synchronous Unbuffered (Unregistered)",
"rank": "1",
"manufacturer": "Unknown",
"part_number": "BL8G32C16U4BL.M8FE"
},
{
"slot": "DIMM 0",
"size_mb": 16384,
"type": "DDR4",
"speed_mhz": 3200,
"configured_speed_mhz": 3200,
"form_factor": "DIMM",
"type_detail": "Synchronous Unbuffered (Unregistered)",
"rank": "2",
"manufacturer": "Unknown",
"part_number": "CMW32GX4M2E3200C16 "
},
{
"slot": "DIMM 1",
"size_mb": 8192,
"type": "DDR4",
"speed_mhz": 3200,
"configured_speed_mhz": 3200,
"form_factor": "DIMM",
"type_detail": "Synchronous Unbuffered (Unregistered)",
"rank": "1",
"manufacturer": "Unknown",
"part_number": "BL8G32C16U4BL.M8FE"
}
]
},
"gpu": {
"vendor": "NVIDIA",
"model": "NVIDIA GeForce RTX 3060",
"driver_version": "550.163.01",
"memory_dedicated_mb": 12288,
"memory_shared_mb": null,
"api_support": null
},
"storage": {
"devices": [
{
"name": "/dev/nvme0n1",
"type": "ssd",
"interface": "nvme",
"capacity_gb": 465.7617416381836,
"vendor": "CT500P2SSD8",
"model": "CT500P2SSD8",
"serial": "2138E5D60DD8",
"smart_health": "PASSED",
"temperature_c": 33
},
{
"name": "/dev/nvme1n1",
"type": "",
"interface": "nvme",
"capacity_gb": 465.7617416381836,
"vendor": "CT500P2SSD8",
"model": "CT500P2SSD8",
"serial": "2108E4FD258D",
"smart_health": "PASSED",
"temperature_c": 32
},
{
"name": "/dev/sda",
"type": "",
"interface": "sata",
"capacity_gb": 447.13167572021484,
"vendor": "ATA ",
"model": "KINGSTON SUV500480G",
"serial": "50026B768226A365",
"smart_health": "PASSED",
"temperature_c": 25
},
{
"name": "/dev/sdb",
"type": "",
"interface": "usb",
"capacity_gb": 0,
"vendor": "Generic-",
"model": "Compact Flash",
"serial": "058F63626479",
"smart_health": "UNAVAILABLE",
"temperature_c": 0
},
{
"name": "/dev/sdc",
"type": "",
"interface": "usb",
"capacity_gb": 0,
"vendor": "Generic-",
"model": "SD/MMC",
"serial": "058F63626479",
"smart_health": "UNAVAILABLE",
"temperature_c": 0
},
{
"name": "/dev/sdd",
"type": "",
"interface": "usb",
"capacity_gb": 0,
"vendor": "Generic-",
"model": "MS/MS-PRO",
"serial": "058F63626479",
"smart_health": "UNAVAILABLE",
"temperature_c": 0
},
{
"name": "/dev/sde",
"type": "",
"interface": "usb",
"capacity_gb": 0,
"vendor": "Generic-",
"model": "xD-Picture",
"serial": "058F63626479",
"smart_health": "UNAVAILABLE",
"temperature_c": 0
}
],
"partitions": [
{
"name": "/dev/nvme0n1p2",
"mount_point": "/",
"fs_type": "ext4",
"total_gb": 432.80120849609375,
"used_gb": 348.8673286437988,
"free_gb": 61.87870407104492
},
{
"name": "/dev/nvme0n1p1",
"mount_point": "/boot/efi",
"fs_type": "vfat",
"total_gb": 0.9512481689453125,
"used_gb": 0.008571624755859375,
"free_gb": 0.9426765441894531
}
]
},
"pci_devices": [
{
"slot": "00:00.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse Root Complex"
},
{
"slot": "00:00.2",
"class": "IOMMU",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse IOMMU"
},
{
"slot": "00:01.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:01.1",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse GPP Bridge"
},
{
"slot": "00:01.3",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse GPP Bridge"
},
{
"slot": "00:02.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:03.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:03.1",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse GPP Bridge"
},
{
"slot": "00:04.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:05.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:07.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:07.1",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]"
},
{
"slot": "00:08.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:08.1",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]"
},
{
"slot": "00:14.0",
"class": "SMBus",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "FCH SMBus Controller"
},
{
"slot": "00:14.3",
"class": "ISA bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "FCH LPC Bridge"
},
{
"slot": "00:18.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 0"
},
{
"slot": "00:18.1",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 1"
},
{
"slot": "00:18.2",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 2"
},
{
"slot": "00:18.3",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 3"
},
{
"slot": "00:18.4",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 4"
},
{
"slot": "00:18.5",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 5"
},
{
"slot": "00:18.6",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 6"
},
{
"slot": "00:18.7",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 7"
},
{
"slot": "01:00.0",
"class": "Non-Volatile memory controller",
"vendor": "Micron/Crucial Technology",
"device": "P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)"
},
{
"slot": "02:00.0",
"class": "USB controller",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset USB 3.1 xHCI Compliant Host Controller"
},
{
"slot": "02:00.1",
"class": "SATA controller",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset SATA Controller"
},
{
"slot": "02:00.2",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset PCIe Bridge"
},
{
"slot": "03:00.0",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset PCIe Port"
},
{
"slot": "03:01.0",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset PCIe Port"
},
{
"slot": "03:04.0",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset PCIe Port"
},
{
"slot": "03:08.0",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset PCIe Port"
},
{
"slot": "04:00.0",
"class": "Ethernet controller",
"vendor": "Realtek Semiconductor Co., Ltd.",
"device": "RTL8111/8168/8211/8411 PCI Express Gigabit Ethernet Controller"
},
{
"slot": "07:00.0",
"class": "Non-Volatile memory controller",
"vendor": "Micron/Crucial Technology",
"device": "P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)"
},
{
"slot": "08:00.0",
"class": "VGA compatible controller",
"vendor": "NVIDIA Corporation",
"device": "GA106 [GeForce RTX 3060 Lite Hash Rate]"
},
{
"slot": "08:00.1",
"class": "Audio device",
"vendor": "NVIDIA Corporation",
"device": "GA106 High Definition Audio Controller"
},
{
"slot": "09:00.0",
"class": "Non-Essential Instrumentation [1300]",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Function"
},
{
"slot": "0a:00.0",
"class": "Non-Essential Instrumentation [1300]",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse Reserved SPP"
},
{
"slot": "0a:00.1",
"class": "Encryption controller",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse Cryptographic Coprocessor PSPCPP"
},
{
"slot": "0a:00.3",
"class": "USB controller",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse USB 3.0 Host Controller"
},
{
"slot": "0a:00.4",
"class": "Audio device",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse HD Audio Controller"
}
],
"usb_devices": [
{
"bus": "001",
"device": "001",
"vendor_id": "1d6b",
"product_id": "0002",
"name": "Linux Foundation 2.0 root hub"
},
{
"bus": "001",
"device": "002",
"vendor_id": "058f",
"product_id": "6362",
"name": "Alcor Micro Corp. Flash Card Reader/Writer"
},
{
"bus": "002",
"device": "001",
"vendor_id": "1d6b",
"product_id": "0003",
"name": "Linux Foundation 3.0 root hub"
},
{
"bus": "003",
"device": "001",
"vendor_id": "1d6b",
"product_id": "0002",
"name": "Linux Foundation 2.0 root hub"
},
{
"bus": "003",
"device": "003",
"vendor_id": "046d",
"product_id": "c52b",
"name": "Logitech, Inc. Unifying Receiver"
},
{
"bus": "003",
"device": "004",
"vendor_id": "0bda",
"product_id": "b711",
"name": "Realtek Semiconductor Corp. RTL8188GU 802.11n WLAN Adapter (After Modeswitch)"
},
{
"bus": "004",
"device": "001",
"vendor_id": "1d6b",
"product_id": "0003",
"name": "Linux Foundation 3.0 root hub"
}
],
"network_shares": [],
"network": {
"interfaces": [
{
"name": "eno1",
"type": "ethernet",
"mac": "18:c0:4d:b5:65:74",
"ip": "10.0.1.109",
"speed_mbps": 1000,
"driver": "r8169",
"ssid": "",
"wake_on_lan": false
},
{
"name": "wlxe84e06a6c1fc",
"type": "wifi",
"mac": "9a:e7:6f:42:b0:36",
"ip": "",
"speed_mbps": null,
"driver": "rtl8xxxu",
"ssid": "",
"wake_on_lan": false
}
]
},
"motherboard": {
"vendor": "Gigabyte Technology Co., Ltd.",
"model": "B450 AORUS ELITE",
"bios_vendor": "American Megatrends International, LLC.",
"bios_version": "F65e",
"bios_date": "09/20/2023"
},
"os": {
"name": "Debian GNU/Linux",
"version": "13 (trixie)",
"kernel_version": "6.12.57+deb13-amd64",
"architecture": "x86_64",
"session_type": "",
"display_server": "",
"screen_resolution": "5560 x 1920",
"last_boot_time": "démarrage système 2026-01-11 09:11",
"uptime_seconds": 42678.75,
"battery_percentage": null,
"battery_status": "",
"battery_health": "",
"hostname": "aorus",
"virtualization_type": "kvm-host",
"desktop_environment": "GNOME"
},
"sensors": {
"cpu_temp_c": null,
"disk_temps_c": {
"nvme-pci-0100:Composite": 32.85,
"nvme-pci-0700:Composite": 31.85
},
"sensors": [
{
"chip": "nvme-pci-0700",
"name": "Composite",
"type": "temperature",
"value": 31.85,
"unit": "°C",
"alarm": false
},
{
"chip": "acpitz-acpi-0",
"name": "temp1",
"type": "temperature",
"value": 16.8,
"unit": "°C",
"alarm": false
},
{
"chip": "k10temp-pci-00c3",
"name": "Tccd1",
"type": "temperature",
"value": 37.25,
"unit": "°C",
"alarm": false
},
{
"chip": "k10temp-pci-00c3",
"name": "Tccd2",
"type": "temperature",
"value": 27.5,
"unit": "°C",
"alarm": false
},
{
"chip": "k10temp-pci-00c3",
"name": "Tctl",
"type": "temperature",
"value": 41.25,
"unit": "°C",
"alarm": false
},
{
"chip": "nvme-pci-0100",
"name": "Composite",
"type": "temperature",
"value": 32.85,
"unit": "°C",
"alarm": false
}
]
},
"audio": {
"hardware": {
"pci_audio_devices": [
"08:00.1 Audio device: NVIDIA Corporation GA106 High Definition Audio Controller (rev a1)",
"0a:00.4 Audio device: Advanced Micro Devices, Inc. [AMD] Starship/Matisse HD Audio Controller"
],
"alsa_playback": "**** Liste des périphériques matériels PLAYBACK ****\ncarte 0 : NVidia [HDA NVidia], périphérique 3 : HDMI 0 [LG ULTRAWIDE]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\ncarte 0 : NVidia [HDA NVidia], périphérique 7 : HDMI 1 [K243Y]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\ncarte 0 : NVidia [HDA NVidia], périphérique 8 : HDMI 2 [HDMI 2]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\ncarte 0 : NVidia [HDA NVidia], périphérique 9 : HDMI 3 [HDMI 3]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\ncarte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]\n Sous-périphériques : 0/1\n Sous-périphérique #0 : subdevice #0\ncarte 1 : Generic [HD-Audio Generic], périphérique 1 : ALC892 Digital [ALC892 Digital]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\n",
"alsa_capture": "**** Liste des périphériques matériels CAPTURE ****\ncarte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\ncarte 1 : Generic [HD-Audio Generic], périphérique 2 : ALC892 Alt Analog [ALC892 Alt Analog]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\n",
"pcm_devices": [
"null",
"Discard all samples (playback) or generate zero samples (capture)",
"pipewire",
"PipeWire Sound Server",
"default",
"Default ALSA Output (currently PipeWire Media Server)",
"hw:CARD=NVidia,DEV=3",
"HDA NVidia, LG ULTRAWIDE",
"Direct hardware device without any conversions",
"hw:CARD=NVidia,DEV=7",
"HDA NVidia, K243Y",
"Direct hardware device without any conversions",
"hw:CARD=NVidia,DEV=8",
"HDA NVidia, HDMI 2",
"Direct hardware device without any conversions",
"hw:CARD=NVidia,DEV=9",
"HDA NVidia, HDMI 3",
"Direct hardware device without any conversions",
"plughw:CARD=NVidia,DEV=3",
"HDA NVidia, LG ULTRAWIDE",
"Hardware device with all software conversions",
"plughw:CARD=NVidia,DEV=7",
"HDA NVidia, K243Y",
"Hardware device with all software conversions",
"plughw:CARD=NVidia,DEV=8",
"HDA NVidia, HDMI 2",
"Hardware device with all software conversions",
"plughw:CARD=NVidia,DEV=9",
"HDA NVidia, HDMI 3",
"Hardware device with all software conversions",
"hdmi:CARD=NVidia,DEV=0",
"HDA NVidia, LG ULTRAWIDE",
"HDMI Audio Output",
"hdmi:CARD=NVidia,DEV=1",
"HDA NVidia, K243Y",
"HDMI Audio Output",
"hdmi:CARD=NVidia,DEV=2",
"HDA NVidia, HDMI 2",
"HDMI Audio Output",
"hdmi:CARD=NVidia,DEV=3",
"HDA NVidia, HDMI 3",
"HDMI Audio Output",
"dmix:CARD=NVidia,DEV=3",
"HDA NVidia, LG ULTRAWIDE",
"Direct sample mixing device",
"dmix:CARD=NVidia,DEV=7",
"HDA NVidia, K243Y",
"Direct sample mixing device",
"dmix:CARD=NVidia,DEV=8",
"HDA NVidia, HDMI 2",
"Direct sample mixing device",
"dmix:CARD=NVidia,DEV=9",
"HDA NVidia, HDMI 3",
"Direct sample mixing device",
"hw:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"Direct hardware device without any conversions",
"hw:CARD=Generic,DEV=1",
"HD-Audio Generic, ALC892 Digital",
"Direct hardware device without any conversions",
"plughw:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"Hardware device with all software conversions",
"plughw:CARD=Generic,DEV=1",
"HD-Audio Generic, ALC892 Digital",
"Hardware device with all software conversions",
"sysdefault:CARD=Generic",
"HD-Audio Generic, ALC892 Analog",
"Default Audio Device",
"front:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"Front output / input",
"surround21:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"2.1 Surround output to Front and Subwoofer speakers",
"surround40:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"4.0 Surround output to Front and Rear speakers",
"surround41:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"4.1 Surround output to Front, Rear and Subwoofer speakers",
"surround50:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"5.0 Surround output to Front, Center and Rear speakers",
"surround51:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"5.1 Surround output to Front, Center, Rear and Subwoofer speakers",
"surround71:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"7.1 Surround output to Front, Center, Side, Rear and Woofer speakers",
"iec958:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Digital",
"IEC958 (S/PDIF) Digital Audio Output",
"dmix:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"Direct sample mixing device",
"dmix:CARD=Generic,DEV=1",
"HD-Audio Generic, ALC892 Digital",
"Direct sample mixing device"
]
},
"software": {
"backend": "",
"server_name": "",
"server_version": "",
"default_sink": null,
"default_source": null,
"sinks": null,
"sources": null
}
},
"raw_info": {
"debug": "active",
"dmidecode": "# dmidecode 3.6\nGetting SMBIOS data from sysfs.\nSMBIOS 3.3.0 present.\n\nHandle 0x0000, DMI type 0, 26 bytes\nBIOS Information\n\tVendor: American Megatrends International, LLC.\n\tVersion: F65e\n\tRelease Date: 09/20/2023\n\tAddress: 0xF0000\n\tRuntime Size: 64 kB\n\tROM Size: 16 MB\n\tCharacteristics:\n\t\tPCI is supported\n\t\tBIOS is upgradeable\n\t\tBIOS shadowing is allowed\n\t\tBoot from CD is supported\n\t\tSelectable boot is supported\n\t\tBIOS ROM is socketed\n\t\tEDD is supported\n\t\tJapanese floppy for NEC 9800 1.2 MB is supported (int 13h)\n\t\tJapanese floppy for Toshiba 1.2 MB is supported (int 13h)\n\t\t5.25\"/360 kB floppy services are supported (int 13h)\n\t\t5.25\"/1.2 MB floppy services are supported (int 13h)\n\t\t3.5\"/720 kB floppy services are supported (int 13h)\n\t\t3.5\"/2.88 MB floppy services are supported (int 13h)\n\t\tPrint screen service is supported (int 5h)\n\t\tSerial services are supported (int 14h)\n\t\tPrinter services are supported (int 17h)\n\t\tCGA/mono video services are supported (int 10h)\n\t\tUSB legacy is supported\n\t\tBIOS boot specification is supported\n\t\tTargeted content distribution is supported\n\t\tUEFI is supported\n\tBIOS Revision: 5.17\n\nHandle 0x0001, DMI type 1, 27 bytes\nSystem Information\n\tManufacturer: Gigabyte Technology Co., Ltd.\n\tProduct Name: B450 AORUS ELITE\n\tVersion: Default string\n\tSerial Number: Default string\n\tUUID: 03c00218-044d-05b5-6506-740700080009\n\tWake-up Type: Power Switch\n\tSKU Number: Default string\n\tFamily: B450 MB\n\nHandle 0x0002, DMI type 2, 15 bytes\nBase Board Information\n\tManufacturer: Gigabyte Technology Co., Ltd.\n\tProduct Name: B450 AORUS ELITE\n\tVersion: Default string\n\tSerial Number: Default string\n\tAsset Tag: Default string\n\tFeatures:\n\t\tBoard is a hosting board\n\t\tBoard is replaceable\n\tLocation In Chassis: Default string\n\tChassis Handle: 0x0003\n\tType: Motherboard\n\tContained Object Handles: 0\n\nHandle 0x000B, DMI type 16, 23 bytes\nPhysical Memory Array\n\tLocation: System Board Or Motherboard\n\tUse: System Memory\n\tError Correction Type: None\n\tMaximum Capacity: 128 GB\n\tError Information Handle: 0x000A\n\tNumber Of Devices: 4\n\nHandle 0x0013, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0012\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 16 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 0\n\tBank Locator: P0 CHANNEL A\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: 00000000\n\tAsset Tag: Not Specified\n\tPart Number: CMW32GX4M2E3200C16 \n\tRank: 2\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: Unknown\n\tMaximum Voltage: Unknown\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 3, Hex 0x9E\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 16 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x0016, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0015\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 8 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 1\n\tBank Locator: P0 CHANNEL A\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: E3C4408B\n\tAsset Tag: Not Specified\n\tPart Number: BL8G32C16U4BL.M8FE\n\tRank: 1\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: 1.2 V\n\tMaximum Voltage: 1.2 V\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 6, Hex 0x9B\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 8 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x0019, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0018\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 16 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 0\n\tBank Locator: P0 CHANNEL B\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: 00000000\n\tAsset Tag: Not Specified\n\tPart Number: CMW32GX4M2E3200C16 \n\tRank: 2\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: Unknown\n\tMaximum Voltage: Unknown\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 3, Hex 0x9E\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 16 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x001C, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x001B\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 8 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 1\n\tBank Locator: P0 CHANNEL B\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: E3C44087\n\tAsset Tag: Not Specified\n\tPart Number: BL8G32C16U4BL.M8FE\n\tRank: 1\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: 1.2 V\n\tMaximum Voltage: 1.2 V\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 6, Hex 0x9B\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 8 GB\n\tCache Size: None\n\tLogical Size: None\n\n",
"lsblk": "NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS\nloop0 7:0 0 118,5M 1 loop /snap/iptvnator/92\nloop1 7:1 0 48,1M 1 loop /snap/snapd/25935\nloop2 7:2 0 50,9M 1 loop /snap/snapd/25577\nloop3 7:3 0 4K 1 loop /snap/bare/5\nloop4 7:4 0 91,7M 1 loop /snap/gtk-common-themes/1535\nloop5 7:5 0 55,5M 1 loop /snap/core18/2976\nloop6 7:6 0 164,8M 1 loop /snap/gnome-3-28-1804/198\nloop7 7:7 0 0B 0 loop \nsda 8:0 0 447,1G 0 disk \n└─sda1 8:1 0 447,1G 0 part \nsdb 8:16 1 0B 0 disk \nsdc 8:32 1 0B 0 disk \nsdd 8:48 1 0B 0 disk \nsde 8:64 1 0B 0 disk \nnvme0n1 259:0 0 465,8G 0 disk \n├─nvme0n1p1 259:1 0 976M 0 part /boot/efi\n├─nvme0n1p2 259:2 0 440,8G 0 part /\n└─nvme0n1p3 259:3 0 24G 0 part [SWAP]\nnvme1n1 259:4 0 465,8G 0 disk \n├─nvme1n1p1 259:5 0 50M 0 part \n├─nvme1n1p2 259:6 0 464,3G 0 part \n├─nvme1n1p3 259:7 0 808M 0 part \n├─nvme1n1p4 259:8 0 100M 0 part \n└─nvme1n1p5 259:9 0 522M 0 part \n",
"lscpu": "Architecture : x86_64\nMode(s) opératoire(s) des processeurs : 32-bit, 64-bit\nTailles des adresses: 48 bits physical, 48 bits virtual\nBoutisme : Little Endian\nProcesseur(s) : 24\nListe de processeur(s) en ligne : 0-23\nIdentifiant constructeur : AuthenticAMD\nNom de modèle : AMD Ryzen 9 5900X 12-Core Processor\nFamille de processeur : 25\nModèle : 33\nThread(s) par cœur : 2\nCœur(s) par socket : 12\nSocket(s) : 1\nRévision : 2\nAccroissement de fréquence : activé\nmultiplication des MHz du/des CPU(s) : 75%\nVitesse maximale du processeur en MHz : 4951,0000\nVitesse minimale du processeur en MHz : 550,0000\nBogoMIPS : 7399,98\nDrapeaux : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local user_shstk clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm debug_swap\nVirtualisation : AMD-V\nCache L1d : 384 KiB (12 instances)\nCache L1i : 384 KiB (12 instances)\nCache L2 : 6 MiB (12 instances)\nCache L3 : 64 MiB (2 instances)\nNœud(s) NUMA : 1\nNœud NUMA 0 de processeur(s) : 0-23\nVulnérabilité Gather data sampling : Not affected\nVulnérabilité Indirect target selection : Not affected\nVulnérabilité Itlb multihit : Not affected\nVulnérabilité L1tf : Not affected\nVulnérabilité Mds : Not affected\nVulnérabilité Meltdown : Not affected\nVulnérabilité Mmio stale data : Not affected\nVulnérabilité Reg file data sampling : Not affected\nVulnérabilité Retbleed : Not affected\nVulnérabilité Spec rstack overflow : Mitigation; Safe RET\nVulnérabilité Spec store bypass : Mitigation; Speculative Store Bypass disabled via prctl\nVulnérabilité Spectre v1 : Mitigation; usercopy/swapgs barriers and __user pointer sanitization\nVulnérabilité Spectre v2 : Mitigation; Retpolines; IBPB conditional; IBRS_FW; STIBP always-on; RSB filling; PBRSB-eIBRS Not affected; BHI Not affected\nVulnérabilité Srbds : Not affected\nVulnérabilité Tsa : Vulnerable: Clear CPU buffers attempted, no microcode\nVulnérabilité Tsx async abort : Not affected\nVulnérabilité Vmscape : Mitigation; IBPB before exit to userspace\n"
}
},
"results": {
"cpu": {
"events_per_sec": 37468.91499999999,
"events_per_sec_single": 5634.43,
"events_per_sec_multi": 69303.4,
"duration_s": 20.000500000000002,
"score": 37468.91499999999,
"score_single": 5634.43,
"score_multi": 69303.4
},
"memory": {
"throughput_mib_s": 8917.3,
"score": 8917.3
},
"disk": {
"read_mb_s": 1081.203125,
"write_mb_s": 1080.669921875,
"iops_read": 276788.133333,
"iops_write": 276651.7,
"latency_ms": 0.000432117427,
"score": 1080.9365234375
},
"network": {
"upload_mbps": 941.5029952238,
"download_mbps": 939.298012804101,
"ping_ms": 0.36,
"jitter_ms": null,
"packet_loss_percent": null,
"score": 940.4005040139505
},
"gpu": {
"glmark2_score": null,
"score": null
},
"global_score": 79823.56355088894
},
"raw_info": {
"debug": "active",
"dmidecode": "# dmidecode 3.6\nGetting SMBIOS data from sysfs.\nSMBIOS 3.3.0 present.\n\nHandle 0x0000, DMI type 0, 26 bytes\nBIOS Information\n\tVendor: American Megatrends International, LLC.\n\tVersion: F65e\n\tRelease Date: 09/20/2023\n\tAddress: 0xF0000\n\tRuntime Size: 64 kB\n\tROM Size: 16 MB\n\tCharacteristics:\n\t\tPCI is supported\n\t\tBIOS is upgradeable\n\t\tBIOS shadowing is allowed\n\t\tBoot from CD is supported\n\t\tSelectable boot is supported\n\t\tBIOS ROM is socketed\n\t\tEDD is supported\n\t\tJapanese floppy for NEC 9800 1.2 MB is supported (int 13h)\n\t\tJapanese floppy for Toshiba 1.2 MB is supported (int 13h)\n\t\t5.25\"/360 kB floppy services are supported (int 13h)\n\t\t5.25\"/1.2 MB floppy services are supported (int 13h)\n\t\t3.5\"/720 kB floppy services are supported (int 13h)\n\t\t3.5\"/2.88 MB floppy services are supported (int 13h)\n\t\tPrint screen service is supported (int 5h)\n\t\tSerial services are supported (int 14h)\n\t\tPrinter services are supported (int 17h)\n\t\tCGA/mono video services are supported (int 10h)\n\t\tUSB legacy is supported\n\t\tBIOS boot specification is supported\n\t\tTargeted content distribution is supported\n\t\tUEFI is supported\n\tBIOS Revision: 5.17\n\nHandle 0x0001, DMI type 1, 27 bytes\nSystem Information\n\tManufacturer: Gigabyte Technology Co., Ltd.\n\tProduct Name: B450 AORUS ELITE\n\tVersion: Default string\n\tSerial Number: Default string\n\tUUID: 03c00218-044d-05b5-6506-740700080009\n\tWake-up Type: Power Switch\n\tSKU Number: Default string\n\tFamily: B450 MB\n\nHandle 0x0002, DMI type 2, 15 bytes\nBase Board Information\n\tManufacturer: Gigabyte Technology Co., Ltd.\n\tProduct Name: B450 AORUS ELITE\n\tVersion: Default string\n\tSerial Number: Default string\n\tAsset Tag: Default string\n\tFeatures:\n\t\tBoard is a hosting board\n\t\tBoard is replaceable\n\tLocation In Chassis: Default string\n\tChassis Handle: 0x0003\n\tType: Motherboard\n\tContained Object Handles: 0\n\nHandle 0x000B, DMI type 16, 23 bytes\nPhysical Memory Array\n\tLocation: System Board Or Motherboard\n\tUse: System Memory\n\tError Correction Type: None\n\tMaximum Capacity: 128 GB\n\tError Information Handle: 0x000A\n\tNumber Of Devices: 4\n\nHandle 0x0013, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0012\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 16 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 0\n\tBank Locator: P0 CHANNEL A\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: 00000000\n\tAsset Tag: Not Specified\n\tPart Number: CMW32GX4M2E3200C16 \n\tRank: 2\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: Unknown\n\tMaximum Voltage: Unknown\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 3, Hex 0x9E\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 16 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x0016, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0015\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 8 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 1\n\tBank Locator: P0 CHANNEL A\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: E3C4408B\n\tAsset Tag: Not Specified\n\tPart Number: BL8G32C16U4BL.M8FE\n\tRank: 1\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: 1.2 V\n\tMaximum Voltage: 1.2 V\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 6, Hex 0x9B\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 8 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x0019, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0018\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 16 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 0\n\tBank Locator: P0 CHANNEL B\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: 00000000\n\tAsset Tag: Not Specified\n\tPart Number: CMW32GX4M2E3200C16 \n\tRank: 2\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: Unknown\n\tMaximum Voltage: Unknown\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 3, Hex 0x9E\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 16 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x001C, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x001B\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 8 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 1\n\tBank Locator: P0 CHANNEL B\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: E3C44087\n\tAsset Tag: Not Specified\n\tPart Number: BL8G32C16U4BL.M8FE\n\tRank: 1\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: 1.2 V\n\tMaximum Voltage: 1.2 V\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 6, Hex 0x9B\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 8 GB\n\tCache Size: None\n\tLogical Size: None\n\n",
"lsblk": "NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS\nloop0 7:0 0 118,5M 1 loop /snap/iptvnator/92\nloop1 7:1 0 48,1M 1 loop /snap/snapd/25935\nloop2 7:2 0 50,9M 1 loop /snap/snapd/25577\nloop3 7:3 0 4K 1 loop /snap/bare/5\nloop4 7:4 0 91,7M 1 loop /snap/gtk-common-themes/1535\nloop5 7:5 0 55,5M 1 loop /snap/core18/2976\nloop6 7:6 0 164,8M 1 loop /snap/gnome-3-28-1804/198\nloop7 7:7 0 0B 0 loop \nsda 8:0 0 447,1G 0 disk \n└─sda1 8:1 0 447,1G 0 part \nsdb 8:16 1 0B 0 disk \nsdc 8:32 1 0B 0 disk \nsdd 8:48 1 0B 0 disk \nsde 8:64 1 0B 0 disk \nnvme0n1 259:0 0 465,8G 0 disk \n├─nvme0n1p1 259:1 0 976M 0 part /boot/efi\n├─nvme0n1p2 259:2 0 440,8G 0 part /\n└─nvme0n1p3 259:3 0 24G 0 part [SWAP]\nnvme1n1 259:4 0 465,8G 0 disk \n├─nvme1n1p1 259:5 0 50M 0 part \n├─nvme1n1p2 259:6 0 464,3G 0 part \n├─nvme1n1p3 259:7 0 808M 0 part \n├─nvme1n1p4 259:8 0 100M 0 part \n└─nvme1n1p5 259:9 0 522M 0 part \n",
"lscpu": "Architecture : x86_64\nMode(s) opératoire(s) des processeurs : 32-bit, 64-bit\nTailles des adresses: 48 bits physical, 48 bits virtual\nBoutisme : Little Endian\nProcesseur(s) : 24\nListe de processeur(s) en ligne : 0-23\nIdentifiant constructeur : AuthenticAMD\nNom de modèle : AMD Ryzen 9 5900X 12-Core Processor\nFamille de processeur : 25\nModèle : 33\nThread(s) par cœur : 2\nCœur(s) par socket : 12\nSocket(s) : 1\nRévision : 2\nAccroissement de fréquence : activé\nmultiplication des MHz du/des CPU(s) : 75%\nVitesse maximale du processeur en MHz : 4951,0000\nVitesse minimale du processeur en MHz : 550,0000\nBogoMIPS : 7399,98\nDrapeaux : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local user_shstk clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm debug_swap\nVirtualisation : AMD-V\nCache L1d : 384 KiB (12 instances)\nCache L1i : 384 KiB (12 instances)\nCache L2 : 6 MiB (12 instances)\nCache L3 : 64 MiB (2 instances)\nNœud(s) NUMA : 1\nNœud NUMA 0 de processeur(s) : 0-23\nVulnérabilité Gather data sampling : Not affected\nVulnérabilité Indirect target selection : Not affected\nVulnérabilité Itlb multihit : Not affected\nVulnérabilité L1tf : Not affected\nVulnérabilité Mds : Not affected\nVulnérabilité Meltdown : Not affected\nVulnérabilité Mmio stale data : Not affected\nVulnérabilité Reg file data sampling : Not affected\nVulnérabilité Retbleed : Not affected\nVulnérabilité Spec rstack overflow : Mitigation; Safe RET\nVulnérabilité Spec store bypass : Mitigation; Speculative Store Bypass disabled via prctl\nVulnérabilité Spectre v1 : Mitigation; usercopy/swapgs barriers and __user pointer sanitization\nVulnérabilité Spectre v2 : Mitigation; Retpolines; IBPB conditional; IBRS_FW; STIBP always-on; RSB filling; PBRSB-eIBRS Not affected; BHI Not affected\nVulnérabilité Srbds : Not affected\nVulnérabilité Tsa : Vulnerable: Clear CPU buffers attempted, no microcode\nVulnérabilité Tsx async abort : Not affected\nVulnérabilité Vmscape : Mitigation; IBPB before exit to userspace\n"
}
}
[DEBUG] Payload sauvegardé au format JSON dans bench_payload_last.json (49205 octets)
[DEBUG] Contenu de /home/gilles/Documents/vscode/bis/bench_go/config.yaml :
# bench-client config.yaml
# Objectif: décrire précisément
# - les outils à utiliser (et exigences d'installation)
# - les informations à collecter
# - les benchmarks à exécuter
# - les paramètres (timeouts, limites, endpoints, debug)
#
# Le binaire (Go/Rust) charge ce fichier depuis HTTP(S), valide les bornes, applique des defaults sûrs,
# et peut fallback sur une config locale si indisponible.
config_version: 1
profile: default
backend:
# URL finale du POST (le programme peut aussi accepter server_base_url + path)
url: "http://10.0.0.50:8007/api/benchmark"
# Auth: idéalement injecté par variable d'env sur le client; éviter de mettre le token dans la config distante.
auth:
mode: bearer_env
env_var: "test_hardware_perf"
http:
timeout_s: 15
retries: 2
retry_backoff_s: 2
tls:
verify: true
remote_config:
# Options de cache/ETag si le binaire gère le rafraîchissement
cache_path: "/var/cache/bench-client/config.yaml"
use_etag: true
refresh_max_age_s: 86400
runtime:
# Timeouts globaux de sécurité
max_total_runtime_s: 480
command_timeout_s: 30
command_timeout_overrides:
dmidecode_s: 20
smartctl_s: 10
lsblk_s: 10
sysbench_cpu_s: 120
sysbench_mem_s: 60
fio_s: 120
iperf3_s: 20
temp_dir: "/tmp"
locale: "C"
path_prepend:
- "/usr/sbin"
- "/sbin"
logging:
level: info # trace|debug|info|warn|error
progress: true # affichage étapes (1/N) + items
show_command_lines: false
capture_raw_output: true # remonte dans raw_info (attention taille)
raw_output_max_kb: 5120
save_payload_to_tmp: true
payload_tmp_dir: "/tmp"
payload_filename_prefix: "bench_payload_"
interactive_pause_on_debug: true
payload:
dir: "."
prefix: "bench_payload_"
always_save: true
device_identity:
# device_identifier envoyé au backend
prefer:
- hostname
- machine_id
hostname_command: "hostname"
machine_id_path: "/etc/machine-id"
dependencies:
# Liste des programmes externes (installés par le script shell)
# Le binaire doit pouvoir:
# - détecter présence/version (optionnel)
# - marquer chaque "feature" comme disponible ou non
required_base:
- name: "curl"
purpose: "Téléchargements/diagnostics (souvent côté script)"
- name: "jq"
purpose: "Optionnel: debug/validation (souvent côté script, pas nécessaire au binaire)"
- name: "lscpu"
purpose: "Infos CPU"
- name: "free"
purpose: "Infos mémoire"
- name: "lsblk"
purpose: "Infos stockage/partitions"
- name: "ip"
purpose: "Interfaces réseau, adresses IP"
- name: "bc"
purpose: "Optionnel: calculs (si pas fait en code)"
- name: "dmidecode"
purpose: "Infos BIOS/carte mère/RAM/DMI"
requires_root: true
- name: "smartctl"
package: "smartmontools"
purpose: "Infos disques SMART"
requires_root: true
- name: "ethtool"
purpose: "Vitesse réseau, Wake-on-LAN, driver"
requires_root: true
- name: "lspci"
package: "pciutils"
purpose: "Liste périphériques PCI (GPU/Audio/etc.)"
- name: "lsusb"
package: "usbutils"
purpose: "Liste périphériques USB"
- name: "aplay"
package: "alsa-utils"
purpose: "Inventaire audio ALSA"
- name: "arecord"
package: "alsa-utils"
purpose: "Inventaire capture ALSA"
- name: "pactl"
package: "pulseaudio-utils"
purpose: "Infos audio PulseAudio/PipeWire (si dispo)"
- name: "iw"
package: "iw"
purpose: "SSID + bitrate Wi-Fi"
- name: "loginctl"
package: "systemd"
purpose: "Type de session (x11/wayland/tty)"
- name: "xrandr"
package: "x11-xserver-utils"
purpose: "Résolution écran (X11)"
- name: "xdpyinfo"
package: "x11-utils"
purpose: "Résolution écran (fallback X11)"
- name: "swaymsg"
package: "sway"
purpose: "Résolution écran (Wayland/Sway)"
- name: "nvidia-smi"
package: "nvidia-utils"
purpose: "Infos GPU NVIDIA (si présent)"
- name: "systemd-detect-virt"
package: "systemd"
purpose: "Détection virtualisation/proxmox"
- name: "pveversion"
package: "pve-manager"
purpose: "Détection hôte Proxmox (si présent)"
benchmark_tools:
- name: "sysbench"
purpose: "Bench CPU et mémoire"
- name: "fio"
purpose: "Bench disque"
- name: "iperf3"
purpose: "Bench réseau"
- name: "ping"
package: "iputils-ping"
purpose: "Vérifier accessibilité iperf server"
- name: "nc"
package: "netcat-openbsd"
purpose: "Tester port 5201 iperf3"
collection:
# Liste des infos à récupérer, structurées comme dans ton script.
system:
enabled: true
items:
- hostname
- os_id
- os_version
- kernel_version
- architecture
- session_type # XDG_SESSION_TYPE / loginctl / DISPLAY / WAYLAND_DISPLAY
- screen_resolution # xrandr/xdpyinfo/swaymsg
- last_boot_time # who -b
- uptime_seconds # /proc/uptime
- battery_percentage # /sys/class/power_supply/BAT*/capacity
- battery_status # /sys/class/power_supply/BAT*/status
- battery_health # /sys/class/power_supply/BAT*/health ou uevent
- virtualization # systemd-detect-virt + proxmox hints
virtualization_detection:
enabled: true
proxmox:
detect_host_by:
- pveversion
- "/etc/pve"
detect_guest_by:
- systemd_detect_virt
- qemu_guest_agent
- dmidecode_manufacturer_product_matches: ["qemu", "proxmox"]
capture:
- is_proxmox_host
- is_proxmox_guest
- proxmox_version
- virtualization_type
cpu:
enabled: true
source:
primary: lscpu
supplement_dmidecode: true
items:
- vendor
- model
- cores_physical # cores_per_socket * sockets
- threads # nproc
- base_freq_ghz # lscpu CPU MHz -> GHz
- max_freq_ghz # lscpu CPU max MHz -> GHz
- cache_l1_kb
- cache_l2_kb
- cache_l3_kb
- flags # CPU flags list
- microarchitecture # depuis dmidecode type 4 (Family) si manquant
raw_capture:
- lscpu_output
ram:
enabled: true
sources:
- free
- dmidecode
items:
- total_mb
- used_mb
- free_mb
- shared_mb
- slots_total # dmidecode -t 16
- slots_used # dmidecode -t 17
- max_capacity_mb # dmidecode -t 16 Maximum Capacity
- ecc # dmidecode -t memory Error Correction Type
- layout # par slot: locator, size, type, speed, configured_speed, form_factor, type_detail, rank, manufacturer, part_number
raw_capture:
- dmidecode_full
gpu:
enabled: true
sources:
- lspci
- nvidia_smi_optional
items:
- vendor # NVIDIA/AMD/Intel/Unknown
- model # lspci vga/3d ou nvidia-smi name
- memory_dedicated_mb # nvidia-smi (si dispo)
- driver_version # nvidia-smi (si dispo)
motherboard_bios:
enabled: true
source: dmidecode
items:
- baseboard_manufacturer
- baseboard_product_name
- bios_vendor
- bios_version
- bios_release_date
pci_devices:
enabled: true
source: lspci
items:
- slot
- class
- vendor
- device
usb_devices:
enabled: true
source: lsusb
items:
- bus
- device
- vendor_id
- product_id
- name
audio:
enabled: true
sources:
- lspci
- alsa
- pactl_optional
items:
hardware:
- pci_audio_devices # lspci audio
- alsa_playback # aplay -l
- alsa_capture # arecord -l
- pcm_devices # aplay -L
software:
- backend # pipewire/pulseaudio/alsa
- server_name
- server_version
- default_sink
- default_source
- sinks
- sources
storage:
enabled: true
sources:
- lsblk
- smartctl
devices:
enumerate_by: "lsblk_disks" # lsblk -d -n -o NAME,TYPE
include_removable: false
items:
- device # /dev/sda
- model # smartctl -i
- serial # smartctl -i
- size # lsblk
- type # rota -> ssd/hdd
- interface # tran
- temperature_c # smartctl -A
- smart_health # smartctl -H
partitions:
enabled: true
source: lsblk_json
items:
- name
- mount_point
- fs_type
- total_gb
- used_gb
- free_gb
raw_capture:
- lsblk_output
network_shares:
enabled: true
source: "/proc/mounts"
detect_fs_types:
- nfs
- nfs4
- cifs
- smbfs
- fuse.cifs
- fuse.smbfs
- afp
- afpfs
- fuse.afpfs
- sshfs
- fuse.sshfs
- ftpfs
- curlftpfs
- fuse.ftpfs
- davfs
- davfs2
- fuse.webdavfs
items:
- protocol
- source
- mount_point
- fs_type
- options
- total_gb
- used_gb
- free_gb
network:
enabled: true
sources:
- ip
- ethtool
- iw_optional
interface_filter:
# reprise logique script: UP|UNKNOWN sauf interfaces virtuelles connues
include_states: ["UP", "UNKNOWN"]
exclude_name_prefixes: ["lo", "docker", "br-", "veth", "tap", "fw"]
items:
- name
- type # bridge|ethernet|wifi|unknown
- mac
- ip_address
- speed_mbps # ethtool speed ou iw tx bitrate
- driver # ethtool -i ou /sys/.../driver
- ssid # iw dev link
- wake_on_lan # ethtool Wake-on
raw_info:
enabled: true
include:
- lscpu
- lsblk
- dmidecode
max_size_kb: 5120
benchmarks:
enabled: true
# Pondérations identiques à ton script (si résultat dispo)
weights:
cpu: 0.40
memory: 0.20
disk: 0.20
network: 0.10
gpu: 0.10
cpu_sysbench:
enabled: true
tool: sysbench
params:
cpu_max_prime: 20000
single_thread: 1
multi_threads: "all" # all -> nproc
outputs:
- events_per_sec_single
- events_per_sec_multi
- duration_s
- score_single
- score_multi
- score_global
memory_sysbench:
enabled: true
tool: sysbench
params:
total_size: "1G"
outputs:
- throughput_mib_s
- score
disk_fio:
enabled: true
tool: fio
safety:
# Empêcher un bench destructif ou trop long
max_runtime_s: 60
max_size: "1G"
direct: 1
params:
name: "bench"
ioengine: "libaio"
rw: "randrw"
bs: "4k"
size: "500M"
numjobs: 1
runtime_s: 30
time_based: true
output_format: "json"
outputs:
- read_mb_s
- write_mb_s
- iops_read
- iops_write
- latency_ms
- score
network_iperf3:
enabled: true
tool: iperf3
server: "10.0.0.50"
port: 5201
prechecks:
ping:
enabled: true
count: 1
timeout_s: 1
port_check:
enabled: true
tool: nc
timeout_s: 2
params:
duration_s: 10
bidir: true
json: true
outputs:
- upload_mbps
- download_mbps
- ping_ms
- score
# placeholders (comme ton script)
- jitter_ms
- packet_loss_percent
gpu:
enabled: false
note: "GPU bench non implémenté dans le script d'origine (placeholder)."
payload_mapping:
# Le binaire peut mapper ses structures internes vers le schéma backend actuel.
# Utile si ton backend attend des champs précis.
device_identifier: "system.hostname"
bench_script_version_field: "bench_client_version"
include_sections:
- hardware
- results
- raw_info
limits:
# Bornes générales de sécurité (validation côté client)
max_payload_kb: 1024
max_raw_info_kb: 5120
max_fio_runtime_s: 60
max_fio_size_bytes: 1073741824 # 1 GiB
max_sysbench_cpu_prime: 50000
max_iperf_duration_s: 30
features:
# Permet d'activer/désactiver rapidement des blocs selon machines
enable_screen_resolution_detection: true
enable_battery_detection: true
enable_network_share_detection: true
enable_audio_detection: true
enable_proxmox_detection: true
[DEBUG] Config chargée : {ConfigVersion:1 Backend:{URL:http://10.0.0.50:8007/api/benchmark Auth:{Mode:bearer_env EnvVar:test_hardware_perf} HTTP:{TimeoutS:15 Retries:2 RetryBackoffS:2 TLSVerify:false}} Runtime:{MaxTotalRuntime:480 CommandTimeout:30 TempDir:/tmp Locale:C PathPrepend:[/usr/sbin /sbin]} Logging:{Level:info Progress:true ShowCommandLines:false CaptureRawOutput:true RawOutputMaxKB:5120 SavePayloadToTmp:true PayloadTmpDir:/tmp PayloadFilenamePrefix:bench_payload_ InteractiveDebugPause:true} Payload:{Dir:. Prefix:bench_payload_ Always:true} Benchmarks:{Enabled:true Weights:map[cpu:0.4 disk:0.2 gpu:0.1 memory:0.2 network:0.1] CPU:{Enabled:true Tool:sysbench Server: Port:0 Params:map[cpu_max_prime:20000 multi_threads:all single_thread:1] Safety:map[]} Memory:{Enabled:true Tool:sysbench Server: Port:0 Params:map[total_size:1G] Safety:map[]} Disk:{Enabled:true Tool:fio Server: Port:0 Params:map[bs:4k ioengine:libaio name:bench numjobs:1 output_format:json runtime_s:30 rw:randrw size:500M time_based:true] Safety:map[direct:1 max_runtime_s:60 max_size:1G]} Network:{Enabled:true Tool:iperf3 Server:10.0.0.50 Port:5201 Params:map[bidir:true duration_s:10 json:true] Safety:map[]}} Collection:{System:{Enabled:true} CPU:{Enabled:true} RAM:{Enabled:true} Storage:{Enabled:true} Network:{Enabled:true} GPU:{Enabled:true} Audio:{Enabled:true} PCI:{Enabled:true} USB:{Enabled:true}} RawInfo:{Enabled:true Include:[lscpu lsblk dmidecode] MaxSizeKB:5120}}
[DEBUG] Configuration complète : {ConfigVersion:1 Backend:{URL:http://10.0.0.50:8007/api/benchmark Auth:{Mode:bearer_env EnvVar:test_hardware_perf} HTTP:{TimeoutS:15 Retries:2 RetryBackoffS:2 TLSVerify:false}} Runtime:{MaxTotalRuntime:480 CommandTimeout:30 TempDir:/tmp Locale:C PathPrepend:[/usr/sbin /sbin]} Logging:{Level:info Progress:true ShowCommandLines:false CaptureRawOutput:true RawOutputMaxKB:5120 SavePayloadToTmp:true PayloadTmpDir:/tmp PayloadFilenamePrefix:bench_payload_ InteractiveDebugPause:true} Payload:{Dir:. Prefix:bench_payload_ Always:true} Benchmarks:{Enabled:true Weights:map[cpu:0.4 disk:0.2 gpu:0.1 memory:0.2 network:0.1] CPU:{Enabled:true Tool:sysbench Server: Port:0 Params:map[cpu_max_prime:20000 multi_threads:all single_thread:1] Safety:map[]} Memory:{Enabled:true Tool:sysbench Server: Port:0 Params:map[total_size:1G] Safety:map[]} Disk:{Enabled:true Tool:fio Server: Port:0 Params:map[bs:4k ioengine:libaio name:bench numjobs:1 output_format:json runtime_s:30 rw:randrw size:500M time_based:true] Safety:map[direct:1 max_runtime_s:60 max_size:1G]} Network:{Enabled:true Tool:iperf3 Server:10.0.0.50 Port:5201 Params:map[bidir:true duration_s:10 json:true] Safety:map[]}} Collection:{System:{Enabled:true} CPU:{Enabled:true} RAM:{Enabled:true} Storage:{Enabled:true} Network:{Enabled:true} GPU:{Enabled:true} Audio:{Enabled:true} PCI:{Enabled:true} USB:{Enabled:true}} RawInfo:{Enabled:true Include:[lscpu lsblk dmidecode] MaxSizeKB:5120}}
[DEBUG] [2/6] Début collecte CPU
[DEBUG] Exec: lscpu []
[DEBUG] Exec: dmidecode [-t 4]
[DEBUG] [2/6] Détails CPU: {Vendor:AuthenticAMD Model:AMD Ryzen 9 5900X 12-Core Processor Cores:12 Threads:24 BaseFreqGHz:4.951 MaxFreqGHz:4.951 CacheL1KB:64 CacheL2KB:512 CacheL3KB:32768 Flags:[fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local user_shstk clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm debug_swap] Microarchitecture:Zen TDPW:<nil>}
[DEBUG] [2/6] Début collecte RAM
[DEBUG] SMBIOS détecté : SMBIOS 3.3.0 (54 tables)
[DEBUG] Module SMBIOS détecté : DIMM 0 {Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 }
[DEBUG] Module SMBIOS détecté : DIMM 1 {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE}
[DEBUG] Module SMBIOS détecté : DIMM 0 {Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 }
[DEBUG] Module SMBIOS détecté : DIMM 1 {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE}
[DEBUG] Mémoire SMBIOS : slots_total=10 slots_used=4 ecc=false max=0MB
[DEBUG] [2/6] Détails RAM: {TotalMB:48096 UsedMB:17023 FreeMB:31073 SharedMB:990 SlotsTotal:10 SlotsUsed:4 MaxCapacityMB:48096 ECC:false Layout:[{Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 } {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE} {Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 } {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE}]}
[DEBUG] [2/6] Début collecte GPU
[DEBUG] Exec: lspci []
[DEBUG] Exec: nvidia-smi [--query-gpu=name,driver_version,memory.total --format=csv,noheader,nounits]
[DEBUG] [2/6] Détails GPU: {Vendor:NVIDIA Model:NVIDIA GeForce RTX 3060 DriverVersion:550.163.01 MemoryDedicatedMB:0xc000388028 MemorySharedMB:<nil> APISupport:[]}
[DEBUG] [2/6] Début collecte stockage
[DEBUG] Exec: lsblk [-J -b -o NAME,TYPE,TRAN,VENDOR,MODEL,SERIAL,SIZE]
[DEBUG] SMART open /dev/sdc impossible: unknown drive type
[DEBUG] SMART open /dev/sdd impossible: unknown drive type
[DEBUG] SMART open /dev/sde impossible: unknown drive type
[DEBUG] SMART open /dev/sdb impossible: unknown drive type
[DEBUG] [2/6] Détails stockage: {Devices:[{Name:/dev/nvme0n1 Type:ssd Interface:nvme CapacityGB:465.7617416381836 Vendor:CT500P2SSD8 Model:CT500P2SSD8 Serial:2138E5D60DD8 SmartHealth:PASSED Temperature:34} {Name:/dev/nvme1n1 Type: Interface:nvme CapacityGB:465.7617416381836 Vendor:CT500P2SSD8 Model:CT500P2SSD8 Serial:2108E4FD258D SmartHealth:PASSED Temperature:33} {Name:/dev/sda Type: Interface:sata CapacityGB:447.13167572021484 Vendor:ATA Model:KINGSTON SUV500480G Serial:50026B768226A365 SmartHealth:PASSED Temperature:25} {Name:/dev/sdb Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:Compact Flash Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sdc Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:SD/MMC Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sdd Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:MS/MS-PRO Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sde Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:xD-Picture Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0}] Partitions:[{Name:/dev/nvme0n1p2 MountPoint:/ FSType:ext4 TotalGB:432.80120849609375 UsedGB:0xc0003882e8 FreeGB:0xc0003882f0} {Name:/dev/nvme0n1p1 MountPoint:/boot/efi FSType:vfat TotalGB:0.9512481689453125 UsedGB:0xc0003882f8 FreeGB:0xc000388330}]}
[DEBUG] [2/6] Début collecte PCI devices
[DEBUG] Exec: lspci [-mm]
[DEBUG] [2/6] Détails PCI: [{Slot:00:00.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Root Complex} {Slot:00:00.2 Class:IOMMU Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse IOMMU} {Slot:00:01.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:01.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse GPP Bridge} {Slot:00:01.3 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse GPP Bridge} {Slot:00:02.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:03.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:03.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse GPP Bridge} {Slot:00:04.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:05.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:07.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:07.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]} {Slot:00:08.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:08.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]} {Slot:00:14.0 Class:SMBus Vendor:Advanced Micro Devices, Inc. [AMD] Device:FCH SMBus Controller} {Slot:00:14.3 Class:ISA bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:FCH LPC Bridge} {Slot:00:18.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 0} {Slot:00:18.1 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 1} {Slot:00:18.2 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 2} {Slot:00:18.3 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 3} {Slot:00:18.4 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 4} {Slot:00:18.5 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 5} {Slot:00:18.6 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 6} {Slot:00:18.7 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 7} {Slot:01:00.0 Class:Non-Volatile memory controller Vendor:Micron/Crucial Technology Device:P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)} {Slot:02:00.0 Class:USB controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset USB 3.1 xHCI Compliant Host Controller} {Slot:02:00.1 Class:SATA controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset SATA Controller} {Slot:02:00.2 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Bridge} {Slot:03:00.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:03:01.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:03:04.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:03:08.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:04:00.0 Class:Ethernet controller Vendor:Realtek Semiconductor Co., Ltd. Device:RTL8111/8168/8211/8411 PCI Express Gigabit Ethernet Controller} {Slot:07:00.0 Class:Non-Volatile memory controller Vendor:Micron/Crucial Technology Device:P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)} {Slot:08:00.0 Class:VGA compatible controller Vendor:NVIDIA Corporation Device:GA106 [GeForce RTX 3060 Lite Hash Rate]} {Slot:08:00.1 Class:Audio device Vendor:NVIDIA Corporation Device:GA106 High Definition Audio Controller} {Slot:09:00.0 Class:Non-Essential Instrumentation [1300] Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Function} {Slot:0a:00.0 Class:Non-Essential Instrumentation [1300] Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Reserved SPP} {Slot:0a:00.1 Class:Encryption controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Cryptographic Coprocessor PSPCPP} {Slot:0a:00.3 Class:USB controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse USB 3.0 Host Controller} {Slot:0a:00.4 Class:Audio device Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse HD Audio Controller}]
[DEBUG] [2/6] Début collecte USB devices
[DEBUG] Exec: lsusb []
[DEBUG] [2/6] Détails USB: [{Bus:001 Device:001 VendorID:1d6b ProductID:0002 Name:Linux Foundation 2.0 root hub} {Bus:001 Device:002 VendorID:058f ProductID:6362 Name:Alcor Micro Corp. Flash Card Reader/Writer} {Bus:002 Device:001 VendorID:1d6b ProductID:0003 Name:Linux Foundation 3.0 root hub} {Bus:003 Device:001 VendorID:1d6b ProductID:0002 Name:Linux Foundation 2.0 root hub} {Bus:003 Device:003 VendorID:046d ProductID:c52b Name:Logitech, Inc. Unifying Receiver} {Bus:003 Device:004 VendorID:0bda ProductID:b711 Name:Realtek Semiconductor Corp. RTL8188GU 802.11n WLAN Adapter (After Modeswitch)} {Bus:004 Device:001 VendorID:1d6b ProductID:0003 Name:Linux Foundation 3.0 root hub}]
[DEBUG] [2/6] Début collecte partages réseau
[DEBUG] [2/6] Détails partages réseau: []
[DEBUG] [2/6] Début collecte interfaces réseau
[DEBUG] Exec: ethtool [eno1]
[DEBUG] Exec: ethtool [-i eno1]
[DEBUG] Exec: ethtool [wlxe84e06a6c1fc]
[DEBUG] Exec: ethtool [-i wlxe84e06a6c1fc]
[DEBUG] Exec: iwgetid [wlxe84e06a6c1fc -r]
[DEBUG] Exec: iw [wlxe84e06a6c1fc link]
[DEBUG] [2/6] Détails réseau: {Interfaces:[{Name:eno1 Type:ethernet MAC:18:c0:4d:b5:65:74 IP:10.0.1.109 SpeedMbps:0xc000480578 Driver:r8169 SSID: WakeOnLAN:false} {Name:wlxe84e06a6c1fc Type:wifi MAC:02:39:8c:6f:aa:d3 IP: SpeedMbps:<nil> Driver:rtl8xxxu SSID: WakeOnLAN:false}]}
[DEBUG] [2/6] Début collecte carte mère
[DEBUG] Exec: dmidecode [-t 2]
[DEBUG] Exec: dmidecode [-t 0]
[DEBUG] [2/6] Détails carte mère: {Vendor:Gigabyte Technology Co., Ltd. Model:B450 AORUS ELITE BIOSVendor:American Megatrends International, LLC. BIOSVersion:F65e BIOSDate:09/20/2023}
[DEBUG] [2/6] Début collecte OS
[DEBUG] Exec: uname [-r]
[DEBUG] Exec: uname [-m]
[DEBUG] Exec: systemd-detect-virt []
[DEBUG] Exec: xrandr []
[DEBUG] Exec: xrandr [--current]
[DEBUG] Exec: who [-b]
[DEBUG] [2/6] Détails OS: {Name:Debian GNU/Linux Version:13 (trixie) KernelVersion:6.12.57+deb13-amd64 Architecture:x86_64 SessionType: DisplayServer: ScreenResolution:5560 x 1920 LastBootTime:démarrage système 2026-01-11 09:11 UptimeSeconds:43249.4 BatteryPercentage:<nil> BatteryStatus: BatteryHealth: Hostname:aorus VirtualizationType:kvm-host DesktopEnvironment:GNOME}
[DEBUG] [2/6] Début collecte capteurs
[DEBUG] [2/6] Détails capteurs: {CPUTempC:<nil> DiskTempsC:map[nvme-pci-0100:Composite:33.85 nvme-pci-0700:Composite:31.85] Sensors:[{Chip:k10temp-pci-00c3 Name:Tctl Type:temperature Value:44.5 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tccd1 Type:temperature Value:35 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tccd2 Type:temperature Value:30 Unit:°C Alarm:false} {Chip:nvme-pci-0100 Name:Composite Type:temperature Value:33.85 Unit:°C Alarm:false} {Chip:nvme-pci-0700 Name:Composite Type:temperature Value:31.85 Unit:°C Alarm:false} {Chip:acpitz-acpi-0 Name:temp1 Type:temperature Value:16.8 Unit:°C Alarm:false}]}
[DEBUG] [2/6] Début collecte audio
[DEBUG] Exec: lspci []
[DEBUG] Exec: aplay [-l]
[DEBUG] Exec: arecord [-l]
[DEBUG] Exec: aplay [-L]
[DEBUG] Exec: pactl [info]
[DEBUG] [2/6] Détails audio: {Hardware:{PCIAudioDevices:[08:00.1 Audio device: NVIDIA Corporation GA106 High Definition Audio Controller (rev a1) 0a:00.4 Audio device: Advanced Micro Devices, Inc. [AMD] Starship/Matisse HD Audio Controller] AlsaPlayback:**** Liste des périphériques matériels PLAYBACK ****
carte 0 : NVidia [HDA NVidia], périphérique 3 : HDMI 0 [LG ULTRAWIDE]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 7 : HDMI 1 [K243Y]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 8 : HDMI 2 [HDMI 2]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 9 : HDMI 3 [HDMI 3]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]
Sous-périphériques : 0/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 1 : ALC892 Digital [ALC892 Digital]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
AlsaCapture:**** Liste des périphériques matériels CAPTURE ****
carte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 2 : ALC892 Alt Analog [ALC892 Alt Analog]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
PCMDevices:[null Discard all samples (playback) or generate zero samples (capture) pipewire PipeWire Sound Server default Default ALSA Output (currently PipeWire Media Server) hw:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Direct hardware device without any conversions hw:CARD=NVidia,DEV=7 HDA NVidia, K243Y Direct hardware device without any conversions hw:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Direct hardware device without any conversions hw:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Direct hardware device without any conversions plughw:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Hardware device with all software conversions plughw:CARD=NVidia,DEV=7 HDA NVidia, K243Y Hardware device with all software conversions plughw:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Hardware device with all software conversions plughw:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Hardware device with all software conversions hdmi:CARD=NVidia,DEV=0 HDA NVidia, LG ULTRAWIDE HDMI Audio Output hdmi:CARD=NVidia,DEV=1 HDA NVidia, K243Y HDMI Audio Output hdmi:CARD=NVidia,DEV=2 HDA NVidia, HDMI 2 HDMI Audio Output hdmi:CARD=NVidia,DEV=3 HDA NVidia, HDMI 3 HDMI Audio Output dmix:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Direct sample mixing device dmix:CARD=NVidia,DEV=7 HDA NVidia, K243Y Direct sample mixing device dmix:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Direct sample mixing device dmix:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Direct sample mixing device hw:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Direct hardware device without any conversions hw:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Direct hardware device without any conversions plughw:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Hardware device with all software conversions plughw:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Hardware device with all software conversions sysdefault:CARD=Generic HD-Audio Generic, ALC892 Analog Default Audio Device front:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Front output / input surround21:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 2.1 Surround output to Front and Subwoofer speakers surround40:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 4.0 Surround output to Front and Rear speakers surround41:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 4.1 Surround output to Front, Rear and Subwoofer speakers surround50:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 5.0 Surround output to Front, Center and Rear speakers surround51:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 5.1 Surround output to Front, Center, Rear and Subwoofer speakers surround71:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 7.1 Surround output to Front, Center, Side, Rear and Woofer speakers iec958:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Digital IEC958 (S/PDIF) Digital Audio Output dmix:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Direct sample mixing device dmix:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Direct sample mixing device]} Software:{Backend: ServerName: ServerVersion: DefaultSink:<nil> DefaultSource:<nil> Sinks:[] Sources:[]}}
[DEBUG] Exec: lscpu []
[DEBUG] Exec: lsblk [-a]
[DEBUG] Exec: dmidecode [-t 0,1,2,16,17]
[DEBUG] Matériel collecté : {CPU:{Vendor:AuthenticAMD Model:AMD Ryzen 9 5900X 12-Core Processor Cores:12 Threads:24 BaseFreqGHz:4.951 MaxFreqGHz:4.951 CacheL1KB:64 CacheL2KB:512 CacheL3KB:32768 Flags:[fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local user_shstk clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm debug_swap] Microarchitecture:Zen TDPW:<nil>} RAM:{TotalMB:48096 UsedMB:17023 FreeMB:31073 SharedMB:990 SlotsTotal:10 SlotsUsed:4 MaxCapacityMB:48096 ECC:false Layout:[{Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 } {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE} {Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 } {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE}]} GPU:{Vendor:NVIDIA Model:NVIDIA GeForce RTX 3060 DriverVersion:550.163.01 MemoryDedicatedMB:0xc000388028 MemorySharedMB:<nil> APISupport:[]} Storage:{Devices:[{Name:/dev/nvme0n1 Type:ssd Interface:nvme CapacityGB:465.7617416381836 Vendor:CT500P2SSD8 Model:CT500P2SSD8 Serial:2138E5D60DD8 SmartHealth:PASSED Temperature:34} {Name:/dev/nvme1n1 Type: Interface:nvme CapacityGB:465.7617416381836 Vendor:CT500P2SSD8 Model:CT500P2SSD8 Serial:2108E4FD258D SmartHealth:PASSED Temperature:33} {Name:/dev/sda Type: Interface:sata CapacityGB:447.13167572021484 Vendor:ATA Model:KINGSTON SUV500480G Serial:50026B768226A365 SmartHealth:PASSED Temperature:25} {Name:/dev/sdb Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:Compact Flash Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sdc Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:SD/MMC Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sdd Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:MS/MS-PRO Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sde Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:xD-Picture Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0}] Partitions:[{Name:/dev/nvme0n1p2 MountPoint:/ FSType:ext4 TotalGB:432.80120849609375 UsedGB:0xc0003882e8 FreeGB:0xc0003882f0} {Name:/dev/nvme0n1p1 MountPoint:/boot/efi FSType:vfat TotalGB:0.9512481689453125 UsedGB:0xc0003882f8 FreeGB:0xc000388330}]} PCIDevices:[{Slot:00:00.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Root Complex} {Slot:00:00.2 Class:IOMMU Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse IOMMU} {Slot:00:01.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:01.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse GPP Bridge} {Slot:00:01.3 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse GPP Bridge} {Slot:00:02.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:03.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:03.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse GPP Bridge} {Slot:00:04.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:05.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:07.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:07.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]} {Slot:00:08.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:08.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]} {Slot:00:14.0 Class:SMBus Vendor:Advanced Micro Devices, Inc. [AMD] Device:FCH SMBus Controller} {Slot:00:14.3 Class:ISA bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:FCH LPC Bridge} {Slot:00:18.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 0} {Slot:00:18.1 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 1} {Slot:00:18.2 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 2} {Slot:00:18.3 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 3} {Slot:00:18.4 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 4} {Slot:00:18.5 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 5} {Slot:00:18.6 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 6} {Slot:00:18.7 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 7} {Slot:01:00.0 Class:Non-Volatile memory controller Vendor:Micron/Crucial Technology Device:P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)} {Slot:02:00.0 Class:USB controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset USB 3.1 xHCI Compliant Host Controller} {Slot:02:00.1 Class:SATA controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset SATA Controller} {Slot:02:00.2 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Bridge} {Slot:03:00.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:03:01.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:03:04.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:03:08.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:04:00.0 Class:Ethernet controller Vendor:Realtek Semiconductor Co., Ltd. Device:RTL8111/8168/8211/8411 PCI Express Gigabit Ethernet Controller} {Slot:07:00.0 Class:Non-Volatile memory controller Vendor:Micron/Crucial Technology Device:P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)} {Slot:08:00.0 Class:VGA compatible controller Vendor:NVIDIA Corporation Device:GA106 [GeForce RTX 3060 Lite Hash Rate]} {Slot:08:00.1 Class:Audio device Vendor:NVIDIA Corporation Device:GA106 High Definition Audio Controller} {Slot:09:00.0 Class:Non-Essential Instrumentation [1300] Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Function} {Slot:0a:00.0 Class:Non-Essential Instrumentation [1300] Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Reserved SPP} {Slot:0a:00.1 Class:Encryption controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Cryptographic Coprocessor PSPCPP} {Slot:0a:00.3 Class:USB controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse USB 3.0 Host Controller} {Slot:0a:00.4 Class:Audio device Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse HD Audio Controller}] USBDevices:[{Bus:001 Device:001 VendorID:1d6b ProductID:0002 Name:Linux Foundation 2.0 root hub} {Bus:001 Device:002 VendorID:058f ProductID:6362 Name:Alcor Micro Corp. Flash Card Reader/Writer} {Bus:002 Device:001 VendorID:1d6b ProductID:0003 Name:Linux Foundation 3.0 root hub} {Bus:003 Device:001 VendorID:1d6b ProductID:0002 Name:Linux Foundation 2.0 root hub} {Bus:003 Device:003 VendorID:046d ProductID:c52b Name:Logitech, Inc. Unifying Receiver} {Bus:003 Device:004 VendorID:0bda ProductID:b711 Name:Realtek Semiconductor Corp. RTL8188GU 802.11n WLAN Adapter (After Modeswitch)} {Bus:004 Device:001 VendorID:1d6b ProductID:0003 Name:Linux Foundation 3.0 root hub}] NetworkShares:[] Network:{Interfaces:[{Name:eno1 Type:ethernet MAC:18:c0:4d:b5:65:74 IP:10.0.1.109 SpeedMbps:0xc000480578 Driver:r8169 SSID: WakeOnLAN:false} {Name:wlxe84e06a6c1fc Type:wifi MAC:02:39:8c:6f:aa:d3 IP: SpeedMbps:<nil> Driver:rtl8xxxu SSID: WakeOnLAN:false}]} Motherboard:{Vendor:Gigabyte Technology Co., Ltd. Model:B450 AORUS ELITE BIOSVendor:American Megatrends International, LLC. BIOSVersion:F65e BIOSDate:09/20/2023} OS:{Name:Debian GNU/Linux Version:13 (trixie) KernelVersion:6.12.57+deb13-amd64 Architecture:x86_64 SessionType: DisplayServer: ScreenResolution:5560 x 1920 LastBootTime:démarrage système 2026-01-11 09:11 UptimeSeconds:43249.4 BatteryPercentage:<nil> BatteryStatus: BatteryHealth: Hostname:aorus VirtualizationType:kvm-host DesktopEnvironment:GNOME} Sensors:{CPUTempC:<nil> DiskTempsC:map[nvme-pci-0100:Composite:33.85 nvme-pci-0700:Composite:31.85] Sensors:[{Chip:k10temp-pci-00c3 Name:Tctl Type:temperature Value:44.5 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tccd1 Type:temperature Value:35 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tccd2 Type:temperature Value:30 Unit:°C Alarm:false} {Chip:nvme-pci-0100 Name:Composite Type:temperature Value:33.85 Unit:°C Alarm:false} {Chip:nvme-pci-0700 Name:Composite Type:temperature Value:31.85 Unit:°C Alarm:false} {Chip:acpitz-acpi-0 Name:temp1 Type:temperature Value:16.8 Unit:°C Alarm:false}]} Audio:{Hardware:{PCIAudioDevices:[08:00.1 Audio device: NVIDIA Corporation GA106 High Definition Audio Controller (rev a1) 0a:00.4 Audio device: Advanced Micro Devices, Inc. [AMD] Starship/Matisse HD Audio Controller] AlsaPlayback:**** Liste des périphériques matériels PLAYBACK ****
carte 0 : NVidia [HDA NVidia], périphérique 3 : HDMI 0 [LG ULTRAWIDE]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 7 : HDMI 1 [K243Y]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 8 : HDMI 2 [HDMI 2]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 9 : HDMI 3 [HDMI 3]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]
Sous-périphériques : 0/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 1 : ALC892 Digital [ALC892 Digital]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
AlsaCapture:**** Liste des périphériques matériels CAPTURE ****
carte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 2 : ALC892 Alt Analog [ALC892 Alt Analog]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
PCMDevices:[null Discard all samples (playback) or generate zero samples (capture) pipewire PipeWire Sound Server default Default ALSA Output (currently PipeWire Media Server) hw:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Direct hardware device without any conversions hw:CARD=NVidia,DEV=7 HDA NVidia, K243Y Direct hardware device without any conversions hw:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Direct hardware device without any conversions hw:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Direct hardware device without any conversions plughw:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Hardware device with all software conversions plughw:CARD=NVidia,DEV=7 HDA NVidia, K243Y Hardware device with all software conversions plughw:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Hardware device with all software conversions plughw:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Hardware device with all software conversions hdmi:CARD=NVidia,DEV=0 HDA NVidia, LG ULTRAWIDE HDMI Audio Output hdmi:CARD=NVidia,DEV=1 HDA NVidia, K243Y HDMI Audio Output hdmi:CARD=NVidia,DEV=2 HDA NVidia, HDMI 2 HDMI Audio Output hdmi:CARD=NVidia,DEV=3 HDA NVidia, HDMI 3 HDMI Audio Output dmix:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Direct sample mixing device dmix:CARD=NVidia,DEV=7 HDA NVidia, K243Y Direct sample mixing device dmix:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Direct sample mixing device dmix:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Direct sample mixing device hw:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Direct hardware device without any conversions hw:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Direct hardware device without any conversions plughw:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Hardware device with all software conversions plughw:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Hardware device with all software conversions sysdefault:CARD=Generic HD-Audio Generic, ALC892 Analog Default Audio Device front:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Front output / input surround21:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 2.1 Surround output to Front and Subwoofer speakers surround40:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 4.0 Surround output to Front and Rear speakers surround41:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 4.1 Surround output to Front, Rear and Subwoofer speakers surround50:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 5.0 Surround output to Front, Center and Rear speakers surround51:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 5.1 Surround output to Front, Center, Rear and Subwoofer speakers surround71:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 7.1 Surround output to Front, Center, Side, Rear and Woofer speakers iec958:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Digital IEC958 (S/PDIF) Digital Audio Output dmix:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Direct sample mixing device dmix:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Direct sample mixing device]} Software:{Backend: ServerName: ServerVersion: DefaultSink:<nil> DefaultSource:<nil> Sinks:[] Sources:[]}} RawInfo:map[dmidecode:# dmidecode 3.6
Getting SMBIOS data from sysfs.
SMBIOS 3.3.0 present.
Handle 0x0000, DMI type 0, 26 bytes
BIOS Information
Vendor: American Megatrends International, LLC.
Version: F65e
Release Date: 09/20/2023
Address: 0xF0000
Runtime Size: 64 kB
ROM Size: 16 MB
Characteristics:
PCI is supported
BIOS is upgradeable
BIOS shadowing is allowed
Boot from CD is supported
Selectable boot is supported
BIOS ROM is socketed
EDD is supported
Japanese floppy for NEC 9800 1.2 MB is supported (int 13h)
Japanese floppy for Toshiba 1.2 MB is supported (int 13h)
5.25"/360 kB floppy services are supported (int 13h)
5.25"/1.2 MB floppy services are supported (int 13h)
3.5"/720 kB floppy services are supported (int 13h)
3.5"/2.88 MB floppy services are supported (int 13h)
Print screen service is supported (int 5h)
Serial services are supported (int 14h)
Printer services are supported (int 17h)
CGA/mono video services are supported (int 10h)
USB legacy is supported
BIOS boot specification is supported
Targeted content distribution is supported
UEFI is supported
BIOS Revision: 5.17
Handle 0x0001, DMI type 1, 27 bytes
System Information
Manufacturer: Gigabyte Technology Co., Ltd.
Product Name: B450 AORUS ELITE
Version: Default string
Serial Number: Default string
UUID: 03c00218-044d-05b5-6506-740700080009
Wake-up Type: Power Switch
SKU Number: Default string
Family: B450 MB
Handle 0x0002, DMI type 2, 15 bytes
Base Board Information
Manufacturer: Gigabyte Technology Co., Ltd.
Product Name: B450 AORUS ELITE
Version: Default string
Serial Number: Default string
Asset Tag: Default string
Features:
Board is a hosting board
Board is replaceable
Location In Chassis: Default string
Chassis Handle: 0x0003
Type: Motherboard
Contained Object Handles: 0
Handle 0x000B, DMI type 16, 23 bytes
Physical Memory Array
Location: System Board Or Motherboard
Use: System Memory
Error Correction Type: None
Maximum Capacity: 128 GB
Error Information Handle: 0x000A
Number Of Devices: 4
Handle 0x0013, DMI type 17, 92 bytes
Memory Device
Array Handle: 0x000B
Error Information Handle: 0x0012
Total Width: 64 bits
Data Width: 64 bits
Size: 16 GB
Form Factor: DIMM
Set: None
Locator: DIMM 0
Bank Locator: P0 CHANNEL A
Type: DDR4
Type Detail: Synchronous Unbuffered (Unregistered)
Speed: 3200 MT/s
Manufacturer: Unknown
Serial Number: 00000000
Asset Tag: Not Specified
Part Number: CMW32GX4M2E3200C16
Rank: 2
Configured Memory Speed: 3200 MT/s
Minimum Voltage: Unknown
Maximum Voltage: Unknown
Configured Voltage: 1.2 V
Memory Technology: DRAM
Memory Operating Mode Capability: Volatile memory
Firmware Version: Unknown
Module Manufacturer ID: Bank 3, Hex 0x9E
Module Product ID: Unknown
Memory Subsystem Controller Manufacturer ID: Unknown
Memory Subsystem Controller Product ID: Unknown
Non-Volatile Size: None
Volatile Size: 16 GB
Cache Size: None
Logical Size: None
Handle 0x0016, DMI type 17, 92 bytes
Memory Device
Array Handle: 0x000B
Error Information Handle: 0x0015
Total Width: 64 bits
Data Width: 64 bits
Size: 8 GB
Form Factor: DIMM
Set: None
Locator: DIMM 1
Bank Locator: P0 CHANNEL A
Type: DDR4
Type Detail: Synchronous Unbuffered (Unregistered)
Speed: 3200 MT/s
Manufacturer: Unknown
Serial Number: E3C4408B
Asset Tag: Not Specified
Part Number: BL8G32C16U4BL.M8FE
Rank: 1
Configured Memory Speed: 3200 MT/s
Minimum Voltage: 1.2 V
Maximum Voltage: 1.2 V
Configured Voltage: 1.2 V
Memory Technology: DRAM
Memory Operating Mode Capability: Volatile memory
Firmware Version: Unknown
Module Manufacturer ID: Bank 6, Hex 0x9B
Module Product ID: Unknown
Memory Subsystem Controller Manufacturer ID: Unknown
Memory Subsystem Controller Product ID: Unknown
Non-Volatile Size: None
Volatile Size: 8 GB
Cache Size: None
Logical Size: None
Handle 0x0019, DMI type 17, 92 bytes
Memory Device
Array Handle: 0x000B
Error Information Handle: 0x0018
Total Width: 64 bits
Data Width: 64 bits
Size: 16 GB
Form Factor: DIMM
Set: None
Locator: DIMM 0
Bank Locator: P0 CHANNEL B
Type: DDR4
Type Detail: Synchronous Unbuffered (Unregistered)
Speed: 3200 MT/s
Manufacturer: Unknown
Serial Number: 00000000
Asset Tag: Not Specified
Part Number: CMW32GX4M2E3200C16
Rank: 2
Configured Memory Speed: 3200 MT/s
Minimum Voltage: Unknown
Maximum Voltage: Unknown
Configured Voltage: 1.2 V
Memory Technology: DRAM
Memory Operating Mode Capability: Volatile memory
Firmware Version: Unknown
Module Manufacturer ID: Bank 3, Hex 0x9E
Module Product ID: Unknown
Memory Subsystem Controller Manufacturer ID: Unknown
Memory Subsystem Controller Product ID: Unknown
Non-Volatile Size: None
Volatile Size: 16 GB
Cache Size: None
Logical Size: None
Handle 0x001C, DMI type 17, 92 bytes
Memory Device
Array Handle: 0x000B
Error Information Handle: 0x001B
Total Width: 64 bits
Data Width: 64 bits
Size: 8 GB
Form Factor: DIMM
Set: None
Locator: DIMM 1
Bank Locator: P0 CHANNEL B
Type: DDR4
Type Detail: Synchronous Unbuffered (Unregistered)
Speed: 3200 MT/s
Manufacturer: Unknown
Serial Number: E3C44087
Asset Tag: Not Specified
Part Number: BL8G32C16U4BL.M8FE
Rank: 1
Configured Memory Speed: 3200 MT/s
Minimum Voltage: 1.2 V
Maximum Voltage: 1.2 V
Configured Voltage: 1.2 V
Memory Technology: DRAM
Memory Operating Mode Capability: Volatile memory
Firmware Version: Unknown
Module Manufacturer ID: Bank 6, Hex 0x9B
Module Product ID: Unknown
Memory Subsystem Controller Manufacturer ID: Unknown
Memory Subsystem Controller Product ID: Unknown
Non-Volatile Size: None
Volatile Size: 8 GB
Cache Size: None
Logical Size: None
lsblk:NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS
loop0 7:0 0 118,5M 1 loop /snap/iptvnator/92
loop1 7:1 0 48,1M 1 loop /snap/snapd/25935
loop2 7:2 0 50,9M 1 loop /snap/snapd/25577
loop3 7:3 0 4K 1 loop /snap/bare/5
loop4 7:4 0 91,7M 1 loop /snap/gtk-common-themes/1535
loop5 7:5 0 55,5M 1 loop /snap/core18/2976
loop6 7:6 0 164,8M 1 loop /snap/gnome-3-28-1804/198
loop7 7:7 0 0B 0 loop
sda 8:0 0 447,1G 0 disk
└─sda1 8:1 0 447,1G 0 part
sdb 8:16 1 0B 0 disk
sdc 8:32 1 0B 0 disk
sdd 8:48 1 0B 0 disk
sde 8:64 1 0B 0 disk
nvme0n1 259:0 0 465,8G 0 disk
├─nvme0n1p1 259:1 0 976M 0 part /boot/efi
├─nvme0n1p2 259:2 0 440,8G 0 part /
└─nvme0n1p3 259:3 0 24G 0 part [SWAP]
nvme1n1 259:4 0 465,8G 0 disk
├─nvme1n1p1 259:5 0 50M 0 part
├─nvme1n1p2 259:6 0 464,3G 0 part
├─nvme1n1p3 259:7 0 808M 0 part
├─nvme1n1p4 259:8 0 100M 0 part
└─nvme1n1p5 259:9 0 522M 0 part
lscpu:Architecture : x86_64
Mode(s) opératoire(s) des processeurs : 32-bit, 64-bit
Tailles des adresses: 48 bits physical, 48 bits virtual
Boutisme : Little Endian
Processeur(s) : 24
Liste de processeur(s) en ligne : 0-23
Identifiant constructeur : AuthenticAMD
Nom de modèle : AMD Ryzen 9 5900X 12-Core Processor
Famille de processeur : 25
Modèle : 33
Thread(s) par cœur : 2
Cœur(s) par socket : 12
Socket(s) : 1
Révision : 2
Accroissement de fréquence : activé
multiplication des MHz du/des CPU(s) : 73%
Vitesse maximale du processeur en MHz : 4951,0000
Vitesse minimale du processeur en MHz : 550,0000
BogoMIPS : 7399,98
Drapeaux : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local user_shstk clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm debug_swap
Virtualisation : AMD-V
Cache L1d : 384 KiB (12 instances)
Cache L1i : 384 KiB (12 instances)
Cache L2 : 6 MiB (12 instances)
Cache L3 : 64 MiB (2 instances)
Nœud(s) NUMA : 1
Nœud NUMA 0 de processeur(s) : 0-23
Vulnérabilité Gather data sampling : Not affected
Vulnérabilité Indirect target selection : Not affected
Vulnérabilité Itlb multihit : Not affected
Vulnérabilité L1tf : Not affected
Vulnérabilité Mds : Not affected
Vulnérabilité Meltdown : Not affected
Vulnérabilité Mmio stale data : Not affected
Vulnérabilité Reg file data sampling : Not affected
Vulnérabilité Retbleed : Not affected
Vulnérabilité Spec rstack overflow : Mitigation; Safe RET
Vulnérabilité Spec store bypass : Mitigation; Speculative Store Bypass disabled via prctl
Vulnérabilité Spectre v1 : Mitigation; usercopy/swapgs barriers and __user pointer sanitization
Vulnérabilité Spectre v2 : Mitigation; Retpolines; IBPB conditional; IBRS_FW; STIBP always-on; RSB filling; PBRSB-eIBRS Not affected; BHI Not affected
Vulnérabilité Srbds : Not affected
Vulnérabilité Tsa : Vulnerable: Clear CPU buffers attempted, no microcode
Vulnérabilité Tsx async abort : Not affected
Vulnérabilité Vmscape : Mitigation; IBPB before exit to userspace
]}
[DEBUG] [3/6] Benchmark CPU démarré
[DEBUG] Exec: sysbench [cpu --threads=1 --time=10 run]
[DEBUG] Exec: nproc []
[DEBUG] Exec: sysbench [cpu --threads=24 --time=10 run]
[DEBUG] [3/6] Résultat CPU: {EventsPerSec:36782.985 EventsPerSecSingle:5620.74 EventsPerSecMulti:67945.23 DurationSec:20.0005 Score:36782.985 ScoreSingle:5620.74 ScoreMulti:67945.23}
[DEBUG] [3/6] Benchmark mémoire démarré
[DEBUG] Exec: sysbench [memory --memory-block-size=1K --memory-total-size=1G run]
[DEBUG] [3/6] Résultat mémoire: {Throughput:8463.8 Score:8463.8}
[DEBUG] [3/6] Benchmark disque démarré
[DEBUG] [3/6] Bench disque cible : /var/tmp/bench-client (mount=/ fstype=ext4 source=/dev/nvme0n1p2)
[DEBUG] Exec: fio [--name=bench --ioengine=libaio --rw=randrw --bs=4k --direct=1 --size=500M --numjobs=1 --runtime=30 --time_based --output-format=json --filename=/var/tmp/bench-client/bench-1768162381764810704.fio]
[DEBUG] [3/6] Résultat disque: {ReadMBs:39.2978515625 WriteMBs:39.2802734375 IOPSRead:10060.264658 IOPSWrite:10055.79814 LatencyMs:0.075323191814 Score:39.2890625}
[DEBUG] [3/6] Benchmark réseau démarré
[DEBUG] Exec: iperf3 [-c 10.0.0.50 -p 5201 -J -t 10]
[DEBUG] Exec: ping [-c 1 -W 1 10.0.0.50]
[DEBUG] [3/6] Résultat réseau: {Upload:942.187078628316 Download:939.1861497518194 PingMs:0.232 JitterMs:<nil> PacketLossPct:<nil> Score:940.6866141900678}
[DEBUG] Résultats des benchmarks : {CPU:{EventsPerSec:36782.985 EventsPerSecSingle:5620.74 EventsPerSecMulti:67945.23 DurationSec:20.0005 Score:36782.985 ScoreSingle:5620.74 ScoreMulti:67945.23} Memory:{Throughput:8463.8 Score:8463.8} Disk:{ReadMBs:39.2978515625 WriteMBs:39.2802734375 IOPSRead:10060.264658 IOPSWrite:10055.79814 LatencyMs:0.075323191814 Score:39.2890625} Network:{Upload:942.187078628316 Download:939.1861497518194 PingMs:0.232 JitterMs:<nil> PacketLossPct:<nil> Score:940.6866141900678} GPU:{GLMark2Score:<nil> Score:<nil>} GlobalScore:0}
[DEBUG] Poids benchmarks : map[cpu:0.4 disk:0.2 gpu:0.1 memory:0.2 network:0.1]
[DEBUG] Scores normalisés : cpu=1839.15 mem=84.64 disk=3.93 net=94.07
[DEBUG] Score global calculé : 76277.99
[DEBUG] Payload JSON (49174 octets) : {
"device_identifier": "aorus",
"bench_script_version": "1.6.6",
"bench_client_version": "1.0.1",
"hardware": {
"cpu": {
"vendor": "AuthenticAMD",
"model": "AMD Ryzen 9 5900X 12-Core Processor",
"cores": 12,
"threads": 24,
"base_freq_ghz": 4.951,
"max_freq_ghz": 4.951,
"cache_l1_kb": 64,
"cache_l2_kb": 512,
"cache_l3_kb": 32768,
"flags": [
"fpu",
"vme",
"de",
"pse",
"tsc",
"msr",
"pae",
"mce",
"cx8",
"apic",
"sep",
"mtrr",
"pge",
"mca",
"cmov",
"pat",
"pse36",
"clflush",
"mmx",
"fxsr",
"sse",
"sse2",
"ht",
"syscall",
"nx",
"mmxext",
"fxsr_opt",
"pdpe1gb",
"rdtscp",
"lm",
"constant_tsc",
"rep_good",
"nopl",
"xtopology",
"nonstop_tsc",
"cpuid",
"extd_apicid",
"aperfmperf",
"rapl",
"pni",
"pclmulqdq",
"monitor",
"ssse3",
"fma",
"cx16",
"sse4_1",
"sse4_2",
"x2apic",
"movbe",
"popcnt",
"aes",
"xsave",
"avx",
"f16c",
"rdrand",
"lahf_lm",
"cmp_legacy",
"svm",
"extapic",
"cr8_legacy",
"abm",
"sse4a",
"misalignsse",
"3dnowprefetch",
"osvw",
"ibs",
"skinit",
"wdt",
"tce",
"topoext",
"perfctr_core",
"perfctr_nb",
"bpext",
"perfctr_llc",
"mwaitx",
"cpb",
"cat_l3",
"cdp_l3",
"hw_pstate",
"ssbd",
"mba",
"ibrs",
"ibpb",
"stibp",
"vmmcall",
"fsgsbase",
"bmi1",
"avx2",
"smep",
"bmi2",
"erms",
"invpcid",
"cqm",
"rdt_a",
"rdseed",
"adx",
"smap",
"clflushopt",
"clwb",
"sha_ni",
"xsaveopt",
"xsavec",
"xgetbv1",
"xsaves",
"cqm_llc",
"cqm_occup_llc",
"cqm_mbm_total",
"cqm_mbm_local",
"user_shstk",
"clzero",
"irperf",
"xsaveerptr",
"rdpru",
"wbnoinvd",
"arat",
"npt",
"lbrv",
"svm_lock",
"nrip_save",
"tsc_scale",
"vmcb_clean",
"flushbyasid",
"decodeassists",
"pausefilter",
"pfthreshold",
"avic",
"v_vmsave_vmload",
"vgif",
"v_spec_ctrl",
"umip",
"pku",
"ospke",
"vaes",
"vpclmulqdq",
"rdpid",
"overflow_recov",
"succor",
"smca",
"fsrm",
"debug_swap"
],
"microarchitecture": "Zen",
"tdp_w": null
},
"ram": {
"total_mb": 48096,
"used_mb": 17023,
"free_mb": 31073,
"shared_mb": 990,
"slots_total": 10,
"slots_used": 4,
"max_capacity_mb": 48096,
"ecc": false,
"layout": [
{
"slot": "DIMM 0",
"size_mb": 16384,
"type": "DDR4",
"speed_mhz": 3200,
"configured_speed_mhz": 3200,
"form_factor": "DIMM",
"type_detail": "Synchronous Unbuffered (Unregistered)",
"rank": "2",
"manufacturer": "Unknown",
"part_number": "CMW32GX4M2E3200C16 "
},
{
"slot": "DIMM 1",
"size_mb": 8192,
"type": "DDR4",
"speed_mhz": 3200,
"configured_speed_mhz": 3200,
"form_factor": "DIMM",
"type_detail": "Synchronous Unbuffered (Unregistered)",
"rank": "1",
"manufacturer": "Unknown",
"part_number": "BL8G32C16U4BL.M8FE"
},
{
"slot": "DIMM 0",
"size_mb": 16384,
"type": "DDR4",
"speed_mhz": 3200,
"configured_speed_mhz": 3200,
"form_factor": "DIMM",
"type_detail": "Synchronous Unbuffered (Unregistered)",
"rank": "2",
"manufacturer": "Unknown",
"part_number": "CMW32GX4M2E3200C16 "
},
{
"slot": "DIMM 1",
"size_mb": 8192,
"type": "DDR4",
"speed_mhz": 3200,
"configured_speed_mhz": 3200,
"form_factor": "DIMM",
"type_detail": "Synchronous Unbuffered (Unregistered)",
"rank": "1",
"manufacturer": "Unknown",
"part_number": "BL8G32C16U4BL.M8FE"
}
]
},
"gpu": {
"vendor": "NVIDIA",
"model": "NVIDIA GeForce RTX 3060",
"driver_version": "550.163.01",
"memory_dedicated_mb": 12288,
"memory_shared_mb": null,
"api_support": null
},
"storage": {
"devices": [
{
"name": "/dev/nvme0n1",
"type": "ssd",
"interface": "nvme",
"capacity_gb": 465.7617416381836,
"vendor": "CT500P2SSD8",
"model": "CT500P2SSD8",
"serial": "2138E5D60DD8",
"smart_health": "PASSED",
"temperature_c": 34
},
{
"name": "/dev/nvme1n1",
"type": "",
"interface": "nvme",
"capacity_gb": 465.7617416381836,
"vendor": "CT500P2SSD8",
"model": "CT500P2SSD8",
"serial": "2108E4FD258D",
"smart_health": "PASSED",
"temperature_c": 33
},
{
"name": "/dev/sda",
"type": "",
"interface": "sata",
"capacity_gb": 447.13167572021484,
"vendor": "ATA ",
"model": "KINGSTON SUV500480G",
"serial": "50026B768226A365",
"smart_health": "PASSED",
"temperature_c": 25
},
{
"name": "/dev/sdb",
"type": "",
"interface": "usb",
"capacity_gb": 0,
"vendor": "Generic-",
"model": "Compact Flash",
"serial": "058F63626479",
"smart_health": "UNAVAILABLE",
"temperature_c": 0
},
{
"name": "/dev/sdc",
"type": "",
"interface": "usb",
"capacity_gb": 0,
"vendor": "Generic-",
"model": "SD/MMC",
"serial": "058F63626479",
"smart_health": "UNAVAILABLE",
"temperature_c": 0
},
{
"name": "/dev/sdd",
"type": "",
"interface": "usb",
"capacity_gb": 0,
"vendor": "Generic-",
"model": "MS/MS-PRO",
"serial": "058F63626479",
"smart_health": "UNAVAILABLE",
"temperature_c": 0
},
{
"name": "/dev/sde",
"type": "",
"interface": "usb",
"capacity_gb": 0,
"vendor": "Generic-",
"model": "xD-Picture",
"serial": "058F63626479",
"smart_health": "UNAVAILABLE",
"temperature_c": 0
}
],
"partitions": [
{
"name": "/dev/nvme0n1p2",
"mount_point": "/",
"fs_type": "ext4",
"total_gb": 432.80120849609375,
"used_gb": 349.0585708618164,
"free_gb": 61.687461853027344
},
{
"name": "/dev/nvme0n1p1",
"mount_point": "/boot/efi",
"fs_type": "vfat",
"total_gb": 0.9512481689453125,
"used_gb": 0.008571624755859375,
"free_gb": 0.9426765441894531
}
]
},
"pci_devices": [
{
"slot": "00:00.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse Root Complex"
},
{
"slot": "00:00.2",
"class": "IOMMU",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse IOMMU"
},
{
"slot": "00:01.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:01.1",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse GPP Bridge"
},
{
"slot": "00:01.3",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse GPP Bridge"
},
{
"slot": "00:02.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:03.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:03.1",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse GPP Bridge"
},
{
"slot": "00:04.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:05.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:07.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:07.1",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]"
},
{
"slot": "00:08.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:08.1",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]"
},
{
"slot": "00:14.0",
"class": "SMBus",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "FCH SMBus Controller"
},
{
"slot": "00:14.3",
"class": "ISA bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "FCH LPC Bridge"
},
{
"slot": "00:18.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 0"
},
{
"slot": "00:18.1",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 1"
},
{
"slot": "00:18.2",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 2"
},
{
"slot": "00:18.3",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 3"
},
{
"slot": "00:18.4",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 4"
},
{
"slot": "00:18.5",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 5"
},
{
"slot": "00:18.6",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 6"
},
{
"slot": "00:18.7",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 7"
},
{
"slot": "01:00.0",
"class": "Non-Volatile memory controller",
"vendor": "Micron/Crucial Technology",
"device": "P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)"
},
{
"slot": "02:00.0",
"class": "USB controller",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset USB 3.1 xHCI Compliant Host Controller"
},
{
"slot": "02:00.1",
"class": "SATA controller",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset SATA Controller"
},
{
"slot": "02:00.2",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset PCIe Bridge"
},
{
"slot": "03:00.0",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset PCIe Port"
},
{
"slot": "03:01.0",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset PCIe Port"
},
{
"slot": "03:04.0",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset PCIe Port"
},
{
"slot": "03:08.0",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset PCIe Port"
},
{
"slot": "04:00.0",
"class": "Ethernet controller",
"vendor": "Realtek Semiconductor Co., Ltd.",
"device": "RTL8111/8168/8211/8411 PCI Express Gigabit Ethernet Controller"
},
{
"slot": "07:00.0",
"class": "Non-Volatile memory controller",
"vendor": "Micron/Crucial Technology",
"device": "P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)"
},
{
"slot": "08:00.0",
"class": "VGA compatible controller",
"vendor": "NVIDIA Corporation",
"device": "GA106 [GeForce RTX 3060 Lite Hash Rate]"
},
{
"slot": "08:00.1",
"class": "Audio device",
"vendor": "NVIDIA Corporation",
"device": "GA106 High Definition Audio Controller"
},
{
"slot": "09:00.0",
"class": "Non-Essential Instrumentation [1300]",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Function"
},
{
"slot": "0a:00.0",
"class": "Non-Essential Instrumentation [1300]",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse Reserved SPP"
},
{
"slot": "0a:00.1",
"class": "Encryption controller",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse Cryptographic Coprocessor PSPCPP"
},
{
"slot": "0a:00.3",
"class": "USB controller",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse USB 3.0 Host Controller"
},
{
"slot": "0a:00.4",
"class": "Audio device",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse HD Audio Controller"
}
],
"usb_devices": [
{
"bus": "001",
"device": "001",
"vendor_id": "1d6b",
"product_id": "0002",
"name": "Linux Foundation 2.0 root hub"
},
{
"bus": "001",
"device": "002",
"vendor_id": "058f",
"product_id": "6362",
"name": "Alcor Micro Corp. Flash Card Reader/Writer"
},
{
"bus": "002",
"device": "001",
"vendor_id": "1d6b",
"product_id": "0003",
"name": "Linux Foundation 3.0 root hub"
},
{
"bus": "003",
"device": "001",
"vendor_id": "1d6b",
"product_id": "0002",
"name": "Linux Foundation 2.0 root hub"
},
{
"bus": "003",
"device": "003",
"vendor_id": "046d",
"product_id": "c52b",
"name": "Logitech, Inc. Unifying Receiver"
},
{
"bus": "003",
"device": "004",
"vendor_id": "0bda",
"product_id": "b711",
"name": "Realtek Semiconductor Corp. RTL8188GU 802.11n WLAN Adapter (After Modeswitch)"
},
{
"bus": "004",
"device": "001",
"vendor_id": "1d6b",
"product_id": "0003",
"name": "Linux Foundation 3.0 root hub"
}
],
"network_shares": [],
"network": {
"interfaces": [
{
"name": "eno1",
"type": "ethernet",
"mac": "18:c0:4d:b5:65:74",
"ip": "10.0.1.109",
"speed_mbps": 1000,
"driver": "r8169",
"ssid": "",
"wake_on_lan": false
},
{
"name": "wlxe84e06a6c1fc",
"type": "wifi",
"mac": "02:39:8c:6f:aa:d3",
"ip": "",
"speed_mbps": null,
"driver": "rtl8xxxu",
"ssid": "",
"wake_on_lan": false
}
]
},
"motherboard": {
"vendor": "Gigabyte Technology Co., Ltd.",
"model": "B450 AORUS ELITE",
"bios_vendor": "American Megatrends International, LLC.",
"bios_version": "F65e",
"bios_date": "09/20/2023"
},
"os": {
"name": "Debian GNU/Linux",
"version": "13 (trixie)",
"kernel_version": "6.12.57+deb13-amd64",
"architecture": "x86_64",
"session_type": "",
"display_server": "",
"screen_resolution": "5560 x 1920",
"last_boot_time": "démarrage système 2026-01-11 09:11",
"uptime_seconds": 43249.4,
"battery_percentage": null,
"battery_status": "",
"battery_health": "",
"hostname": "aorus",
"virtualization_type": "kvm-host",
"desktop_environment": "GNOME"
},
"sensors": {
"cpu_temp_c": null,
"disk_temps_c": {
"nvme-pci-0100:Composite": 33.85,
"nvme-pci-0700:Composite": 31.85
},
"sensors": [
{
"chip": "k10temp-pci-00c3",
"name": "Tctl",
"type": "temperature",
"value": 44.5,
"unit": "°C",
"alarm": false
},
{
"chip": "k10temp-pci-00c3",
"name": "Tccd1",
"type": "temperature",
"value": 35,
"unit": "°C",
"alarm": false
},
{
"chip": "k10temp-pci-00c3",
"name": "Tccd2",
"type": "temperature",
"value": 30,
"unit": "°C",
"alarm": false
},
{
"chip": "nvme-pci-0100",
"name": "Composite",
"type": "temperature",
"value": 33.85,
"unit": "°C",
"alarm": false
},
{
"chip": "nvme-pci-0700",
"name": "Composite",
"type": "temperature",
"value": 31.85,
"unit": "°C",
"alarm": false
},
{
"chip": "acpitz-acpi-0",
"name": "temp1",
"type": "temperature",
"value": 16.8,
"unit": "°C",
"alarm": false
}
]
},
"audio": {
"hardware": {
"pci_audio_devices": [
"08:00.1 Audio device: NVIDIA Corporation GA106 High Definition Audio Controller (rev a1)",
"0a:00.4 Audio device: Advanced Micro Devices, Inc. [AMD] Starship/Matisse HD Audio Controller"
],
"alsa_playback": "**** Liste des périphériques matériels PLAYBACK ****\ncarte 0 : NVidia [HDA NVidia], périphérique 3 : HDMI 0 [LG ULTRAWIDE]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\ncarte 0 : NVidia [HDA NVidia], périphérique 7 : HDMI 1 [K243Y]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\ncarte 0 : NVidia [HDA NVidia], périphérique 8 : HDMI 2 [HDMI 2]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\ncarte 0 : NVidia [HDA NVidia], périphérique 9 : HDMI 3 [HDMI 3]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\ncarte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]\n Sous-périphériques : 0/1\n Sous-périphérique #0 : subdevice #0\ncarte 1 : Generic [HD-Audio Generic], périphérique 1 : ALC892 Digital [ALC892 Digital]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\n",
"alsa_capture": "**** Liste des périphériques matériels CAPTURE ****\ncarte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\ncarte 1 : Generic [HD-Audio Generic], périphérique 2 : ALC892 Alt Analog [ALC892 Alt Analog]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\n",
"pcm_devices": [
"null",
"Discard all samples (playback) or generate zero samples (capture)",
"pipewire",
"PipeWire Sound Server",
"default",
"Default ALSA Output (currently PipeWire Media Server)",
"hw:CARD=NVidia,DEV=3",
"HDA NVidia, LG ULTRAWIDE",
"Direct hardware device without any conversions",
"hw:CARD=NVidia,DEV=7",
"HDA NVidia, K243Y",
"Direct hardware device without any conversions",
"hw:CARD=NVidia,DEV=8",
"HDA NVidia, HDMI 2",
"Direct hardware device without any conversions",
"hw:CARD=NVidia,DEV=9",
"HDA NVidia, HDMI 3",
"Direct hardware device without any conversions",
"plughw:CARD=NVidia,DEV=3",
"HDA NVidia, LG ULTRAWIDE",
"Hardware device with all software conversions",
"plughw:CARD=NVidia,DEV=7",
"HDA NVidia, K243Y",
"Hardware device with all software conversions",
"plughw:CARD=NVidia,DEV=8",
"HDA NVidia, HDMI 2",
"Hardware device with all software conversions",
"plughw:CARD=NVidia,DEV=9",
"HDA NVidia, HDMI 3",
"Hardware device with all software conversions",
"hdmi:CARD=NVidia,DEV=0",
"HDA NVidia, LG ULTRAWIDE",
"HDMI Audio Output",
"hdmi:CARD=NVidia,DEV=1",
"HDA NVidia, K243Y",
"HDMI Audio Output",
"hdmi:CARD=NVidia,DEV=2",
"HDA NVidia, HDMI 2",
"HDMI Audio Output",
"hdmi:CARD=NVidia,DEV=3",
"HDA NVidia, HDMI 3",
"HDMI Audio Output",
"dmix:CARD=NVidia,DEV=3",
"HDA NVidia, LG ULTRAWIDE",
"Direct sample mixing device",
"dmix:CARD=NVidia,DEV=7",
"HDA NVidia, K243Y",
"Direct sample mixing device",
"dmix:CARD=NVidia,DEV=8",
"HDA NVidia, HDMI 2",
"Direct sample mixing device",
"dmix:CARD=NVidia,DEV=9",
"HDA NVidia, HDMI 3",
"Direct sample mixing device",
"hw:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"Direct hardware device without any conversions",
"hw:CARD=Generic,DEV=1",
"HD-Audio Generic, ALC892 Digital",
"Direct hardware device without any conversions",
"plughw:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"Hardware device with all software conversions",
"plughw:CARD=Generic,DEV=1",
"HD-Audio Generic, ALC892 Digital",
"Hardware device with all software conversions",
"sysdefault:CARD=Generic",
"HD-Audio Generic, ALC892 Analog",
"Default Audio Device",
"front:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"Front output / input",
"surround21:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"2.1 Surround output to Front and Subwoofer speakers",
"surround40:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"4.0 Surround output to Front and Rear speakers",
"surround41:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"4.1 Surround output to Front, Rear and Subwoofer speakers",
"surround50:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"5.0 Surround output to Front, Center and Rear speakers",
"surround51:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"5.1 Surround output to Front, Center, Rear and Subwoofer speakers",
"surround71:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"7.1 Surround output to Front, Center, Side, Rear and Woofer speakers",
"iec958:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Digital",
"IEC958 (S/PDIF) Digital Audio Output",
"dmix:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"Direct sample mixing device",
"dmix:CARD=Generic,DEV=1",
"HD-Audio Generic, ALC892 Digital",
"Direct sample mixing device"
]
},
"software": {
"backend": "",
"server_name": "",
"server_version": "",
"default_sink": null,
"default_source": null,
"sinks": null,
"sources": null
}
},
"raw_info": {
"debug": "active",
"dmidecode": "# dmidecode 3.6\nGetting SMBIOS data from sysfs.\nSMBIOS 3.3.0 present.\n\nHandle 0x0000, DMI type 0, 26 bytes\nBIOS Information\n\tVendor: American Megatrends International, LLC.\n\tVersion: F65e\n\tRelease Date: 09/20/2023\n\tAddress: 0xF0000\n\tRuntime Size: 64 kB\n\tROM Size: 16 MB\n\tCharacteristics:\n\t\tPCI is supported\n\t\tBIOS is upgradeable\n\t\tBIOS shadowing is allowed\n\t\tBoot from CD is supported\n\t\tSelectable boot is supported\n\t\tBIOS ROM is socketed\n\t\tEDD is supported\n\t\tJapanese floppy for NEC 9800 1.2 MB is supported (int 13h)\n\t\tJapanese floppy for Toshiba 1.2 MB is supported (int 13h)\n\t\t5.25\"/360 kB floppy services are supported (int 13h)\n\t\t5.25\"/1.2 MB floppy services are supported (int 13h)\n\t\t3.5\"/720 kB floppy services are supported (int 13h)\n\t\t3.5\"/2.88 MB floppy services are supported (int 13h)\n\t\tPrint screen service is supported (int 5h)\n\t\tSerial services are supported (int 14h)\n\t\tPrinter services are supported (int 17h)\n\t\tCGA/mono video services are supported (int 10h)\n\t\tUSB legacy is supported\n\t\tBIOS boot specification is supported\n\t\tTargeted content distribution is supported\n\t\tUEFI is supported\n\tBIOS Revision: 5.17\n\nHandle 0x0001, DMI type 1, 27 bytes\nSystem Information\n\tManufacturer: Gigabyte Technology Co., Ltd.\n\tProduct Name: B450 AORUS ELITE\n\tVersion: Default string\n\tSerial Number: Default string\n\tUUID: 03c00218-044d-05b5-6506-740700080009\n\tWake-up Type: Power Switch\n\tSKU Number: Default string\n\tFamily: B450 MB\n\nHandle 0x0002, DMI type 2, 15 bytes\nBase Board Information\n\tManufacturer: Gigabyte Technology Co., Ltd.\n\tProduct Name: B450 AORUS ELITE\n\tVersion: Default string\n\tSerial Number: Default string\n\tAsset Tag: Default string\n\tFeatures:\n\t\tBoard is a hosting board\n\t\tBoard is replaceable\n\tLocation In Chassis: Default string\n\tChassis Handle: 0x0003\n\tType: Motherboard\n\tContained Object Handles: 0\n\nHandle 0x000B, DMI type 16, 23 bytes\nPhysical Memory Array\n\tLocation: System Board Or Motherboard\n\tUse: System Memory\n\tError Correction Type: None\n\tMaximum Capacity: 128 GB\n\tError Information Handle: 0x000A\n\tNumber Of Devices: 4\n\nHandle 0x0013, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0012\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 16 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 0\n\tBank Locator: P0 CHANNEL A\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: 00000000\n\tAsset Tag: Not Specified\n\tPart Number: CMW32GX4M2E3200C16 \n\tRank: 2\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: Unknown\n\tMaximum Voltage: Unknown\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 3, Hex 0x9E\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 16 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x0016, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0015\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 8 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 1\n\tBank Locator: P0 CHANNEL A\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: E3C4408B\n\tAsset Tag: Not Specified\n\tPart Number: BL8G32C16U4BL.M8FE\n\tRank: 1\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: 1.2 V\n\tMaximum Voltage: 1.2 V\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 6, Hex 0x9B\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 8 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x0019, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0018\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 16 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 0\n\tBank Locator: P0 CHANNEL B\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: 00000000\n\tAsset Tag: Not Specified\n\tPart Number: CMW32GX4M2E3200C16 \n\tRank: 2\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: Unknown\n\tMaximum Voltage: Unknown\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 3, Hex 0x9E\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 16 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x001C, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x001B\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 8 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 1\n\tBank Locator: P0 CHANNEL B\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: E3C44087\n\tAsset Tag: Not Specified\n\tPart Number: BL8G32C16U4BL.M8FE\n\tRank: 1\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: 1.2 V\n\tMaximum Voltage: 1.2 V\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 6, Hex 0x9B\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 8 GB\n\tCache Size: None\n\tLogical Size: None\n\n",
"lsblk": "NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS\nloop0 7:0 0 118,5M 1 loop /snap/iptvnator/92\nloop1 7:1 0 48,1M 1 loop /snap/snapd/25935\nloop2 7:2 0 50,9M 1 loop /snap/snapd/25577\nloop3 7:3 0 4K 1 loop /snap/bare/5\nloop4 7:4 0 91,7M 1 loop /snap/gtk-common-themes/1535\nloop5 7:5 0 55,5M 1 loop /snap/core18/2976\nloop6 7:6 0 164,8M 1 loop /snap/gnome-3-28-1804/198\nloop7 7:7 0 0B 0 loop \nsda 8:0 0 447,1G 0 disk \n└─sda1 8:1 0 447,1G 0 part \nsdb 8:16 1 0B 0 disk \nsdc 8:32 1 0B 0 disk \nsdd 8:48 1 0B 0 disk \nsde 8:64 1 0B 0 disk \nnvme0n1 259:0 0 465,8G 0 disk \n├─nvme0n1p1 259:1 0 976M 0 part /boot/efi\n├─nvme0n1p2 259:2 0 440,8G 0 part /\n└─nvme0n1p3 259:3 0 24G 0 part [SWAP]\nnvme1n1 259:4 0 465,8G 0 disk \n├─nvme1n1p1 259:5 0 50M 0 part \n├─nvme1n1p2 259:6 0 464,3G 0 part \n├─nvme1n1p3 259:7 0 808M 0 part \n├─nvme1n1p4 259:8 0 100M 0 part \n└─nvme1n1p5 259:9 0 522M 0 part \n",
"lscpu": "Architecture : x86_64\nMode(s) opératoire(s) des processeurs : 32-bit, 64-bit\nTailles des adresses: 48 bits physical, 48 bits virtual\nBoutisme : Little Endian\nProcesseur(s) : 24\nListe de processeur(s) en ligne : 0-23\nIdentifiant constructeur : AuthenticAMD\nNom de modèle : AMD Ryzen 9 5900X 12-Core Processor\nFamille de processeur : 25\nModèle : 33\nThread(s) par cœur : 2\nCœur(s) par socket : 12\nSocket(s) : 1\nRévision : 2\nAccroissement de fréquence : activé\nmultiplication des MHz du/des CPU(s) : 73%\nVitesse maximale du processeur en MHz : 4951,0000\nVitesse minimale du processeur en MHz : 550,0000\nBogoMIPS : 7399,98\nDrapeaux : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local user_shstk clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm debug_swap\nVirtualisation : AMD-V\nCache L1d : 384 KiB (12 instances)\nCache L1i : 384 KiB (12 instances)\nCache L2 : 6 MiB (12 instances)\nCache L3 : 64 MiB (2 instances)\nNœud(s) NUMA : 1\nNœud NUMA 0 de processeur(s) : 0-23\nVulnérabilité Gather data sampling : Not affected\nVulnérabilité Indirect target selection : Not affected\nVulnérabilité Itlb multihit : Not affected\nVulnérabilité L1tf : Not affected\nVulnérabilité Mds : Not affected\nVulnérabilité Meltdown : Not affected\nVulnérabilité Mmio stale data : Not affected\nVulnérabilité Reg file data sampling : Not affected\nVulnérabilité Retbleed : Not affected\nVulnérabilité Spec rstack overflow : Mitigation; Safe RET\nVulnérabilité Spec store bypass : Mitigation; Speculative Store Bypass disabled via prctl\nVulnérabilité Spectre v1 : Mitigation; usercopy/swapgs barriers and __user pointer sanitization\nVulnérabilité Spectre v2 : Mitigation; Retpolines; IBPB conditional; IBRS_FW; STIBP always-on; RSB filling; PBRSB-eIBRS Not affected; BHI Not affected\nVulnérabilité Srbds : Not affected\nVulnérabilité Tsa : Vulnerable: Clear CPU buffers attempted, no microcode\nVulnérabilité Tsx async abort : Not affected\nVulnérabilité Vmscape : Mitigation; IBPB before exit to userspace\n"
}
},
"results": {
"cpu": {
"events_per_sec": 36782.985,
"events_per_sec_single": 5620.74,
"events_per_sec_multi": 67945.23,
"duration_s": 20.0005,
"score": 36782.985,
"score_single": 5620.74,
"score_multi": 67945.23
},
"memory": {
"throughput_mib_s": 8463.8,
"score": 8463.8
},
"disk": {
"read_mb_s": 39.2978515625,
"write_mb_s": 39.2802734375,
"iops_read": 10060.264658,
"iops_write": 10055.79814,
"latency_ms": 0.075323191814,
"score": 39.2890625
},
"network": {
"upload_mbps": 942.187078628316,
"download_mbps": 939.1861497518194,
"ping_ms": 0.232,
"jitter_ms": null,
"packet_loss_percent": null,
"score": 940.6866141900678
},
"gpu": {
"glmark2_score": null,
"score": null
},
"global_score": 76277.99473919006
},
"raw_info": {
"debug": "active",
"dmidecode": "# dmidecode 3.6\nGetting SMBIOS data from sysfs.\nSMBIOS 3.3.0 present.\n\nHandle 0x0000, DMI type 0, 26 bytes\nBIOS Information\n\tVendor: American Megatrends International, LLC.\n\tVersion: F65e\n\tRelease Date: 09/20/2023\n\tAddress: 0xF0000\n\tRuntime Size: 64 kB\n\tROM Size: 16 MB\n\tCharacteristics:\n\t\tPCI is supported\n\t\tBIOS is upgradeable\n\t\tBIOS shadowing is allowed\n\t\tBoot from CD is supported\n\t\tSelectable boot is supported\n\t\tBIOS ROM is socketed\n\t\tEDD is supported\n\t\tJapanese floppy for NEC 9800 1.2 MB is supported (int 13h)\n\t\tJapanese floppy for Toshiba 1.2 MB is supported (int 13h)\n\t\t5.25\"/360 kB floppy services are supported (int 13h)\n\t\t5.25\"/1.2 MB floppy services are supported (int 13h)\n\t\t3.5\"/720 kB floppy services are supported (int 13h)\n\t\t3.5\"/2.88 MB floppy services are supported (int 13h)\n\t\tPrint screen service is supported (int 5h)\n\t\tSerial services are supported (int 14h)\n\t\tPrinter services are supported (int 17h)\n\t\tCGA/mono video services are supported (int 10h)\n\t\tUSB legacy is supported\n\t\tBIOS boot specification is supported\n\t\tTargeted content distribution is supported\n\t\tUEFI is supported\n\tBIOS Revision: 5.17\n\nHandle 0x0001, DMI type 1, 27 bytes\nSystem Information\n\tManufacturer: Gigabyte Technology Co., Ltd.\n\tProduct Name: B450 AORUS ELITE\n\tVersion: Default string\n\tSerial Number: Default string\n\tUUID: 03c00218-044d-05b5-6506-740700080009\n\tWake-up Type: Power Switch\n\tSKU Number: Default string\n\tFamily: B450 MB\n\nHandle 0x0002, DMI type 2, 15 bytes\nBase Board Information\n\tManufacturer: Gigabyte Technology Co., Ltd.\n\tProduct Name: B450 AORUS ELITE\n\tVersion: Default string\n\tSerial Number: Default string\n\tAsset Tag: Default string\n\tFeatures:\n\t\tBoard is a hosting board\n\t\tBoard is replaceable\n\tLocation In Chassis: Default string\n\tChassis Handle: 0x0003\n\tType: Motherboard\n\tContained Object Handles: 0\n\nHandle 0x000B, DMI type 16, 23 bytes\nPhysical Memory Array\n\tLocation: System Board Or Motherboard\n\tUse: System Memory\n\tError Correction Type: None\n\tMaximum Capacity: 128 GB\n\tError Information Handle: 0x000A\n\tNumber Of Devices: 4\n\nHandle 0x0013, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0012\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 16 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 0\n\tBank Locator: P0 CHANNEL A\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: 00000000\n\tAsset Tag: Not Specified\n\tPart Number: CMW32GX4M2E3200C16 \n\tRank: 2\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: Unknown\n\tMaximum Voltage: Unknown\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 3, Hex 0x9E\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 16 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x0016, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0015\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 8 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 1\n\tBank Locator: P0 CHANNEL A\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: E3C4408B\n\tAsset Tag: Not Specified\n\tPart Number: BL8G32C16U4BL.M8FE\n\tRank: 1\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: 1.2 V\n\tMaximum Voltage: 1.2 V\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 6, Hex 0x9B\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 8 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x0019, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0018\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 16 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 0\n\tBank Locator: P0 CHANNEL B\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: 00000000\n\tAsset Tag: Not Specified\n\tPart Number: CMW32GX4M2E3200C16 \n\tRank: 2\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: Unknown\n\tMaximum Voltage: Unknown\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 3, Hex 0x9E\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 16 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x001C, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x001B\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 8 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 1\n\tBank Locator: P0 CHANNEL B\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: E3C44087\n\tAsset Tag: Not Specified\n\tPart Number: BL8G32C16U4BL.M8FE\n\tRank: 1\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: 1.2 V\n\tMaximum Voltage: 1.2 V\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 6, Hex 0x9B\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 8 GB\n\tCache Size: None\n\tLogical Size: None\n\n",
"lsblk": "NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS\nloop0 7:0 0 118,5M 1 loop /snap/iptvnator/92\nloop1 7:1 0 48,1M 1 loop /snap/snapd/25935\nloop2 7:2 0 50,9M 1 loop /snap/snapd/25577\nloop3 7:3 0 4K 1 loop /snap/bare/5\nloop4 7:4 0 91,7M 1 loop /snap/gtk-common-themes/1535\nloop5 7:5 0 55,5M 1 loop /snap/core18/2976\nloop6 7:6 0 164,8M 1 loop /snap/gnome-3-28-1804/198\nloop7 7:7 0 0B 0 loop \nsda 8:0 0 447,1G 0 disk \n└─sda1 8:1 0 447,1G 0 part \nsdb 8:16 1 0B 0 disk \nsdc 8:32 1 0B 0 disk \nsdd 8:48 1 0B 0 disk \nsde 8:64 1 0B 0 disk \nnvme0n1 259:0 0 465,8G 0 disk \n├─nvme0n1p1 259:1 0 976M 0 part /boot/efi\n├─nvme0n1p2 259:2 0 440,8G 0 part /\n└─nvme0n1p3 259:3 0 24G 0 part [SWAP]\nnvme1n1 259:4 0 465,8G 0 disk \n├─nvme1n1p1 259:5 0 50M 0 part \n├─nvme1n1p2 259:6 0 464,3G 0 part \n├─nvme1n1p3 259:7 0 808M 0 part \n├─nvme1n1p4 259:8 0 100M 0 part \n└─nvme1n1p5 259:9 0 522M 0 part \n",
"lscpu": "Architecture : x86_64\nMode(s) opératoire(s) des processeurs : 32-bit, 64-bit\nTailles des adresses: 48 bits physical, 48 bits virtual\nBoutisme : Little Endian\nProcesseur(s) : 24\nListe de processeur(s) en ligne : 0-23\nIdentifiant constructeur : AuthenticAMD\nNom de modèle : AMD Ryzen 9 5900X 12-Core Processor\nFamille de processeur : 25\nModèle : 33\nThread(s) par cœur : 2\nCœur(s) par socket : 12\nSocket(s) : 1\nRévision : 2\nAccroissement de fréquence : activé\nmultiplication des MHz du/des CPU(s) : 73%\nVitesse maximale du processeur en MHz : 4951,0000\nVitesse minimale du processeur en MHz : 550,0000\nBogoMIPS : 7399,98\nDrapeaux : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local user_shstk clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm debug_swap\nVirtualisation : AMD-V\nCache L1d : 384 KiB (12 instances)\nCache L1i : 384 KiB (12 instances)\nCache L2 : 6 MiB (12 instances)\nCache L3 : 64 MiB (2 instances)\nNœud(s) NUMA : 1\nNœud NUMA 0 de processeur(s) : 0-23\nVulnérabilité Gather data sampling : Not affected\nVulnérabilité Indirect target selection : Not affected\nVulnérabilité Itlb multihit : Not affected\nVulnérabilité L1tf : Not affected\nVulnérabilité Mds : Not affected\nVulnérabilité Meltdown : Not affected\nVulnérabilité Mmio stale data : Not affected\nVulnérabilité Reg file data sampling : Not affected\nVulnérabilité Retbleed : Not affected\nVulnérabilité Spec rstack overflow : Mitigation; Safe RET\nVulnérabilité Spec store bypass : Mitigation; Speculative Store Bypass disabled via prctl\nVulnérabilité Spectre v1 : Mitigation; usercopy/swapgs barriers and __user pointer sanitization\nVulnérabilité Spectre v2 : Mitigation; Retpolines; IBPB conditional; IBRS_FW; STIBP always-on; RSB filling; PBRSB-eIBRS Not affected; BHI Not affected\nVulnérabilité Srbds : Not affected\nVulnérabilité Tsa : Vulnerable: Clear CPU buffers attempted, no microcode\nVulnérabilité Tsx async abort : Not affected\nVulnérabilité Vmscape : Mitigation; IBPB before exit to userspace\n"
}
}
[DEBUG] Payload sauvegardé au format JSON dans bench_payload_last.json (49174 octets)
[DEBUG] Contenu de /home/gilles/Documents/vscode/bis/bench_go/config.yaml :
# bench-client config.yaml
# Objectif: décrire précisément
# - les outils à utiliser (et exigences d'installation)
# - les informations à collecter
# - les benchmarks à exécuter
# - les paramètres (timeouts, limites, endpoints, debug)
#
# Le binaire (Go/Rust) charge ce fichier depuis HTTP(S), valide les bornes, applique des defaults sûrs,
# et peut fallback sur une config locale si indisponible.
config_version: 1
profile: default
backend:
# URL finale du POST (le programme peut aussi accepter server_base_url + path)
url: "http://10.0.0.50:8007/api/benchmark"
# Auth: idéalement injecté par variable d'env sur le client; éviter de mettre le token dans la config distante.
auth:
mode: bearer_env
env_var: "test_hardware_perf"
http:
timeout_s: 15
retries: 2
retry_backoff_s: 2
tls:
verify: true
remote_config:
# Options de cache/ETag si le binaire gère le rafraîchissement
cache_path: "/var/cache/bench-client/config.yaml"
use_etag: true
refresh_max_age_s: 86400
runtime:
# Timeouts globaux de sécurité
max_total_runtime_s: 480
command_timeout_s: 30
command_timeout_overrides:
dmidecode_s: 20
smartctl_s: 10
lsblk_s: 10
sysbench_cpu_s: 120
sysbench_mem_s: 60
fio_s: 120
iperf3_s: 20
temp_dir: "/tmp"
locale: "C"
path_prepend:
- "/usr/sbin"
- "/sbin"
logging:
level: info # trace|debug|info|warn|error
progress: true # affichage étapes (1/N) + items
show_command_lines: false
capture_raw_output: true # remonte dans raw_info (attention taille)
raw_output_max_kb: 5120
save_payload_to_tmp: true
payload_tmp_dir: "/tmp"
payload_filename_prefix: "bench_payload_"
interactive_pause_on_debug: true
payload:
dir: "."
prefix: "bench_payload_"
always_save: true
device_identity:
# device_identifier envoyé au backend
prefer:
- hostname
- machine_id
hostname_command: "hostname"
machine_id_path: "/etc/machine-id"
dependencies:
# Liste des programmes externes (installés par le script shell)
# Le binaire doit pouvoir:
# - détecter présence/version (optionnel)
# - marquer chaque "feature" comme disponible ou non
required_base:
- name: "curl"
purpose: "Téléchargements/diagnostics (souvent côté script)"
- name: "jq"
purpose: "Optionnel: debug/validation (souvent côté script, pas nécessaire au binaire)"
- name: "lscpu"
purpose: "Infos CPU"
- name: "free"
purpose: "Infos mémoire"
- name: "lsblk"
purpose: "Infos stockage/partitions"
- name: "ip"
purpose: "Interfaces réseau, adresses IP"
- name: "bc"
purpose: "Optionnel: calculs (si pas fait en code)"
- name: "dmidecode"
purpose: "Infos BIOS/carte mère/RAM/DMI"
requires_root: true
- name: "smartctl"
package: "smartmontools"
purpose: "Infos disques SMART"
requires_root: true
- name: "ethtool"
purpose: "Vitesse réseau, Wake-on-LAN, driver"
requires_root: true
- name: "lspci"
package: "pciutils"
purpose: "Liste périphériques PCI (GPU/Audio/etc.)"
- name: "lsusb"
package: "usbutils"
purpose: "Liste périphériques USB"
- name: "aplay"
package: "alsa-utils"
purpose: "Inventaire audio ALSA"
- name: "arecord"
package: "alsa-utils"
purpose: "Inventaire capture ALSA"
- name: "pactl"
package: "pulseaudio-utils"
purpose: "Infos audio PulseAudio/PipeWire (si dispo)"
- name: "iw"
package: "iw"
purpose: "SSID + bitrate Wi-Fi"
- name: "loginctl"
package: "systemd"
purpose: "Type de session (x11/wayland/tty)"
- name: "xrandr"
package: "x11-xserver-utils"
purpose: "Résolution écran (X11)"
- name: "xdpyinfo"
package: "x11-utils"
purpose: "Résolution écran (fallback X11)"
- name: "swaymsg"
package: "sway"
purpose: "Résolution écran (Wayland/Sway)"
- name: "nvidia-smi"
package: "nvidia-utils"
purpose: "Infos GPU NVIDIA (si présent)"
- name: "systemd-detect-virt"
package: "systemd"
purpose: "Détection virtualisation/proxmox"
- name: "pveversion"
package: "pve-manager"
purpose: "Détection hôte Proxmox (si présent)"
benchmark_tools:
- name: "sysbench"
purpose: "Bench CPU et mémoire"
- name: "fio"
purpose: "Bench disque"
- name: "iperf3"
purpose: "Bench réseau"
- name: "ping"
package: "iputils-ping"
purpose: "Vérifier accessibilité iperf server"
- name: "nc"
package: "netcat-openbsd"
purpose: "Tester port 5201 iperf3"
collection:
# Liste des infos à récupérer, structurées comme dans ton script.
system:
enabled: true
items:
- hostname
- os_id
- os_version
- kernel_version
- architecture
- session_type # XDG_SESSION_TYPE / loginctl / DISPLAY / WAYLAND_DISPLAY
- screen_resolution # xrandr/xdpyinfo/swaymsg
- last_boot_time # who -b
- uptime_seconds # /proc/uptime
- battery_percentage # /sys/class/power_supply/BAT*/capacity
- battery_status # /sys/class/power_supply/BAT*/status
- battery_health # /sys/class/power_supply/BAT*/health ou uevent
- virtualization # systemd-detect-virt + proxmox hints
virtualization_detection:
enabled: true
proxmox:
detect_host_by:
- pveversion
- "/etc/pve"
detect_guest_by:
- systemd_detect_virt
- qemu_guest_agent
- dmidecode_manufacturer_product_matches: ["qemu", "proxmox"]
capture:
- is_proxmox_host
- is_proxmox_guest
- proxmox_version
- virtualization_type
cpu:
enabled: true
source:
primary: lscpu
supplement_dmidecode: true
items:
- vendor
- model
- cores_physical # cores_per_socket * sockets
- threads # nproc
- base_freq_ghz # lscpu CPU MHz -> GHz
- max_freq_ghz # lscpu CPU max MHz -> GHz
- cache_l1_kb
- cache_l2_kb
- cache_l3_kb
- flags # CPU flags list
- microarchitecture # depuis dmidecode type 4 (Family) si manquant
raw_capture:
- lscpu_output
ram:
enabled: true
sources:
- free
- dmidecode
items:
- total_mb
- used_mb
- free_mb
- shared_mb
- slots_total # dmidecode -t 16
- slots_used # dmidecode -t 17
- max_capacity_mb # dmidecode -t 16 Maximum Capacity
- ecc # dmidecode -t memory Error Correction Type
- layout # par slot: locator, size, type, speed, configured_speed, form_factor, type_detail, rank, manufacturer, part_number
raw_capture:
- dmidecode_full
gpu:
enabled: true
sources:
- lspci
- nvidia_smi_optional
items:
- vendor # NVIDIA/AMD/Intel/Unknown
- model # lspci vga/3d ou nvidia-smi name
- memory_dedicated_mb # nvidia-smi (si dispo)
- driver_version # nvidia-smi (si dispo)
motherboard_bios:
enabled: true
source: dmidecode
items:
- baseboard_manufacturer
- baseboard_product_name
- bios_vendor
- bios_version
- bios_release_date
pci_devices:
enabled: true
source: lspci
items:
- slot
- class
- vendor
- device
usb_devices:
enabled: true
source: lsusb
items:
- bus
- device
- vendor_id
- product_id
- name
audio:
enabled: true
sources:
- lspci
- alsa
- pactl_optional
items:
hardware:
- pci_audio_devices # lspci audio
- alsa_playback # aplay -l
- alsa_capture # arecord -l
- pcm_devices # aplay -L
software:
- backend # pipewire/pulseaudio/alsa
- server_name
- server_version
- default_sink
- default_source
- sinks
- sources
storage:
enabled: true
sources:
- lsblk
- smartctl
devices:
enumerate_by: "lsblk_disks" # lsblk -d -n -o NAME,TYPE
include_removable: false
items:
- device # /dev/sda
- model # smartctl -i
- serial # smartctl -i
- size # lsblk
- type # rota -> ssd/hdd
- interface # tran
- temperature_c # smartctl -A
- smart_health # smartctl -H
partitions:
enabled: true
source: lsblk_json
items:
- name
- mount_point
- fs_type
- total_gb
- used_gb
- free_gb
raw_capture:
- lsblk_output
network_shares:
enabled: true
source: "/proc/mounts"
detect_fs_types:
- nfs
- nfs4
- cifs
- smbfs
- fuse.cifs
- fuse.smbfs
- afp
- afpfs
- fuse.afpfs
- sshfs
- fuse.sshfs
- ftpfs
- curlftpfs
- fuse.ftpfs
- davfs
- davfs2
- fuse.webdavfs
items:
- protocol
- source
- mount_point
- fs_type
- options
- total_gb
- used_gb
- free_gb
network:
enabled: true
sources:
- ip
- ethtool
- iw_optional
interface_filter:
# reprise logique script: UP|UNKNOWN sauf interfaces virtuelles connues
include_states: ["UP", "UNKNOWN"]
exclude_name_prefixes: ["lo", "docker", "br-", "veth", "tap", "fw"]
items:
- name
- type # bridge|ethernet|wifi|unknown
- mac
- ip_address
- speed_mbps # ethtool speed ou iw tx bitrate
- driver # ethtool -i ou /sys/.../driver
- ssid # iw dev link
- wake_on_lan # ethtool Wake-on
raw_info:
enabled: true
include:
- lscpu
- lsblk
- dmidecode
max_size_kb: 5120
benchmarks:
enabled: true
# Pondérations identiques à ton script (si résultat dispo)
weights:
cpu: 0.40
memory: 0.20
disk: 0.20
network: 0.10
gpu: 0.10
cpu_sysbench:
enabled: true
tool: sysbench
params:
cpu_max_prime: 20000
single_thread: 1
multi_threads: "all" # all -> nproc
outputs:
- events_per_sec_single
- events_per_sec_multi
- duration_s
- score_single
- score_multi
- score_global
memory_sysbench:
enabled: true
tool: sysbench
params:
total_size: "1G"
outputs:
- throughput_mib_s
- score
disk_fio:
enabled: true
tool: fio
safety:
# Empêcher un bench destructif ou trop long
max_runtime_s: 60
max_size: "1G"
direct: 1
params:
name: "bench"
ioengine: "libaio"
rw: "randrw"
bs: "4k"
size: "500M"
numjobs: 1
runtime_s: 30
time_based: true
output_format: "json"
outputs:
- read_mb_s
- write_mb_s
- iops_read
- iops_write
- latency_ms
- score
network_iperf3:
enabled: true
tool: iperf3
server: "10.0.0.50"
port: 5201
prechecks:
ping:
enabled: true
count: 1
timeout_s: 1
port_check:
enabled: true
tool: nc
timeout_s: 2
params:
duration_s: 10
bidir: true
json: true
outputs:
- upload_mbps
- download_mbps
- ping_ms
- score
# placeholders (comme ton script)
- jitter_ms
- packet_loss_percent
gpu:
enabled: false
note: "GPU bench non implémenté dans le script d'origine (placeholder)."
payload_mapping:
# Le binaire peut mapper ses structures internes vers le schéma backend actuel.
# Utile si ton backend attend des champs précis.
device_identifier: "system.hostname"
bench_script_version_field: "bench_client_version"
include_sections:
- hardware
- results
- raw_info
limits:
# Bornes générales de sécurité (validation côté client)
max_payload_kb: 1024
max_raw_info_kb: 5120
max_fio_runtime_s: 60
max_fio_size_bytes: 1073741824 # 1 GiB
max_sysbench_cpu_prime: 50000
max_iperf_duration_s: 30
features:
# Permet d'activer/désactiver rapidement des blocs selon machines
enable_screen_resolution_detection: true
enable_battery_detection: true
enable_network_share_detection: true
enable_audio_detection: true
enable_proxmox_detection: true
[DEBUG] Config chargée : {ConfigVersion:1 Backend:{URL:http://10.0.0.50:8007/api/benchmark Auth:{Mode:bearer_env EnvVar:test_hardware_perf} HTTP:{TimeoutS:15 Retries:2 RetryBackoffS:2 TLSVerify:false}} Runtime:{MaxTotalRuntime:480 CommandTimeout:30 TempDir:/tmp Locale:C PathPrepend:[/usr/sbin /sbin]} Logging:{Level:info Progress:true ShowCommandLines:false CaptureRawOutput:true RawOutputMaxKB:5120 SavePayloadToTmp:true PayloadTmpDir:/tmp PayloadFilenamePrefix:bench_payload_ InteractiveDebugPause:true} Payload:{Dir:. Prefix:bench_payload_ Always:true} Benchmarks:{Enabled:true Weights:map[cpu:0.4 disk:0.2 gpu:0.1 memory:0.2 network:0.1] CPU:{Enabled:true Tool:sysbench Server: Port:0 Params:map[cpu_max_prime:20000 multi_threads:all single_thread:1] Safety:map[]} Memory:{Enabled:true Tool:sysbench Server: Port:0 Params:map[total_size:1G] Safety:map[]} Disk:{Enabled:true Tool:fio Server: Port:0 Params:map[bs:4k ioengine:libaio name:bench numjobs:1 output_format:json runtime_s:30 rw:randrw size:500M time_based:true] Safety:map[direct:1 max_runtime_s:60 max_size:1G]} Network:{Enabled:true Tool:iperf3 Server:10.0.0.50 Port:5201 Params:map[bidir:true duration_s:10 json:true] Safety:map[]}} Collection:{System:{Enabled:true} CPU:{Enabled:true} RAM:{Enabled:true} Storage:{Enabled:true} Network:{Enabled:true} GPU:{Enabled:true} Audio:{Enabled:true} PCI:{Enabled:true} USB:{Enabled:true}} RawInfo:{Enabled:true Include:[lscpu lsblk dmidecode] MaxSizeKB:5120}}
[DEBUG] Configuration complète : {ConfigVersion:1 Backend:{URL:http://10.0.0.50:8007/api/benchmark Auth:{Mode:bearer_env EnvVar:test_hardware_perf} HTTP:{TimeoutS:15 Retries:2 RetryBackoffS:2 TLSVerify:false}} Runtime:{MaxTotalRuntime:480 CommandTimeout:30 TempDir:/tmp Locale:C PathPrepend:[/usr/sbin /sbin]} Logging:{Level:info Progress:true ShowCommandLines:false CaptureRawOutput:true RawOutputMaxKB:5120 SavePayloadToTmp:true PayloadTmpDir:/tmp PayloadFilenamePrefix:bench_payload_ InteractiveDebugPause:true} Payload:{Dir:. Prefix:bench_payload_ Always:true} Benchmarks:{Enabled:true Weights:map[cpu:0.4 disk:0.2 gpu:0.1 memory:0.2 network:0.1] CPU:{Enabled:true Tool:sysbench Server: Port:0 Params:map[cpu_max_prime:20000 multi_threads:all single_thread:1] Safety:map[]} Memory:{Enabled:true Tool:sysbench Server: Port:0 Params:map[total_size:1G] Safety:map[]} Disk:{Enabled:true Tool:fio Server: Port:0 Params:map[bs:4k ioengine:libaio name:bench numjobs:1 output_format:json runtime_s:30 rw:randrw size:500M time_based:true] Safety:map[direct:1 max_runtime_s:60 max_size:1G]} Network:{Enabled:true Tool:iperf3 Server:10.0.0.50 Port:5201 Params:map[bidir:true duration_s:10 json:true] Safety:map[]}} Collection:{System:{Enabled:true} CPU:{Enabled:true} RAM:{Enabled:true} Storage:{Enabled:true} Network:{Enabled:true} GPU:{Enabled:true} Audio:{Enabled:true} PCI:{Enabled:true} USB:{Enabled:true}} RawInfo:{Enabled:true Include:[lscpu lsblk dmidecode] MaxSizeKB:5120}}
[DEBUG] [2/6] Début collecte CPU
[DEBUG] Exec: lscpu []
[DEBUG] Exec: dmidecode [-t 4]
[DEBUG] [2/6] Détails CPU: {Vendor:AuthenticAMD Model:AMD Ryzen 9 5900X 12-Core Processor Cores:12 Threads:24 BaseFreqGHz:4.951 MaxFreqGHz:4.951 CacheL1KB:64 CacheL2KB:512 CacheL3KB:32768 Flags:[fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local user_shstk clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm debug_swap] Microarchitecture:Zen TDPW:<nil>}
[DEBUG] [2/6] Début collecte RAM
[DEBUG] SMBIOS détecté : SMBIOS 3.3.0 (54 tables)
[DEBUG] Module SMBIOS détecté : DIMM 0 {Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 }
[DEBUG] Module SMBIOS détecté : DIMM 1 {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE}
[DEBUG] Module SMBIOS détecté : DIMM 0 {Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 }
[DEBUG] Module SMBIOS détecté : DIMM 1 {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE}
[DEBUG] Mémoire SMBIOS : slots_total=10 slots_used=4 ecc=false max=0MB
[DEBUG] [2/6] Détails RAM: {TotalMB:48096 UsedMB:17119 FreeMB:30977 SharedMB:967 SlotsTotal:10 SlotsUsed:4 MaxCapacityMB:48096 ECC:false Layout:[{Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 } {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE} {Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 } {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE}]}
[DEBUG] [2/6] Début collecte GPU
[DEBUG] Exec: lspci []
[DEBUG] Exec: nvidia-smi [--query-gpu=name,driver_version,memory.total --format=csv,noheader,nounits]
[DEBUG] [2/6] Détails GPU: {Vendor:NVIDIA Model:NVIDIA GeForce RTX 3060 DriverVersion:550.163.01 MemoryDedicatedMB:0xc0002d5c88 MemorySharedMB:<nil> APISupport:[]}
[DEBUG] [2/6] Début collecte stockage
[DEBUG] Exec: lsblk [-J -b -o NAME,TYPE,TRAN,VENDOR,MODEL,SERIAL,SIZE]
[DEBUG] SMART open /dev/sdd impossible: unknown drive type
[DEBUG] SMART open /dev/sde impossible: unknown drive type
[DEBUG] SMART open /dev/sdb impossible: unknown drive type
[DEBUG] SMART open /dev/sdc impossible: unknown drive type
[DEBUG] [2/6] Détails stockage: {Devices:[{Name:/dev/nvme0n1 Type:ssd Interface:nvme CapacityGB:465.7617416381836 Vendor:CT500P2SSD8 Model:CT500P2SSD8 Serial:2138E5D60DD8 SmartHealth:PASSED Temperature:34} {Name:/dev/nvme1n1 Type: Interface:nvme CapacityGB:465.7617416381836 Vendor:CT500P2SSD8 Model:CT500P2SSD8 Serial:2108E4FD258D SmartHealth:PASSED Temperature:32} {Name:/dev/sda Type: Interface:sata CapacityGB:447.13167572021484 Vendor:ATA Model:KINGSTON SUV500480G Serial:50026B768226A365 SmartHealth:PASSED Temperature:25} {Name:/dev/sdb Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:Compact Flash Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sdc Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:SD/MMC Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sdd Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:MS/MS-PRO Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sde Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:xD-Picture Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0}] Partitions:[{Name:/dev/nvme0n1p2 MountPoint:/ FSType:ext4 TotalGB:432.80120849609375 UsedGB:0xc0002d5f48 FreeGB:0xc0002d5f50} {Name:/dev/nvme0n1p1 MountPoint:/boot/efi FSType:vfat TotalGB:0.9512481689453125 UsedGB:0xc0002d5f58 FreeGB:0xc0002d5f90}]}
[DEBUG] [2/6] Début collecte PCI devices
[DEBUG] Exec: lspci [-mm]
[DEBUG] [2/6] Détails PCI: [{Slot:00:00.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Root Complex} {Slot:00:00.2 Class:IOMMU Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse IOMMU} {Slot:00:01.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:01.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse GPP Bridge} {Slot:00:01.3 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse GPP Bridge} {Slot:00:02.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:03.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:03.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse GPP Bridge} {Slot:00:04.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:05.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:07.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:07.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]} {Slot:00:08.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:08.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]} {Slot:00:14.0 Class:SMBus Vendor:Advanced Micro Devices, Inc. [AMD] Device:FCH SMBus Controller} {Slot:00:14.3 Class:ISA bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:FCH LPC Bridge} {Slot:00:18.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 0} {Slot:00:18.1 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 1} {Slot:00:18.2 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 2} {Slot:00:18.3 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 3} {Slot:00:18.4 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 4} {Slot:00:18.5 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 5} {Slot:00:18.6 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 6} {Slot:00:18.7 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 7} {Slot:01:00.0 Class:Non-Volatile memory controller Vendor:Micron/Crucial Technology Device:P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)} {Slot:02:00.0 Class:USB controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset USB 3.1 xHCI Compliant Host Controller} {Slot:02:00.1 Class:SATA controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset SATA Controller} {Slot:02:00.2 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Bridge} {Slot:03:00.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:03:01.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:03:04.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:03:08.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:04:00.0 Class:Ethernet controller Vendor:Realtek Semiconductor Co., Ltd. Device:RTL8111/8168/8211/8411 PCI Express Gigabit Ethernet Controller} {Slot:07:00.0 Class:Non-Volatile memory controller Vendor:Micron/Crucial Technology Device:P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)} {Slot:08:00.0 Class:VGA compatible controller Vendor:NVIDIA Corporation Device:GA106 [GeForce RTX 3060 Lite Hash Rate]} {Slot:08:00.1 Class:Audio device Vendor:NVIDIA Corporation Device:GA106 High Definition Audio Controller} {Slot:09:00.0 Class:Non-Essential Instrumentation [1300] Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Function} {Slot:0a:00.0 Class:Non-Essential Instrumentation [1300] Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Reserved SPP} {Slot:0a:00.1 Class:Encryption controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Cryptographic Coprocessor PSPCPP} {Slot:0a:00.3 Class:USB controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse USB 3.0 Host Controller} {Slot:0a:00.4 Class:Audio device Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse HD Audio Controller}]
[DEBUG] [2/6] Début collecte USB devices
[DEBUG] Exec: lsusb []
[DEBUG] [2/6] Détails USB: [{Bus:001 Device:001 VendorID:1d6b ProductID:0002 Name:Linux Foundation 2.0 root hub} {Bus:001 Device:002 VendorID:058f ProductID:6362 Name:Alcor Micro Corp. Flash Card Reader/Writer} {Bus:002 Device:001 VendorID:1d6b ProductID:0003 Name:Linux Foundation 3.0 root hub} {Bus:003 Device:001 VendorID:1d6b ProductID:0002 Name:Linux Foundation 2.0 root hub} {Bus:003 Device:003 VendorID:046d ProductID:c52b Name:Logitech, Inc. Unifying Receiver} {Bus:003 Device:004 VendorID:0bda ProductID:b711 Name:Realtek Semiconductor Corp. RTL8188GU 802.11n WLAN Adapter (After Modeswitch)} {Bus:004 Device:001 VendorID:1d6b ProductID:0003 Name:Linux Foundation 3.0 root hub}]
[DEBUG] [2/6] Début collecte partages réseau
[DEBUG] [2/6] Détails partages réseau: []
[DEBUG] [2/6] Début collecte interfaces réseau
[DEBUG] Exec: ethtool [eno1]
[DEBUG] Exec: ethtool [-i eno1]
[DEBUG] Exec: ethtool [wlxe84e06a6c1fc]
[DEBUG] Exec: ethtool [-i wlxe84e06a6c1fc]
[DEBUG] Exec: iwgetid [wlxe84e06a6c1fc -r]
[DEBUG] Exec: iw [wlxe84e06a6c1fc link]
[DEBUG] [2/6] Détails réseau: {Interfaces:[{Name:eno1 Type:ethernet MAC:18:c0:4d:b5:65:74 IP:10.0.1.109 SpeedMbps:0xc000389bb8 Driver:r8169 SSID: WakeOnLAN:false} {Name:wlxe84e06a6c1fc Type:wifi MAC:1e:c1:a5:4c:a0:f5 IP: SpeedMbps:<nil> Driver:rtl8xxxu SSID: WakeOnLAN:false}]}
[DEBUG] [2/6] Début collecte carte mère
[DEBUG] Exec: dmidecode [-t 2]
[DEBUG] Exec: dmidecode [-t 0]
[DEBUG] [2/6] Détails carte mère: {Vendor:Gigabyte Technology Co., Ltd. Model:B450 AORUS ELITE BIOSVendor:American Megatrends International, LLC. BIOSVersion:F65e BIOSDate:09/20/2023}
[DEBUG] [2/6] Début collecte OS
[DEBUG] Exec: uname [-r]
[DEBUG] Exec: uname [-m]
[DEBUG] Exec: systemd-detect-virt []
[DEBUG] Exec: xrandr []
[DEBUG] Exec: xrandr [--current]
[DEBUG] Exec: who [-b]
[DEBUG] [2/6] Détails OS: {Name:Debian GNU/Linux Version:13 (trixie) KernelVersion:6.12.57+deb13-amd64 Architecture:x86_64 SessionType: DisplayServer: ScreenResolution:5560 x 1920 LastBootTime:démarrage système 2026-01-11 09:11 UptimeSeconds:43791.83 BatteryPercentage:<nil> BatteryStatus: BatteryHealth: Hostname:aorus VirtualizationType:kvm-host DesktopEnvironment:GNOME}
[DEBUG] [2/6] Début collecte capteurs
[DEBUG] [2/6] Détails capteurs: {CPUTempC:<nil> DiskTempsC:map[nvme-pci-0100:Composite:33.85 nvme-pci-0700:Composite:31.85] Sensors:[{Chip:nvme-pci-0700 Name:Composite Type:temperature Value:31.85 Unit:°C Alarm:false} {Chip:acpitz-acpi-0 Name:temp1 Type:temperature Value:16.8 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tctl Type:temperature Value:44.375 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tccd1 Type:temperature Value:29.75 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tccd2 Type:temperature Value:27.25 Unit:°C Alarm:false} {Chip:nvme-pci-0100 Name:Composite Type:temperature Value:33.85 Unit:°C Alarm:false}]}
[DEBUG] [2/6] Début collecte audio
[DEBUG] Exec: lspci []
[DEBUG] Exec: aplay [-l]
[DEBUG] Exec: arecord [-l]
[DEBUG] Exec: aplay [-L]
[DEBUG] Exec: pactl [info]
[DEBUG] [2/6] Détails audio: {Hardware:{PCIAudioDevices:[08:00.1 Audio device: NVIDIA Corporation GA106 High Definition Audio Controller (rev a1) 0a:00.4 Audio device: Advanced Micro Devices, Inc. [AMD] Starship/Matisse HD Audio Controller] AlsaPlayback:**** Liste des périphériques matériels PLAYBACK ****
carte 0 : NVidia [HDA NVidia], périphérique 3 : HDMI 0 [LG ULTRAWIDE]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 7 : HDMI 1 [K243Y]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 8 : HDMI 2 [HDMI 2]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 9 : HDMI 3 [HDMI 3]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]
Sous-périphériques : 0/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 1 : ALC892 Digital [ALC892 Digital]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
AlsaCapture:**** Liste des périphériques matériels CAPTURE ****
carte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 2 : ALC892 Alt Analog [ALC892 Alt Analog]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
PCMDevices:[null Discard all samples (playback) or generate zero samples (capture) pipewire PipeWire Sound Server default Default ALSA Output (currently PipeWire Media Server) hw:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Direct hardware device without any conversions hw:CARD=NVidia,DEV=7 HDA NVidia, K243Y Direct hardware device without any conversions hw:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Direct hardware device without any conversions hw:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Direct hardware device without any conversions plughw:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Hardware device with all software conversions plughw:CARD=NVidia,DEV=7 HDA NVidia, K243Y Hardware device with all software conversions plughw:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Hardware device with all software conversions plughw:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Hardware device with all software conversions hdmi:CARD=NVidia,DEV=0 HDA NVidia, LG ULTRAWIDE HDMI Audio Output hdmi:CARD=NVidia,DEV=1 HDA NVidia, K243Y HDMI Audio Output hdmi:CARD=NVidia,DEV=2 HDA NVidia, HDMI 2 HDMI Audio Output hdmi:CARD=NVidia,DEV=3 HDA NVidia, HDMI 3 HDMI Audio Output dmix:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Direct sample mixing device dmix:CARD=NVidia,DEV=7 HDA NVidia, K243Y Direct sample mixing device dmix:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Direct sample mixing device dmix:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Direct sample mixing device hw:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Direct hardware device without any conversions hw:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Direct hardware device without any conversions plughw:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Hardware device with all software conversions plughw:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Hardware device with all software conversions sysdefault:CARD=Generic HD-Audio Generic, ALC892 Analog Default Audio Device front:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Front output / input surround21:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 2.1 Surround output to Front and Subwoofer speakers surround40:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 4.0 Surround output to Front and Rear speakers surround41:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 4.1 Surround output to Front, Rear and Subwoofer speakers surround50:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 5.0 Surround output to Front, Center and Rear speakers surround51:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 5.1 Surround output to Front, Center, Rear and Subwoofer speakers surround71:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 7.1 Surround output to Front, Center, Side, Rear and Woofer speakers iec958:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Digital IEC958 (S/PDIF) Digital Audio Output dmix:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Direct sample mixing device dmix:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Direct sample mixing device]} Software:{Backend: ServerName: ServerVersion: DefaultSink:<nil> DefaultSource:<nil> Sinks:[] Sources:[]}}
[DEBUG] Exec: lscpu []
[DEBUG] Exec: lsblk [-a]
[DEBUG] Exec: dmidecode [-t 0,1,2,16,17]
[DEBUG] Matériel collecté : {CPU:{Vendor:AuthenticAMD Model:AMD Ryzen 9 5900X 12-Core Processor Cores:12 Threads:24 BaseFreqGHz:4.951 MaxFreqGHz:4.951 CacheL1KB:64 CacheL2KB:512 CacheL3KB:32768 Flags:[fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local user_shstk clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm debug_swap] Microarchitecture:Zen TDPW:<nil>} RAM:{TotalMB:48096 UsedMB:17119 FreeMB:30977 SharedMB:967 SlotsTotal:10 SlotsUsed:4 MaxCapacityMB:48096 ECC:false Layout:[{Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 } {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE} {Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 } {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE}]} GPU:{Vendor:NVIDIA Model:NVIDIA GeForce RTX 3060 DriverVersion:550.163.01 MemoryDedicatedMB:0xc0002d5c88 MemorySharedMB:<nil> APISupport:[]} Storage:{Devices:[{Name:/dev/nvme0n1 Type:ssd Interface:nvme CapacityGB:465.7617416381836 Vendor:CT500P2SSD8 Model:CT500P2SSD8 Serial:2138E5D60DD8 SmartHealth:PASSED Temperature:34} {Name:/dev/nvme1n1 Type: Interface:nvme CapacityGB:465.7617416381836 Vendor:CT500P2SSD8 Model:CT500P2SSD8 Serial:2108E4FD258D SmartHealth:PASSED Temperature:32} {Name:/dev/sda Type: Interface:sata CapacityGB:447.13167572021484 Vendor:ATA Model:KINGSTON SUV500480G Serial:50026B768226A365 SmartHealth:PASSED Temperature:25} {Name:/dev/sdb Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:Compact Flash Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sdc Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:SD/MMC Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sdd Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:MS/MS-PRO Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sde Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:xD-Picture Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0}] Partitions:[{Name:/dev/nvme0n1p2 MountPoint:/ FSType:ext4 TotalGB:432.80120849609375 UsedGB:0xc0002d5f48 FreeGB:0xc0002d5f50} {Name:/dev/nvme0n1p1 MountPoint:/boot/efi FSType:vfat TotalGB:0.9512481689453125 UsedGB:0xc0002d5f58 FreeGB:0xc0002d5f90}]} PCIDevices:[{Slot:00:00.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Root Complex} {Slot:00:00.2 Class:IOMMU Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse IOMMU} {Slot:00:01.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:01.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse GPP Bridge} {Slot:00:01.3 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse GPP Bridge} {Slot:00:02.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:03.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:03.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse GPP Bridge} {Slot:00:04.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:05.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:07.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:07.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]} {Slot:00:08.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:08.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]} {Slot:00:14.0 Class:SMBus Vendor:Advanced Micro Devices, Inc. [AMD] Device:FCH SMBus Controller} {Slot:00:14.3 Class:ISA bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:FCH LPC Bridge} {Slot:00:18.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 0} {Slot:00:18.1 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 1} {Slot:00:18.2 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 2} {Slot:00:18.3 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 3} {Slot:00:18.4 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 4} {Slot:00:18.5 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 5} {Slot:00:18.6 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 6} {Slot:00:18.7 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 7} {Slot:01:00.0 Class:Non-Volatile memory controller Vendor:Micron/Crucial Technology Device:P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)} {Slot:02:00.0 Class:USB controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset USB 3.1 xHCI Compliant Host Controller} {Slot:02:00.1 Class:SATA controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset SATA Controller} {Slot:02:00.2 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Bridge} {Slot:03:00.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:03:01.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:03:04.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:03:08.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:04:00.0 Class:Ethernet controller Vendor:Realtek Semiconductor Co., Ltd. Device:RTL8111/8168/8211/8411 PCI Express Gigabit Ethernet Controller} {Slot:07:00.0 Class:Non-Volatile memory controller Vendor:Micron/Crucial Technology Device:P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)} {Slot:08:00.0 Class:VGA compatible controller Vendor:NVIDIA Corporation Device:GA106 [GeForce RTX 3060 Lite Hash Rate]} {Slot:08:00.1 Class:Audio device Vendor:NVIDIA Corporation Device:GA106 High Definition Audio Controller} {Slot:09:00.0 Class:Non-Essential Instrumentation [1300] Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Function} {Slot:0a:00.0 Class:Non-Essential Instrumentation [1300] Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Reserved SPP} {Slot:0a:00.1 Class:Encryption controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Cryptographic Coprocessor PSPCPP} {Slot:0a:00.3 Class:USB controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse USB 3.0 Host Controller} {Slot:0a:00.4 Class:Audio device Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse HD Audio Controller}] USBDevices:[{Bus:001 Device:001 VendorID:1d6b ProductID:0002 Name:Linux Foundation 2.0 root hub} {Bus:001 Device:002 VendorID:058f ProductID:6362 Name:Alcor Micro Corp. Flash Card Reader/Writer} {Bus:002 Device:001 VendorID:1d6b ProductID:0003 Name:Linux Foundation 3.0 root hub} {Bus:003 Device:001 VendorID:1d6b ProductID:0002 Name:Linux Foundation 2.0 root hub} {Bus:003 Device:003 VendorID:046d ProductID:c52b Name:Logitech, Inc. Unifying Receiver} {Bus:003 Device:004 VendorID:0bda ProductID:b711 Name:Realtek Semiconductor Corp. RTL8188GU 802.11n WLAN Adapter (After Modeswitch)} {Bus:004 Device:001 VendorID:1d6b ProductID:0003 Name:Linux Foundation 3.0 root hub}] NetworkShares:[] Network:{Interfaces:[{Name:eno1 Type:ethernet MAC:18:c0:4d:b5:65:74 IP:10.0.1.109 SpeedMbps:0xc000389bb8 Driver:r8169 SSID: WakeOnLAN:false} {Name:wlxe84e06a6c1fc Type:wifi MAC:1e:c1:a5:4c:a0:f5 IP: SpeedMbps:<nil> Driver:rtl8xxxu SSID: WakeOnLAN:false}]} Motherboard:{Vendor:Gigabyte Technology Co., Ltd. Model:B450 AORUS ELITE BIOSVendor:American Megatrends International, LLC. BIOSVersion:F65e BIOSDate:09/20/2023} OS:{Name:Debian GNU/Linux Version:13 (trixie) KernelVersion:6.12.57+deb13-amd64 Architecture:x86_64 SessionType: DisplayServer: ScreenResolution:5560 x 1920 LastBootTime:démarrage système 2026-01-11 09:11 UptimeSeconds:43791.83 BatteryPercentage:<nil> BatteryStatus: BatteryHealth: Hostname:aorus VirtualizationType:kvm-host DesktopEnvironment:GNOME} Sensors:{CPUTempC:<nil> DiskTempsC:map[nvme-pci-0100:Composite:33.85 nvme-pci-0700:Composite:31.85] Sensors:[{Chip:nvme-pci-0700 Name:Composite Type:temperature Value:31.85 Unit:°C Alarm:false} {Chip:acpitz-acpi-0 Name:temp1 Type:temperature Value:16.8 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tctl Type:temperature Value:44.375 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tccd1 Type:temperature Value:29.75 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tccd2 Type:temperature Value:27.25 Unit:°C Alarm:false} {Chip:nvme-pci-0100 Name:Composite Type:temperature Value:33.85 Unit:°C Alarm:false}]} Audio:{Hardware:{PCIAudioDevices:[08:00.1 Audio device: NVIDIA Corporation GA106 High Definition Audio Controller (rev a1) 0a:00.4 Audio device: Advanced Micro Devices, Inc. [AMD] Starship/Matisse HD Audio Controller] AlsaPlayback:**** Liste des périphériques matériels PLAYBACK ****
carte 0 : NVidia [HDA NVidia], périphérique 3 : HDMI 0 [LG ULTRAWIDE]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 7 : HDMI 1 [K243Y]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 8 : HDMI 2 [HDMI 2]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 9 : HDMI 3 [HDMI 3]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]
Sous-périphériques : 0/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 1 : ALC892 Digital [ALC892 Digital]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
AlsaCapture:**** Liste des périphériques matériels CAPTURE ****
carte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 2 : ALC892 Alt Analog [ALC892 Alt Analog]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
PCMDevices:[null Discard all samples (playback) or generate zero samples (capture) pipewire PipeWire Sound Server default Default ALSA Output (currently PipeWire Media Server) hw:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Direct hardware device without any conversions hw:CARD=NVidia,DEV=7 HDA NVidia, K243Y Direct hardware device without any conversions hw:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Direct hardware device without any conversions hw:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Direct hardware device without any conversions plughw:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Hardware device with all software conversions plughw:CARD=NVidia,DEV=7 HDA NVidia, K243Y Hardware device with all software conversions plughw:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Hardware device with all software conversions plughw:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Hardware device with all software conversions hdmi:CARD=NVidia,DEV=0 HDA NVidia, LG ULTRAWIDE HDMI Audio Output hdmi:CARD=NVidia,DEV=1 HDA NVidia, K243Y HDMI Audio Output hdmi:CARD=NVidia,DEV=2 HDA NVidia, HDMI 2 HDMI Audio Output hdmi:CARD=NVidia,DEV=3 HDA NVidia, HDMI 3 HDMI Audio Output dmix:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Direct sample mixing device dmix:CARD=NVidia,DEV=7 HDA NVidia, K243Y Direct sample mixing device dmix:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Direct sample mixing device dmix:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Direct sample mixing device hw:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Direct hardware device without any conversions hw:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Direct hardware device without any conversions plughw:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Hardware device with all software conversions plughw:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Hardware device with all software conversions sysdefault:CARD=Generic HD-Audio Generic, ALC892 Analog Default Audio Device front:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Front output / input surround21:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 2.1 Surround output to Front and Subwoofer speakers surround40:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 4.0 Surround output to Front and Rear speakers surround41:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 4.1 Surround output to Front, Rear and Subwoofer speakers surround50:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 5.0 Surround output to Front, Center and Rear speakers surround51:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 5.1 Surround output to Front, Center, Rear and Subwoofer speakers surround71:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 7.1 Surround output to Front, Center, Side, Rear and Woofer speakers iec958:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Digital IEC958 (S/PDIF) Digital Audio Output dmix:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Direct sample mixing device dmix:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Direct sample mixing device]} Software:{Backend: ServerName: ServerVersion: DefaultSink:<nil> DefaultSource:<nil> Sinks:[] Sources:[]}} RawInfo:map[dmidecode:# dmidecode 3.6
Getting SMBIOS data from sysfs.
SMBIOS 3.3.0 present.
Handle 0x0000, DMI type 0, 26 bytes
BIOS Information
Vendor: American Megatrends International, LLC.
Version: F65e
Release Date: 09/20/2023
Address: 0xF0000
Runtime Size: 64 kB
ROM Size: 16 MB
Characteristics:
PCI is supported
BIOS is upgradeable
BIOS shadowing is allowed
Boot from CD is supported
Selectable boot is supported
BIOS ROM is socketed
EDD is supported
Japanese floppy for NEC 9800 1.2 MB is supported (int 13h)
Japanese floppy for Toshiba 1.2 MB is supported (int 13h)
5.25"/360 kB floppy services are supported (int 13h)
5.25"/1.2 MB floppy services are supported (int 13h)
3.5"/720 kB floppy services are supported (int 13h)
3.5"/2.88 MB floppy services are supported (int 13h)
Print screen service is supported (int 5h)
Serial services are supported (int 14h)
Printer services are supported (int 17h)
CGA/mono video services are supported (int 10h)
USB legacy is supported
BIOS boot specification is supported
Targeted content distribution is supported
UEFI is supported
BIOS Revision: 5.17
Handle 0x0001, DMI type 1, 27 bytes
System Information
Manufacturer: Gigabyte Technology Co., Ltd.
Product Name: B450 AORUS ELITE
Version: Default string
Serial Number: Default string
UUID: 03c00218-044d-05b5-6506-740700080009
Wake-up Type: Power Switch
SKU Number: Default string
Family: B450 MB
Handle 0x0002, DMI type 2, 15 bytes
Base Board Information
Manufacturer: Gigabyte Technology Co., Ltd.
Product Name: B450 AORUS ELITE
Version: Default string
Serial Number: Default string
Asset Tag: Default string
Features:
Board is a hosting board
Board is replaceable
Location In Chassis: Default string
Chassis Handle: 0x0003
Type: Motherboard
Contained Object Handles: 0
Handle 0x000B, DMI type 16, 23 bytes
Physical Memory Array
Location: System Board Or Motherboard
Use: System Memory
Error Correction Type: None
Maximum Capacity: 128 GB
Error Information Handle: 0x000A
Number Of Devices: 4
Handle 0x0013, DMI type 17, 92 bytes
Memory Device
Array Handle: 0x000B
Error Information Handle: 0x0012
Total Width: 64 bits
Data Width: 64 bits
Size: 16 GB
Form Factor: DIMM
Set: None
Locator: DIMM 0
Bank Locator: P0 CHANNEL A
Type: DDR4
Type Detail: Synchronous Unbuffered (Unregistered)
Speed: 3200 MT/s
Manufacturer: Unknown
Serial Number: 00000000
Asset Tag: Not Specified
Part Number: CMW32GX4M2E3200C16
Rank: 2
Configured Memory Speed: 3200 MT/s
Minimum Voltage: Unknown
Maximum Voltage: Unknown
Configured Voltage: 1.2 V
Memory Technology: DRAM
Memory Operating Mode Capability: Volatile memory
Firmware Version: Unknown
Module Manufacturer ID: Bank 3, Hex 0x9E
Module Product ID: Unknown
Memory Subsystem Controller Manufacturer ID: Unknown
Memory Subsystem Controller Product ID: Unknown
Non-Volatile Size: None
Volatile Size: 16 GB
Cache Size: None
Logical Size: None
Handle 0x0016, DMI type 17, 92 bytes
Memory Device
Array Handle: 0x000B
Error Information Handle: 0x0015
Total Width: 64 bits
Data Width: 64 bits
Size: 8 GB
Form Factor: DIMM
Set: None
Locator: DIMM 1
Bank Locator: P0 CHANNEL A
Type: DDR4
Type Detail: Synchronous Unbuffered (Unregistered)
Speed: 3200 MT/s
Manufacturer: Unknown
Serial Number: E3C4408B
Asset Tag: Not Specified
Part Number: BL8G32C16U4BL.M8FE
Rank: 1
Configured Memory Speed: 3200 MT/s
Minimum Voltage: 1.2 V
Maximum Voltage: 1.2 V
Configured Voltage: 1.2 V
Memory Technology: DRAM
Memory Operating Mode Capability: Volatile memory
Firmware Version: Unknown
Module Manufacturer ID: Bank 6, Hex 0x9B
Module Product ID: Unknown
Memory Subsystem Controller Manufacturer ID: Unknown
Memory Subsystem Controller Product ID: Unknown
Non-Volatile Size: None
Volatile Size: 8 GB
Cache Size: None
Logical Size: None
Handle 0x0019, DMI type 17, 92 bytes
Memory Device
Array Handle: 0x000B
Error Information Handle: 0x0018
Total Width: 64 bits
Data Width: 64 bits
Size: 16 GB
Form Factor: DIMM
Set: None
Locator: DIMM 0
Bank Locator: P0 CHANNEL B
Type: DDR4
Type Detail: Synchronous Unbuffered (Unregistered)
Speed: 3200 MT/s
Manufacturer: Unknown
Serial Number: 00000000
Asset Tag: Not Specified
Part Number: CMW32GX4M2E3200C16
Rank: 2
Configured Memory Speed: 3200 MT/s
Minimum Voltage: Unknown
Maximum Voltage: Unknown
Configured Voltage: 1.2 V
Memory Technology: DRAM
Memory Operating Mode Capability: Volatile memory
Firmware Version: Unknown
Module Manufacturer ID: Bank 3, Hex 0x9E
Module Product ID: Unknown
Memory Subsystem Controller Manufacturer ID: Unknown
Memory Subsystem Controller Product ID: Unknown
Non-Volatile Size: None
Volatile Size: 16 GB
Cache Size: None
Logical Size: None
Handle 0x001C, DMI type 17, 92 bytes
Memory Device
Array Handle: 0x000B
Error Information Handle: 0x001B
Total Width: 64 bits
Data Width: 64 bits
Size: 8 GB
Form Factor: DIMM
Set: None
Locator: DIMM 1
Bank Locator: P0 CHANNEL B
Type: DDR4
Type Detail: Synchronous Unbuffered (Unregistered)
Speed: 3200 MT/s
Manufacturer: Unknown
Serial Number: E3C44087
Asset Tag: Not Specified
Part Number: BL8G32C16U4BL.M8FE
Rank: 1
Configured Memory Speed: 3200 MT/s
Minimum Voltage: 1.2 V
Maximum Voltage: 1.2 V
Configured Voltage: 1.2 V
Memory Technology: DRAM
Memory Operating Mode Capability: Volatile memory
Firmware Version: Unknown
Module Manufacturer ID: Bank 6, Hex 0x9B
Module Product ID: Unknown
Memory Subsystem Controller Manufacturer ID: Unknown
Memory Subsystem Controller Product ID: Unknown
Non-Volatile Size: None
Volatile Size: 8 GB
Cache Size: None
Logical Size: None
lsblk:NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS
loop0 7:0 0 118,5M 1 loop /snap/iptvnator/92
loop1 7:1 0 48,1M 1 loop /snap/snapd/25935
loop2 7:2 0 50,9M 1 loop /snap/snapd/25577
loop3 7:3 0 4K 1 loop /snap/bare/5
loop4 7:4 0 91,7M 1 loop /snap/gtk-common-themes/1535
loop5 7:5 0 55,5M 1 loop /snap/core18/2976
loop6 7:6 0 164,8M 1 loop /snap/gnome-3-28-1804/198
loop7 7:7 0 0B 0 loop
sda 8:0 0 447,1G 0 disk
└─sda1 8:1 0 447,1G 0 part
sdb 8:16 1 0B 0 disk
sdc 8:32 1 0B 0 disk
sdd 8:48 1 0B 0 disk
sde 8:64 1 0B 0 disk
nvme0n1 259:0 0 465,8G 0 disk
├─nvme0n1p1 259:1 0 976M 0 part /boot/efi
├─nvme0n1p2 259:2 0 440,8G 0 part /
└─nvme0n1p3 259:3 0 24G 0 part [SWAP]
nvme1n1 259:4 0 465,8G 0 disk
├─nvme1n1p1 259:5 0 50M 0 part
├─nvme1n1p2 259:6 0 464,3G 0 part
├─nvme1n1p3 259:7 0 808M 0 part
├─nvme1n1p4 259:8 0 100M 0 part
└─nvme1n1p5 259:9 0 522M 0 part
lscpu:Architecture : x86_64
Mode(s) opératoire(s) des processeurs : 32-bit, 64-bit
Tailles des adresses: 48 bits physical, 48 bits virtual
Boutisme : Little Endian
Processeur(s) : 24
Liste de processeur(s) en ligne : 0-23
Identifiant constructeur : AuthenticAMD
Nom de modèle : AMD Ryzen 9 5900X 12-Core Processor
Famille de processeur : 25
Modèle : 33
Thread(s) par cœur : 2
Cœur(s) par socket : 12
Socket(s) : 1
Révision : 2
Accroissement de fréquence : activé
multiplication des MHz du/des CPU(s) : 73%
Vitesse maximale du processeur en MHz : 4951,0000
Vitesse minimale du processeur en MHz : 550,0000
BogoMIPS : 7399,98
Drapeaux : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local user_shstk clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm debug_swap
Virtualisation : AMD-V
Cache L1d : 384 KiB (12 instances)
Cache L1i : 384 KiB (12 instances)
Cache L2 : 6 MiB (12 instances)
Cache L3 : 64 MiB (2 instances)
Nœud(s) NUMA : 1
Nœud NUMA 0 de processeur(s) : 0-23
Vulnérabilité Gather data sampling : Not affected
Vulnérabilité Indirect target selection : Not affected
Vulnérabilité Itlb multihit : Not affected
Vulnérabilité L1tf : Not affected
Vulnérabilité Mds : Not affected
Vulnérabilité Meltdown : Not affected
Vulnérabilité Mmio stale data : Not affected
Vulnérabilité Reg file data sampling : Not affected
Vulnérabilité Retbleed : Not affected
Vulnérabilité Spec rstack overflow : Mitigation; Safe RET
Vulnérabilité Spec store bypass : Mitigation; Speculative Store Bypass disabled via prctl
Vulnérabilité Spectre v1 : Mitigation; usercopy/swapgs barriers and __user pointer sanitization
Vulnérabilité Spectre v2 : Mitigation; Retpolines; IBPB conditional; IBRS_FW; STIBP always-on; RSB filling; PBRSB-eIBRS Not affected; BHI Not affected
Vulnérabilité Srbds : Not affected
Vulnérabilité Tsa : Vulnerable: Clear CPU buffers attempted, no microcode
Vulnérabilité Tsx async abort : Not affected
Vulnérabilité Vmscape : Mitigation; IBPB before exit to userspace
]}
[DEBUG] [3/6] Benchmark CPU démarré
[DEBUG] Exec: sysbench [cpu --threads=1 --time=10 run]
[DEBUG] Exec: nproc []
[DEBUG] Exec: sysbench [cpu --threads=24 --time=10 run]
[DEBUG] [3/6] Résultat CPU: {EventsPerSec:37511.195 EventsPerSecSingle:5613.25 EventsPerSecMulti:69409.14 DurationSec:20.000500000000002 Score:37511.195 ScoreSingle:5613.25 ScoreMulti:69409.14}
[DEBUG] [3/6] Benchmark mémoire démarré
[DEBUG] Exec: sysbench [memory --memory-block-size=1K --memory-total-size=1G run]
[DEBUG] [3/6] Résultat mémoire: {Throughput:8941.73 Score:8941.73}
[DEBUG] [3/6] Benchmark disque démarré
[DEBUG] [3/6] Bench disque cible : /var/tmp/bench-client (mount=/ fstype=ext4 source=/dev/nvme0n1p2)
[DEBUG] Exec: fio [--name=bench --ioengine=libaio --rw=randrw --bs=4k --direct=1 --size=500M --numjobs=1 --runtime=30 --time_based --output-format=json --filename=/var/tmp/bench-client/bench-1768162924186649437.fio]
[DEBUG] [3/6] Résultat disque: {ReadMBs:40.53125 WriteMBs:40.505859375 IOPSRead:10376.054132 IOPSWrite:10369.521016 LatencyMs:0.074296883919 Score:40.5185546875}
[DEBUG] [3/6] Benchmark réseau démarré
[DEBUG] Exec: iperf3 [-c 10.0.0.50 -p 5201 -J -t 10]
[DEBUG] Exec: ping [-c 1 -W 1 10.0.0.50]
[DEBUG] [3/6] Résultat réseau: {Upload:942.2470812350741 Download:938.9486813850356 PingMs:0.459 JitterMs:<nil> PacketLossPct:<nil> Score:940.5978813100548}
[DEBUG] Résultats des benchmarks : {CPU:{EventsPerSec:37511.195 EventsPerSecSingle:5613.25 EventsPerSecMulti:69409.14 DurationSec:20.000500000000002 Score:37511.195 ScoreSingle:5613.25 ScoreMulti:69409.14} Memory:{Throughput:8941.73 Score:8941.73} Disk:{ReadMBs:40.53125 WriteMBs:40.505859375 IOPSRead:10376.054132 IOPSWrite:10369.521016 LatencyMs:0.074296883919 Score:40.5185546875} Network:{Upload:942.2470812350741 Download:938.9486813850356 PingMs:0.459 JitterMs:<nil> PacketLossPct:<nil> Score:940.5978813100548} GPU:{GLMark2Score:<nil> Score:<nil>} GlobalScore:0}
[DEBUG] Poids benchmarks : map[cpu:0.4 disk:0.2 gpu:0.1 memory:0.2 network:0.1]
[DEBUG] Scores normalisés : cpu=1875.56 mem=89.42 disk=4.05 net=94.06
[DEBUG] Score global calculé : 77832.37
[DEBUG] Payload JSON (49194 octets) : {
"device_identifier": "aorus",
"bench_script_version": "1.6.6",
"bench_client_version": "1.0.1",
"hardware": {
"cpu": {
"vendor": "AuthenticAMD",
"model": "AMD Ryzen 9 5900X 12-Core Processor",
"cores": 12,
"threads": 24,
"base_freq_ghz": 4.951,
"max_freq_ghz": 4.951,
"cache_l1_kb": 64,
"cache_l2_kb": 512,
"cache_l3_kb": 32768,
"flags": [
"fpu",
"vme",
"de",
"pse",
"tsc",
"msr",
"pae",
"mce",
"cx8",
"apic",
"sep",
"mtrr",
"pge",
"mca",
"cmov",
"pat",
"pse36",
"clflush",
"mmx",
"fxsr",
"sse",
"sse2",
"ht",
"syscall",
"nx",
"mmxext",
"fxsr_opt",
"pdpe1gb",
"rdtscp",
"lm",
"constant_tsc",
"rep_good",
"nopl",
"xtopology",
"nonstop_tsc",
"cpuid",
"extd_apicid",
"aperfmperf",
"rapl",
"pni",
"pclmulqdq",
"monitor",
"ssse3",
"fma",
"cx16",
"sse4_1",
"sse4_2",
"x2apic",
"movbe",
"popcnt",
"aes",
"xsave",
"avx",
"f16c",
"rdrand",
"lahf_lm",
"cmp_legacy",
"svm",
"extapic",
"cr8_legacy",
"abm",
"sse4a",
"misalignsse",
"3dnowprefetch",
"osvw",
"ibs",
"skinit",
"wdt",
"tce",
"topoext",
"perfctr_core",
"perfctr_nb",
"bpext",
"perfctr_llc",
"mwaitx",
"cpb",
"cat_l3",
"cdp_l3",
"hw_pstate",
"ssbd",
"mba",
"ibrs",
"ibpb",
"stibp",
"vmmcall",
"fsgsbase",
"bmi1",
"avx2",
"smep",
"bmi2",
"erms",
"invpcid",
"cqm",
"rdt_a",
"rdseed",
"adx",
"smap",
"clflushopt",
"clwb",
"sha_ni",
"xsaveopt",
"xsavec",
"xgetbv1",
"xsaves",
"cqm_llc",
"cqm_occup_llc",
"cqm_mbm_total",
"cqm_mbm_local",
"user_shstk",
"clzero",
"irperf",
"xsaveerptr",
"rdpru",
"wbnoinvd",
"arat",
"npt",
"lbrv",
"svm_lock",
"nrip_save",
"tsc_scale",
"vmcb_clean",
"flushbyasid",
"decodeassists",
"pausefilter",
"pfthreshold",
"avic",
"v_vmsave_vmload",
"vgif",
"v_spec_ctrl",
"umip",
"pku",
"ospke",
"vaes",
"vpclmulqdq",
"rdpid",
"overflow_recov",
"succor",
"smca",
"fsrm",
"debug_swap"
],
"microarchitecture": "Zen",
"tdp_w": null
},
"ram": {
"total_mb": 48096,
"used_mb": 17119,
"free_mb": 30977,
"shared_mb": 967,
"slots_total": 10,
"slots_used": 4,
"max_capacity_mb": 48096,
"ecc": false,
"layout": [
{
"slot": "DIMM 0",
"size_mb": 16384,
"type": "DDR4",
"speed_mhz": 3200,
"configured_speed_mhz": 3200,
"form_factor": "DIMM",
"type_detail": "Synchronous Unbuffered (Unregistered)",
"rank": "2",
"manufacturer": "Unknown",
"part_number": "CMW32GX4M2E3200C16 "
},
{
"slot": "DIMM 1",
"size_mb": 8192,
"type": "DDR4",
"speed_mhz": 3200,
"configured_speed_mhz": 3200,
"form_factor": "DIMM",
"type_detail": "Synchronous Unbuffered (Unregistered)",
"rank": "1",
"manufacturer": "Unknown",
"part_number": "BL8G32C16U4BL.M8FE"
},
{
"slot": "DIMM 0",
"size_mb": 16384,
"type": "DDR4",
"speed_mhz": 3200,
"configured_speed_mhz": 3200,
"form_factor": "DIMM",
"type_detail": "Synchronous Unbuffered (Unregistered)",
"rank": "2",
"manufacturer": "Unknown",
"part_number": "CMW32GX4M2E3200C16 "
},
{
"slot": "DIMM 1",
"size_mb": 8192,
"type": "DDR4",
"speed_mhz": 3200,
"configured_speed_mhz": 3200,
"form_factor": "DIMM",
"type_detail": "Synchronous Unbuffered (Unregistered)",
"rank": "1",
"manufacturer": "Unknown",
"part_number": "BL8G32C16U4BL.M8FE"
}
]
},
"gpu": {
"vendor": "NVIDIA",
"model": "NVIDIA GeForce RTX 3060",
"driver_version": "550.163.01",
"memory_dedicated_mb": 12288,
"memory_shared_mb": null,
"api_support": null
},
"storage": {
"devices": [
{
"name": "/dev/nvme0n1",
"type": "ssd",
"interface": "nvme",
"capacity_gb": 465.7617416381836,
"vendor": "CT500P2SSD8",
"model": "CT500P2SSD8",
"serial": "2138E5D60DD8",
"smart_health": "PASSED",
"temperature_c": 34
},
{
"name": "/dev/nvme1n1",
"type": "",
"interface": "nvme",
"capacity_gb": 465.7617416381836,
"vendor": "CT500P2SSD8",
"model": "CT500P2SSD8",
"serial": "2108E4FD258D",
"smart_health": "PASSED",
"temperature_c": 32
},
{
"name": "/dev/sda",
"type": "",
"interface": "sata",
"capacity_gb": 447.13167572021484,
"vendor": "ATA ",
"model": "KINGSTON SUV500480G",
"serial": "50026B768226A365",
"smart_health": "PASSED",
"temperature_c": 25
},
{
"name": "/dev/sdb",
"type": "",
"interface": "usb",
"capacity_gb": 0,
"vendor": "Generic-",
"model": "Compact Flash",
"serial": "058F63626479",
"smart_health": "UNAVAILABLE",
"temperature_c": 0
},
{
"name": "/dev/sdc",
"type": "",
"interface": "usb",
"capacity_gb": 0,
"vendor": "Generic-",
"model": "SD/MMC",
"serial": "058F63626479",
"smart_health": "UNAVAILABLE",
"temperature_c": 0
},
{
"name": "/dev/sdd",
"type": "",
"interface": "usb",
"capacity_gb": 0,
"vendor": "Generic-",
"model": "MS/MS-PRO",
"serial": "058F63626479",
"smart_health": "UNAVAILABLE",
"temperature_c": 0
},
{
"name": "/dev/sde",
"type": "",
"interface": "usb",
"capacity_gb": 0,
"vendor": "Generic-",
"model": "xD-Picture",
"serial": "058F63626479",
"smart_health": "UNAVAILABLE",
"temperature_c": 0
}
],
"partitions": [
{
"name": "/dev/nvme0n1p2",
"mount_point": "/",
"fs_type": "ext4",
"total_gb": 432.80120849609375,
"used_gb": 349.4388885498047,
"free_gb": 61.30714416503906
},
{
"name": "/dev/nvme0n1p1",
"mount_point": "/boot/efi",
"fs_type": "vfat",
"total_gb": 0.9512481689453125,
"used_gb": 0.008571624755859375,
"free_gb": 0.9426765441894531
}
]
},
"pci_devices": [
{
"slot": "00:00.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse Root Complex"
},
{
"slot": "00:00.2",
"class": "IOMMU",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse IOMMU"
},
{
"slot": "00:01.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:01.1",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse GPP Bridge"
},
{
"slot": "00:01.3",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse GPP Bridge"
},
{
"slot": "00:02.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:03.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:03.1",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse GPP Bridge"
},
{
"slot": "00:04.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:05.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:07.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:07.1",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]"
},
{
"slot": "00:08.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:08.1",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]"
},
{
"slot": "00:14.0",
"class": "SMBus",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "FCH SMBus Controller"
},
{
"slot": "00:14.3",
"class": "ISA bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "FCH LPC Bridge"
},
{
"slot": "00:18.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 0"
},
{
"slot": "00:18.1",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 1"
},
{
"slot": "00:18.2",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 2"
},
{
"slot": "00:18.3",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 3"
},
{
"slot": "00:18.4",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 4"
},
{
"slot": "00:18.5",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 5"
},
{
"slot": "00:18.6",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 6"
},
{
"slot": "00:18.7",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 7"
},
{
"slot": "01:00.0",
"class": "Non-Volatile memory controller",
"vendor": "Micron/Crucial Technology",
"device": "P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)"
},
{
"slot": "02:00.0",
"class": "USB controller",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset USB 3.1 xHCI Compliant Host Controller"
},
{
"slot": "02:00.1",
"class": "SATA controller",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset SATA Controller"
},
{
"slot": "02:00.2",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset PCIe Bridge"
},
{
"slot": "03:00.0",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset PCIe Port"
},
{
"slot": "03:01.0",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset PCIe Port"
},
{
"slot": "03:04.0",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset PCIe Port"
},
{
"slot": "03:08.0",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset PCIe Port"
},
{
"slot": "04:00.0",
"class": "Ethernet controller",
"vendor": "Realtek Semiconductor Co., Ltd.",
"device": "RTL8111/8168/8211/8411 PCI Express Gigabit Ethernet Controller"
},
{
"slot": "07:00.0",
"class": "Non-Volatile memory controller",
"vendor": "Micron/Crucial Technology",
"device": "P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)"
},
{
"slot": "08:00.0",
"class": "VGA compatible controller",
"vendor": "NVIDIA Corporation",
"device": "GA106 [GeForce RTX 3060 Lite Hash Rate]"
},
{
"slot": "08:00.1",
"class": "Audio device",
"vendor": "NVIDIA Corporation",
"device": "GA106 High Definition Audio Controller"
},
{
"slot": "09:00.0",
"class": "Non-Essential Instrumentation [1300]",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Function"
},
{
"slot": "0a:00.0",
"class": "Non-Essential Instrumentation [1300]",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse Reserved SPP"
},
{
"slot": "0a:00.1",
"class": "Encryption controller",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse Cryptographic Coprocessor PSPCPP"
},
{
"slot": "0a:00.3",
"class": "USB controller",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse USB 3.0 Host Controller"
},
{
"slot": "0a:00.4",
"class": "Audio device",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse HD Audio Controller"
}
],
"usb_devices": [
{
"bus": "001",
"device": "001",
"vendor_id": "1d6b",
"product_id": "0002",
"name": "Linux Foundation 2.0 root hub"
},
{
"bus": "001",
"device": "002",
"vendor_id": "058f",
"product_id": "6362",
"name": "Alcor Micro Corp. Flash Card Reader/Writer"
},
{
"bus": "002",
"device": "001",
"vendor_id": "1d6b",
"product_id": "0003",
"name": "Linux Foundation 3.0 root hub"
},
{
"bus": "003",
"device": "001",
"vendor_id": "1d6b",
"product_id": "0002",
"name": "Linux Foundation 2.0 root hub"
},
{
"bus": "003",
"device": "003",
"vendor_id": "046d",
"product_id": "c52b",
"name": "Logitech, Inc. Unifying Receiver"
},
{
"bus": "003",
"device": "004",
"vendor_id": "0bda",
"product_id": "b711",
"name": "Realtek Semiconductor Corp. RTL8188GU 802.11n WLAN Adapter (After Modeswitch)"
},
{
"bus": "004",
"device": "001",
"vendor_id": "1d6b",
"product_id": "0003",
"name": "Linux Foundation 3.0 root hub"
}
],
"network_shares": [],
"network": {
"interfaces": [
{
"name": "eno1",
"type": "ethernet",
"mac": "18:c0:4d:b5:65:74",
"ip": "10.0.1.109",
"speed_mbps": 1000,
"driver": "r8169",
"ssid": "",
"wake_on_lan": false
},
{
"name": "wlxe84e06a6c1fc",
"type": "wifi",
"mac": "1e:c1:a5:4c:a0:f5",
"ip": "",
"speed_mbps": null,
"driver": "rtl8xxxu",
"ssid": "",
"wake_on_lan": false
}
]
},
"motherboard": {
"vendor": "Gigabyte Technology Co., Ltd.",
"model": "B450 AORUS ELITE",
"bios_vendor": "American Megatrends International, LLC.",
"bios_version": "F65e",
"bios_date": "09/20/2023"
},
"os": {
"name": "Debian GNU/Linux",
"version": "13 (trixie)",
"kernel_version": "6.12.57+deb13-amd64",
"architecture": "x86_64",
"session_type": "",
"display_server": "",
"screen_resolution": "5560 x 1920",
"last_boot_time": "démarrage système 2026-01-11 09:11",
"uptime_seconds": 43791.83,
"battery_percentage": null,
"battery_status": "",
"battery_health": "",
"hostname": "aorus",
"virtualization_type": "kvm-host",
"desktop_environment": "GNOME"
},
"sensors": {
"cpu_temp_c": null,
"disk_temps_c": {
"nvme-pci-0100:Composite": 33.85,
"nvme-pci-0700:Composite": 31.85
},
"sensors": [
{
"chip": "nvme-pci-0700",
"name": "Composite",
"type": "temperature",
"value": 31.85,
"unit": "°C",
"alarm": false
},
{
"chip": "acpitz-acpi-0",
"name": "temp1",
"type": "temperature",
"value": 16.8,
"unit": "°C",
"alarm": false
},
{
"chip": "k10temp-pci-00c3",
"name": "Tctl",
"type": "temperature",
"value": 44.375,
"unit": "°C",
"alarm": false
},
{
"chip": "k10temp-pci-00c3",
"name": "Tccd1",
"type": "temperature",
"value": 29.75,
"unit": "°C",
"alarm": false
},
{
"chip": "k10temp-pci-00c3",
"name": "Tccd2",
"type": "temperature",
"value": 27.25,
"unit": "°C",
"alarm": false
},
{
"chip": "nvme-pci-0100",
"name": "Composite",
"type": "temperature",
"value": 33.85,
"unit": "°C",
"alarm": false
}
]
},
"audio": {
"hardware": {
"pci_audio_devices": [
"08:00.1 Audio device: NVIDIA Corporation GA106 High Definition Audio Controller (rev a1)",
"0a:00.4 Audio device: Advanced Micro Devices, Inc. [AMD] Starship/Matisse HD Audio Controller"
],
"alsa_playback": "**** Liste des périphériques matériels PLAYBACK ****\ncarte 0 : NVidia [HDA NVidia], périphérique 3 : HDMI 0 [LG ULTRAWIDE]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\ncarte 0 : NVidia [HDA NVidia], périphérique 7 : HDMI 1 [K243Y]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\ncarte 0 : NVidia [HDA NVidia], périphérique 8 : HDMI 2 [HDMI 2]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\ncarte 0 : NVidia [HDA NVidia], périphérique 9 : HDMI 3 [HDMI 3]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\ncarte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]\n Sous-périphériques : 0/1\n Sous-périphérique #0 : subdevice #0\ncarte 1 : Generic [HD-Audio Generic], périphérique 1 : ALC892 Digital [ALC892 Digital]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\n",
"alsa_capture": "**** Liste des périphériques matériels CAPTURE ****\ncarte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\ncarte 1 : Generic [HD-Audio Generic], périphérique 2 : ALC892 Alt Analog [ALC892 Alt Analog]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\n",
"pcm_devices": [
"null",
"Discard all samples (playback) or generate zero samples (capture)",
"pipewire",
"PipeWire Sound Server",
"default",
"Default ALSA Output (currently PipeWire Media Server)",
"hw:CARD=NVidia,DEV=3",
"HDA NVidia, LG ULTRAWIDE",
"Direct hardware device without any conversions",
"hw:CARD=NVidia,DEV=7",
"HDA NVidia, K243Y",
"Direct hardware device without any conversions",
"hw:CARD=NVidia,DEV=8",
"HDA NVidia, HDMI 2",
"Direct hardware device without any conversions",
"hw:CARD=NVidia,DEV=9",
"HDA NVidia, HDMI 3",
"Direct hardware device without any conversions",
"plughw:CARD=NVidia,DEV=3",
"HDA NVidia, LG ULTRAWIDE",
"Hardware device with all software conversions",
"plughw:CARD=NVidia,DEV=7",
"HDA NVidia, K243Y",
"Hardware device with all software conversions",
"plughw:CARD=NVidia,DEV=8",
"HDA NVidia, HDMI 2",
"Hardware device with all software conversions",
"plughw:CARD=NVidia,DEV=9",
"HDA NVidia, HDMI 3",
"Hardware device with all software conversions",
"hdmi:CARD=NVidia,DEV=0",
"HDA NVidia, LG ULTRAWIDE",
"HDMI Audio Output",
"hdmi:CARD=NVidia,DEV=1",
"HDA NVidia, K243Y",
"HDMI Audio Output",
"hdmi:CARD=NVidia,DEV=2",
"HDA NVidia, HDMI 2",
"HDMI Audio Output",
"hdmi:CARD=NVidia,DEV=3",
"HDA NVidia, HDMI 3",
"HDMI Audio Output",
"dmix:CARD=NVidia,DEV=3",
"HDA NVidia, LG ULTRAWIDE",
"Direct sample mixing device",
"dmix:CARD=NVidia,DEV=7",
"HDA NVidia, K243Y",
"Direct sample mixing device",
"dmix:CARD=NVidia,DEV=8",
"HDA NVidia, HDMI 2",
"Direct sample mixing device",
"dmix:CARD=NVidia,DEV=9",
"HDA NVidia, HDMI 3",
"Direct sample mixing device",
"hw:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"Direct hardware device without any conversions",
"hw:CARD=Generic,DEV=1",
"HD-Audio Generic, ALC892 Digital",
"Direct hardware device without any conversions",
"plughw:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"Hardware device with all software conversions",
"plughw:CARD=Generic,DEV=1",
"HD-Audio Generic, ALC892 Digital",
"Hardware device with all software conversions",
"sysdefault:CARD=Generic",
"HD-Audio Generic, ALC892 Analog",
"Default Audio Device",
"front:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"Front output / input",
"surround21:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"2.1 Surround output to Front and Subwoofer speakers",
"surround40:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"4.0 Surround output to Front and Rear speakers",
"surround41:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"4.1 Surround output to Front, Rear and Subwoofer speakers",
"surround50:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"5.0 Surround output to Front, Center and Rear speakers",
"surround51:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"5.1 Surround output to Front, Center, Rear and Subwoofer speakers",
"surround71:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"7.1 Surround output to Front, Center, Side, Rear and Woofer speakers",
"iec958:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Digital",
"IEC958 (S/PDIF) Digital Audio Output",
"dmix:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"Direct sample mixing device",
"dmix:CARD=Generic,DEV=1",
"HD-Audio Generic, ALC892 Digital",
"Direct sample mixing device"
]
},
"software": {
"backend": "",
"server_name": "",
"server_version": "",
"default_sink": null,
"default_source": null,
"sinks": null,
"sources": null
}
},
"raw_info": {
"debug": "active",
"dmidecode": "# dmidecode 3.6\nGetting SMBIOS data from sysfs.\nSMBIOS 3.3.0 present.\n\nHandle 0x0000, DMI type 0, 26 bytes\nBIOS Information\n\tVendor: American Megatrends International, LLC.\n\tVersion: F65e\n\tRelease Date: 09/20/2023\n\tAddress: 0xF0000\n\tRuntime Size: 64 kB\n\tROM Size: 16 MB\n\tCharacteristics:\n\t\tPCI is supported\n\t\tBIOS is upgradeable\n\t\tBIOS shadowing is allowed\n\t\tBoot from CD is supported\n\t\tSelectable boot is supported\n\t\tBIOS ROM is socketed\n\t\tEDD is supported\n\t\tJapanese floppy for NEC 9800 1.2 MB is supported (int 13h)\n\t\tJapanese floppy for Toshiba 1.2 MB is supported (int 13h)\n\t\t5.25\"/360 kB floppy services are supported (int 13h)\n\t\t5.25\"/1.2 MB floppy services are supported (int 13h)\n\t\t3.5\"/720 kB floppy services are supported (int 13h)\n\t\t3.5\"/2.88 MB floppy services are supported (int 13h)\n\t\tPrint screen service is supported (int 5h)\n\t\tSerial services are supported (int 14h)\n\t\tPrinter services are supported (int 17h)\n\t\tCGA/mono video services are supported (int 10h)\n\t\tUSB legacy is supported\n\t\tBIOS boot specification is supported\n\t\tTargeted content distribution is supported\n\t\tUEFI is supported\n\tBIOS Revision: 5.17\n\nHandle 0x0001, DMI type 1, 27 bytes\nSystem Information\n\tManufacturer: Gigabyte Technology Co., Ltd.\n\tProduct Name: B450 AORUS ELITE\n\tVersion: Default string\n\tSerial Number: Default string\n\tUUID: 03c00218-044d-05b5-6506-740700080009\n\tWake-up Type: Power Switch\n\tSKU Number: Default string\n\tFamily: B450 MB\n\nHandle 0x0002, DMI type 2, 15 bytes\nBase Board Information\n\tManufacturer: Gigabyte Technology Co., Ltd.\n\tProduct Name: B450 AORUS ELITE\n\tVersion: Default string\n\tSerial Number: Default string\n\tAsset Tag: Default string\n\tFeatures:\n\t\tBoard is a hosting board\n\t\tBoard is replaceable\n\tLocation In Chassis: Default string\n\tChassis Handle: 0x0003\n\tType: Motherboard\n\tContained Object Handles: 0\n\nHandle 0x000B, DMI type 16, 23 bytes\nPhysical Memory Array\n\tLocation: System Board Or Motherboard\n\tUse: System Memory\n\tError Correction Type: None\n\tMaximum Capacity: 128 GB\n\tError Information Handle: 0x000A\n\tNumber Of Devices: 4\n\nHandle 0x0013, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0012\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 16 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 0\n\tBank Locator: P0 CHANNEL A\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: 00000000\n\tAsset Tag: Not Specified\n\tPart Number: CMW32GX4M2E3200C16 \n\tRank: 2\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: Unknown\n\tMaximum Voltage: Unknown\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 3, Hex 0x9E\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 16 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x0016, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0015\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 8 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 1\n\tBank Locator: P0 CHANNEL A\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: E3C4408B\n\tAsset Tag: Not Specified\n\tPart Number: BL8G32C16U4BL.M8FE\n\tRank: 1\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: 1.2 V\n\tMaximum Voltage: 1.2 V\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 6, Hex 0x9B\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 8 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x0019, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0018\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 16 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 0\n\tBank Locator: P0 CHANNEL B\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: 00000000\n\tAsset Tag: Not Specified\n\tPart Number: CMW32GX4M2E3200C16 \n\tRank: 2\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: Unknown\n\tMaximum Voltage: Unknown\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 3, Hex 0x9E\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 16 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x001C, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x001B\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 8 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 1\n\tBank Locator: P0 CHANNEL B\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: E3C44087\n\tAsset Tag: Not Specified\n\tPart Number: BL8G32C16U4BL.M8FE\n\tRank: 1\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: 1.2 V\n\tMaximum Voltage: 1.2 V\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 6, Hex 0x9B\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 8 GB\n\tCache Size: None\n\tLogical Size: None\n\n",
"lsblk": "NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS\nloop0 7:0 0 118,5M 1 loop /snap/iptvnator/92\nloop1 7:1 0 48,1M 1 loop /snap/snapd/25935\nloop2 7:2 0 50,9M 1 loop /snap/snapd/25577\nloop3 7:3 0 4K 1 loop /snap/bare/5\nloop4 7:4 0 91,7M 1 loop /snap/gtk-common-themes/1535\nloop5 7:5 0 55,5M 1 loop /snap/core18/2976\nloop6 7:6 0 164,8M 1 loop /snap/gnome-3-28-1804/198\nloop7 7:7 0 0B 0 loop \nsda 8:0 0 447,1G 0 disk \n└─sda1 8:1 0 447,1G 0 part \nsdb 8:16 1 0B 0 disk \nsdc 8:32 1 0B 0 disk \nsdd 8:48 1 0B 0 disk \nsde 8:64 1 0B 0 disk \nnvme0n1 259:0 0 465,8G 0 disk \n├─nvme0n1p1 259:1 0 976M 0 part /boot/efi\n├─nvme0n1p2 259:2 0 440,8G 0 part /\n└─nvme0n1p3 259:3 0 24G 0 part [SWAP]\nnvme1n1 259:4 0 465,8G 0 disk \n├─nvme1n1p1 259:5 0 50M 0 part \n├─nvme1n1p2 259:6 0 464,3G 0 part \n├─nvme1n1p3 259:7 0 808M 0 part \n├─nvme1n1p4 259:8 0 100M 0 part \n└─nvme1n1p5 259:9 0 522M 0 part \n",
"lscpu": "Architecture : x86_64\nMode(s) opératoire(s) des processeurs : 32-bit, 64-bit\nTailles des adresses: 48 bits physical, 48 bits virtual\nBoutisme : Little Endian\nProcesseur(s) : 24\nListe de processeur(s) en ligne : 0-23\nIdentifiant constructeur : AuthenticAMD\nNom de modèle : AMD Ryzen 9 5900X 12-Core Processor\nFamille de processeur : 25\nModèle : 33\nThread(s) par cœur : 2\nCœur(s) par socket : 12\nSocket(s) : 1\nRévision : 2\nAccroissement de fréquence : activé\nmultiplication des MHz du/des CPU(s) : 73%\nVitesse maximale du processeur en MHz : 4951,0000\nVitesse minimale du processeur en MHz : 550,0000\nBogoMIPS : 7399,98\nDrapeaux : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local user_shstk clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm debug_swap\nVirtualisation : AMD-V\nCache L1d : 384 KiB (12 instances)\nCache L1i : 384 KiB (12 instances)\nCache L2 : 6 MiB (12 instances)\nCache L3 : 64 MiB (2 instances)\nNœud(s) NUMA : 1\nNœud NUMA 0 de processeur(s) : 0-23\nVulnérabilité Gather data sampling : Not affected\nVulnérabilité Indirect target selection : Not affected\nVulnérabilité Itlb multihit : Not affected\nVulnérabilité L1tf : Not affected\nVulnérabilité Mds : Not affected\nVulnérabilité Meltdown : Not affected\nVulnérabilité Mmio stale data : Not affected\nVulnérabilité Reg file data sampling : Not affected\nVulnérabilité Retbleed : Not affected\nVulnérabilité Spec rstack overflow : Mitigation; Safe RET\nVulnérabilité Spec store bypass : Mitigation; Speculative Store Bypass disabled via prctl\nVulnérabilité Spectre v1 : Mitigation; usercopy/swapgs barriers and __user pointer sanitization\nVulnérabilité Spectre v2 : Mitigation; Retpolines; IBPB conditional; IBRS_FW; STIBP always-on; RSB filling; PBRSB-eIBRS Not affected; BHI Not affected\nVulnérabilité Srbds : Not affected\nVulnérabilité Tsa : Vulnerable: Clear CPU buffers attempted, no microcode\nVulnérabilité Tsx async abort : Not affected\nVulnérabilité Vmscape : Mitigation; IBPB before exit to userspace\n"
}
},
"results": {
"cpu": {
"events_per_sec": 37511.195,
"events_per_sec_single": 5613.25,
"events_per_sec_multi": 69409.14,
"duration_s": 20.000500000000002,
"score": 37511.195,
"score_single": 5613.25,
"score_multi": 69409.14
},
"memory": {
"throughput_mib_s": 8941.73,
"score": 8941.73
},
"disk": {
"read_mb_s": 40.53125,
"write_mb_s": 40.505859375,
"iops_read": 10376.054132,
"iops_write": 10369.521016,
"latency_ms": 0.074296883919,
"score": 40.5185546875
},
"network": {
"upload_mbps": 942.2470812350741,
"download_mbps": 938.9486813850356,
"ping_ms": 0.459,
"jitter_ms": null,
"packet_loss_percent": null,
"score": 940.5978813100548
},
"gpu": {
"glmark2_score": null,
"score": null
},
"global_score": 77832.37099068504
},
"raw_info": {
"debug": "active",
"dmidecode": "# dmidecode 3.6\nGetting SMBIOS data from sysfs.\nSMBIOS 3.3.0 present.\n\nHandle 0x0000, DMI type 0, 26 bytes\nBIOS Information\n\tVendor: American Megatrends International, LLC.\n\tVersion: F65e\n\tRelease Date: 09/20/2023\n\tAddress: 0xF0000\n\tRuntime Size: 64 kB\n\tROM Size: 16 MB\n\tCharacteristics:\n\t\tPCI is supported\n\t\tBIOS is upgradeable\n\t\tBIOS shadowing is allowed\n\t\tBoot from CD is supported\n\t\tSelectable boot is supported\n\t\tBIOS ROM is socketed\n\t\tEDD is supported\n\t\tJapanese floppy for NEC 9800 1.2 MB is supported (int 13h)\n\t\tJapanese floppy for Toshiba 1.2 MB is supported (int 13h)\n\t\t5.25\"/360 kB floppy services are supported (int 13h)\n\t\t5.25\"/1.2 MB floppy services are supported (int 13h)\n\t\t3.5\"/720 kB floppy services are supported (int 13h)\n\t\t3.5\"/2.88 MB floppy services are supported (int 13h)\n\t\tPrint screen service is supported (int 5h)\n\t\tSerial services are supported (int 14h)\n\t\tPrinter services are supported (int 17h)\n\t\tCGA/mono video services are supported (int 10h)\n\t\tUSB legacy is supported\n\t\tBIOS boot specification is supported\n\t\tTargeted content distribution is supported\n\t\tUEFI is supported\n\tBIOS Revision: 5.17\n\nHandle 0x0001, DMI type 1, 27 bytes\nSystem Information\n\tManufacturer: Gigabyte Technology Co., Ltd.\n\tProduct Name: B450 AORUS ELITE\n\tVersion: Default string\n\tSerial Number: Default string\n\tUUID: 03c00218-044d-05b5-6506-740700080009\n\tWake-up Type: Power Switch\n\tSKU Number: Default string\n\tFamily: B450 MB\n\nHandle 0x0002, DMI type 2, 15 bytes\nBase Board Information\n\tManufacturer: Gigabyte Technology Co., Ltd.\n\tProduct Name: B450 AORUS ELITE\n\tVersion: Default string\n\tSerial Number: Default string\n\tAsset Tag: Default string\n\tFeatures:\n\t\tBoard is a hosting board\n\t\tBoard is replaceable\n\tLocation In Chassis: Default string\n\tChassis Handle: 0x0003\n\tType: Motherboard\n\tContained Object Handles: 0\n\nHandle 0x000B, DMI type 16, 23 bytes\nPhysical Memory Array\n\tLocation: System Board Or Motherboard\n\tUse: System Memory\n\tError Correction Type: None\n\tMaximum Capacity: 128 GB\n\tError Information Handle: 0x000A\n\tNumber Of Devices: 4\n\nHandle 0x0013, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0012\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 16 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 0\n\tBank Locator: P0 CHANNEL A\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: 00000000\n\tAsset Tag: Not Specified\n\tPart Number: CMW32GX4M2E3200C16 \n\tRank: 2\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: Unknown\n\tMaximum Voltage: Unknown\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 3, Hex 0x9E\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 16 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x0016, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0015\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 8 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 1\n\tBank Locator: P0 CHANNEL A\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: E3C4408B\n\tAsset Tag: Not Specified\n\tPart Number: BL8G32C16U4BL.M8FE\n\tRank: 1\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: 1.2 V\n\tMaximum Voltage: 1.2 V\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 6, Hex 0x9B\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 8 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x0019, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0018\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 16 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 0\n\tBank Locator: P0 CHANNEL B\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: 00000000\n\tAsset Tag: Not Specified\n\tPart Number: CMW32GX4M2E3200C16 \n\tRank: 2\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: Unknown\n\tMaximum Voltage: Unknown\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 3, Hex 0x9E\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 16 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x001C, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x001B\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 8 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 1\n\tBank Locator: P0 CHANNEL B\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: E3C44087\n\tAsset Tag: Not Specified\n\tPart Number: BL8G32C16U4BL.M8FE\n\tRank: 1\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: 1.2 V\n\tMaximum Voltage: 1.2 V\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 6, Hex 0x9B\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 8 GB\n\tCache Size: None\n\tLogical Size: None\n\n",
"lsblk": "NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS\nloop0 7:0 0 118,5M 1 loop /snap/iptvnator/92\nloop1 7:1 0 48,1M 1 loop /snap/snapd/25935\nloop2 7:2 0 50,9M 1 loop /snap/snapd/25577\nloop3 7:3 0 4K 1 loop /snap/bare/5\nloop4 7:4 0 91,7M 1 loop /snap/gtk-common-themes/1535\nloop5 7:5 0 55,5M 1 loop /snap/core18/2976\nloop6 7:6 0 164,8M 1 loop /snap/gnome-3-28-1804/198\nloop7 7:7 0 0B 0 loop \nsda 8:0 0 447,1G 0 disk \n└─sda1 8:1 0 447,1G 0 part \nsdb 8:16 1 0B 0 disk \nsdc 8:32 1 0B 0 disk \nsdd 8:48 1 0B 0 disk \nsde 8:64 1 0B 0 disk \nnvme0n1 259:0 0 465,8G 0 disk \n├─nvme0n1p1 259:1 0 976M 0 part /boot/efi\n├─nvme0n1p2 259:2 0 440,8G 0 part /\n└─nvme0n1p3 259:3 0 24G 0 part [SWAP]\nnvme1n1 259:4 0 465,8G 0 disk \n├─nvme1n1p1 259:5 0 50M 0 part \n├─nvme1n1p2 259:6 0 464,3G 0 part \n├─nvme1n1p3 259:7 0 808M 0 part \n├─nvme1n1p4 259:8 0 100M 0 part \n└─nvme1n1p5 259:9 0 522M 0 part \n",
"lscpu": "Architecture : x86_64\nMode(s) opératoire(s) des processeurs : 32-bit, 64-bit\nTailles des adresses: 48 bits physical, 48 bits virtual\nBoutisme : Little Endian\nProcesseur(s) : 24\nListe de processeur(s) en ligne : 0-23\nIdentifiant constructeur : AuthenticAMD\nNom de modèle : AMD Ryzen 9 5900X 12-Core Processor\nFamille de processeur : 25\nModèle : 33\nThread(s) par cœur : 2\nCœur(s) par socket : 12\nSocket(s) : 1\nRévision : 2\nAccroissement de fréquence : activé\nmultiplication des MHz du/des CPU(s) : 73%\nVitesse maximale du processeur en MHz : 4951,0000\nVitesse minimale du processeur en MHz : 550,0000\nBogoMIPS : 7399,98\nDrapeaux : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local user_shstk clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm debug_swap\nVirtualisation : AMD-V\nCache L1d : 384 KiB (12 instances)\nCache L1i : 384 KiB (12 instances)\nCache L2 : 6 MiB (12 instances)\nCache L3 : 64 MiB (2 instances)\nNœud(s) NUMA : 1\nNœud NUMA 0 de processeur(s) : 0-23\nVulnérabilité Gather data sampling : Not affected\nVulnérabilité Indirect target selection : Not affected\nVulnérabilité Itlb multihit : Not affected\nVulnérabilité L1tf : Not affected\nVulnérabilité Mds : Not affected\nVulnérabilité Meltdown : Not affected\nVulnérabilité Mmio stale data : Not affected\nVulnérabilité Reg file data sampling : Not affected\nVulnérabilité Retbleed : Not affected\nVulnérabilité Spec rstack overflow : Mitigation; Safe RET\nVulnérabilité Spec store bypass : Mitigation; Speculative Store Bypass disabled via prctl\nVulnérabilité Spectre v1 : Mitigation; usercopy/swapgs barriers and __user pointer sanitization\nVulnérabilité Spectre v2 : Mitigation; Retpolines; IBPB conditional; IBRS_FW; STIBP always-on; RSB filling; PBRSB-eIBRS Not affected; BHI Not affected\nVulnérabilité Srbds : Not affected\nVulnérabilité Tsa : Vulnerable: Clear CPU buffers attempted, no microcode\nVulnérabilité Tsx async abort : Not affected\nVulnérabilité Vmscape : Mitigation; IBPB before exit to userspace\n"
}
}
[DEBUG] Payload sauvegardé au format JSON dans bench_payload_last.json (49194 octets)
[DEBUG] Contenu de /home/gilles/Documents/vscode/bis/bench_go/config.yaml :
# bench-client config.yaml
# Objectif: décrire précisément
# - les outils à utiliser (et exigences d'installation)
# - les informations à collecter
# - les benchmarks à exécuter
# - les paramètres (timeouts, limites, endpoints, debug)
#
# Le binaire (Go/Rust) charge ce fichier depuis HTTP(S), valide les bornes, applique des defaults sûrs,
# et peut fallback sur une config locale si indisponible.
config_version: 1
profile: default
backend:
# URL finale du POST (le programme peut aussi accepter server_base_url + path)
url: "http://10.0.0.50:8007/api/benchmark"
# Auth: idéalement injecté par variable d'env sur le client; éviter de mettre le token dans la config distante.
auth:
mode: bearer_env
env_var: "test_hardware_perf"
http:
timeout_s: 15
retries: 2
retry_backoff_s: 2
tls:
verify: true
remote_config:
# Options de cache/ETag si le binaire gère le rafraîchissement
cache_path: "/var/cache/bench-client/config.yaml"
use_etag: true
refresh_max_age_s: 86400
runtime:
# Timeouts globaux de sécurité
max_total_runtime_s: 480
command_timeout_s: 30
command_timeout_overrides:
dmidecode_s: 20
smartctl_s: 10
lsblk_s: 10
sysbench_cpu_s: 120
sysbench_mem_s: 60
fio_s: 120
iperf3_s: 20
temp_dir: "/tmp"
locale: "C"
path_prepend:
- "/usr/sbin"
- "/sbin"
logging:
level: info # trace|debug|info|warn|error
progress: true # affichage étapes (1/N) + items
show_command_lines: false
capture_raw_output: true # remonte dans raw_info (attention taille)
raw_output_max_kb: 5120
save_payload_to_tmp: true
payload_tmp_dir: "/tmp"
payload_filename_prefix: "bench_payload_"
interactive_pause_on_debug: true
payload:
dir: "."
prefix: "bench_payload_"
always_save: true
device_identity:
# device_identifier envoyé au backend
prefer:
- hostname
- machine_id
hostname_command: "hostname"
machine_id_path: "/etc/machine-id"
dependencies:
# Liste des programmes externes (installés par le script shell)
# Le binaire doit pouvoir:
# - détecter présence/version (optionnel)
# - marquer chaque "feature" comme disponible ou non
required_base:
- name: "curl"
purpose: "Téléchargements/diagnostics (souvent côté script)"
- name: "jq"
purpose: "Optionnel: debug/validation (souvent côté script, pas nécessaire au binaire)"
- name: "lscpu"
purpose: "Infos CPU"
- name: "free"
purpose: "Infos mémoire"
- name: "lsblk"
purpose: "Infos stockage/partitions"
- name: "ip"
purpose: "Interfaces réseau, adresses IP"
- name: "bc"
purpose: "Optionnel: calculs (si pas fait en code)"
- name: "dmidecode"
purpose: "Infos BIOS/carte mère/RAM/DMI"
requires_root: true
- name: "smartctl"
package: "smartmontools"
purpose: "Infos disques SMART"
requires_root: true
- name: "ethtool"
purpose: "Vitesse réseau, Wake-on-LAN, driver"
requires_root: true
- name: "lspci"
package: "pciutils"
purpose: "Liste périphériques PCI (GPU/Audio/etc.)"
- name: "lsusb"
package: "usbutils"
purpose: "Liste périphériques USB"
- name: "aplay"
package: "alsa-utils"
purpose: "Inventaire audio ALSA"
- name: "arecord"
package: "alsa-utils"
purpose: "Inventaire capture ALSA"
- name: "pactl"
package: "pulseaudio-utils"
purpose: "Infos audio PulseAudio/PipeWire (si dispo)"
- name: "iw"
package: "iw"
purpose: "SSID + bitrate Wi-Fi"
- name: "loginctl"
package: "systemd"
purpose: "Type de session (x11/wayland/tty)"
- name: "xrandr"
package: "x11-xserver-utils"
purpose: "Résolution écran (X11)"
- name: "xdpyinfo"
package: "x11-utils"
purpose: "Résolution écran (fallback X11)"
- name: "swaymsg"
package: "sway"
purpose: "Résolution écran (Wayland/Sway)"
- name: "nvidia-smi"
package: "nvidia-utils"
purpose: "Infos GPU NVIDIA (si présent)"
- name: "systemd-detect-virt"
package: "systemd"
purpose: "Détection virtualisation/proxmox"
- name: "pveversion"
package: "pve-manager"
purpose: "Détection hôte Proxmox (si présent)"
benchmark_tools:
- name: "sysbench"
purpose: "Bench CPU et mémoire"
- name: "fio"
purpose: "Bench disque"
- name: "iperf3"
purpose: "Bench réseau"
- name: "ping"
package: "iputils-ping"
purpose: "Vérifier accessibilité iperf server"
- name: "nc"
package: "netcat-openbsd"
purpose: "Tester port 5201 iperf3"
collection:
# Liste des infos à récupérer, structurées comme dans ton script.
system:
enabled: true
items:
- hostname
- os_id
- os_version
- kernel_version
- architecture
- session_type # XDG_SESSION_TYPE / loginctl / DISPLAY / WAYLAND_DISPLAY
- screen_resolution # xrandr/xdpyinfo/swaymsg
- last_boot_time # who -b
- uptime_seconds # /proc/uptime
- battery_percentage # /sys/class/power_supply/BAT*/capacity
- battery_status # /sys/class/power_supply/BAT*/status
- battery_health # /sys/class/power_supply/BAT*/health ou uevent
- virtualization # systemd-detect-virt + proxmox hints
virtualization_detection:
enabled: true
proxmox:
detect_host_by:
- pveversion
- "/etc/pve"
detect_guest_by:
- systemd_detect_virt
- qemu_guest_agent
- dmidecode_manufacturer_product_matches: ["qemu", "proxmox"]
capture:
- is_proxmox_host
- is_proxmox_guest
- proxmox_version
- virtualization_type
cpu:
enabled: true
source:
primary: lscpu
supplement_dmidecode: true
items:
- vendor
- model
- cores_physical # cores_per_socket * sockets
- threads # nproc
- base_freq_ghz # lscpu CPU MHz -> GHz
- max_freq_ghz # lscpu CPU max MHz -> GHz
- cache_l1_kb
- cache_l2_kb
- cache_l3_kb
- flags # CPU flags list
- microarchitecture # depuis dmidecode type 4 (Family) si manquant
raw_capture:
- lscpu_output
ram:
enabled: true
sources:
- free
- dmidecode
items:
- total_mb
- used_mb
- free_mb
- shared_mb
- slots_total # dmidecode -t 16
- slots_used # dmidecode -t 17
- max_capacity_mb # dmidecode -t 16 Maximum Capacity
- ecc # dmidecode -t memory Error Correction Type
- layout # par slot: locator, size, type, speed, configured_speed, form_factor, type_detail, rank, manufacturer, part_number
raw_capture:
- dmidecode_full
gpu:
enabled: true
sources:
- lspci
- nvidia_smi_optional
items:
- vendor # NVIDIA/AMD/Intel/Unknown
- model # lspci vga/3d ou nvidia-smi name
- memory_dedicated_mb # nvidia-smi (si dispo)
- driver_version # nvidia-smi (si dispo)
motherboard_bios:
enabled: true
source: dmidecode
items:
- baseboard_manufacturer
- baseboard_product_name
- bios_vendor
- bios_version
- bios_release_date
pci_devices:
enabled: true
source: lspci
items:
- slot
- class
- vendor
- device
usb_devices:
enabled: true
source: lsusb
items:
- bus
- device
- vendor_id
- product_id
- name
audio:
enabled: true
sources:
- lspci
- alsa
- pactl_optional
items:
hardware:
- pci_audio_devices # lspci audio
- alsa_playback # aplay -l
- alsa_capture # arecord -l
- pcm_devices # aplay -L
software:
- backend # pipewire/pulseaudio/alsa
- server_name
- server_version
- default_sink
- default_source
- sinks
- sources
storage:
enabled: true
sources:
- lsblk
- smartctl
devices:
enumerate_by: "lsblk_disks" # lsblk -d -n -o NAME,TYPE
include_removable: false
items:
- device # /dev/sda
- model # smartctl -i
- serial # smartctl -i
- size # lsblk
- type # rota -> ssd/hdd
- interface # tran
- temperature_c # smartctl -A
- smart_health # smartctl -H
partitions:
enabled: true
source: lsblk_json
items:
- name
- mount_point
- fs_type
- total_gb
- used_gb
- free_gb
raw_capture:
- lsblk_output
network_shares:
enabled: true
source: "/proc/mounts"
detect_fs_types:
- nfs
- nfs4
- cifs
- smbfs
- fuse.cifs
- fuse.smbfs
- afp
- afpfs
- fuse.afpfs
- sshfs
- fuse.sshfs
- ftpfs
- curlftpfs
- fuse.ftpfs
- davfs
- davfs2
- fuse.webdavfs
items:
- protocol
- source
- mount_point
- fs_type
- options
- total_gb
- used_gb
- free_gb
network:
enabled: true
sources:
- ip
- ethtool
- iw_optional
interface_filter:
# reprise logique script: UP|UNKNOWN sauf interfaces virtuelles connues
include_states: ["UP", "UNKNOWN"]
exclude_name_prefixes: ["lo", "docker", "br-", "veth", "tap", "fw"]
items:
- name
- type # bridge|ethernet|wifi|unknown
- mac
- ip_address
- speed_mbps # ethtool speed ou iw tx bitrate
- driver # ethtool -i ou /sys/.../driver
- ssid # iw dev link
- wake_on_lan # ethtool Wake-on
raw_info:
enabled: true
include:
- lscpu
- lsblk
- dmidecode
max_size_kb: 5120
benchmarks:
enabled: true
# Pondérations identiques à ton script (si résultat dispo)
weights:
cpu: 0.40
memory: 0.20
disk: 0.20
network: 0.10
gpu: 0.10
cpu_sysbench:
enabled: true
tool: sysbench
params:
cpu_max_prime: 20000
single_thread: 1
multi_threads: "all" # all -> nproc
outputs:
- events_per_sec_single
- events_per_sec_multi
- duration_s
- score_single
- score_multi
- score_global
memory_sysbench:
enabled: true
tool: sysbench
params:
total_size: "1G"
outputs:
- throughput_mib_s
- score
disk_fio:
enabled: true
tool: fio
safety:
# Empêcher un bench destructif ou trop long
max_runtime_s: 60
max_size: "1G"
direct: 1
params:
name: "bench"
ioengine: "libaio"
rw: "randrw"
bs: "4k"
size: "500M"
numjobs: 1
runtime_s: 30
time_based: true
output_format: "json"
outputs:
- read_mb_s
- write_mb_s
- iops_read
- iops_write
- latency_ms
- score
network_iperf3:
enabled: true
tool: iperf3
server: "10.0.0.50"
port: 5201
prechecks:
ping:
enabled: true
count: 1
timeout_s: 1
port_check:
enabled: true
tool: nc
timeout_s: 2
params:
duration_s: 10
bidir: true
json: true
outputs:
- upload_mbps
- download_mbps
- ping_ms
- score
# placeholders (comme ton script)
- jitter_ms
- packet_loss_percent
gpu:
enabled: false
note: "GPU bench non implémenté dans le script d'origine (placeholder)."
payload_mapping:
# Le binaire peut mapper ses structures internes vers le schéma backend actuel.
# Utile si ton backend attend des champs précis.
device_identifier: "system.hostname"
bench_script_version_field: "bench_client_version"
include_sections:
- hardware
- results
- raw_info
limits:
# Bornes générales de sécurité (validation côté client)
max_payload_kb: 1024
max_raw_info_kb: 5120
max_fio_runtime_s: 60
max_fio_size_bytes: 1073741824 # 1 GiB
max_sysbench_cpu_prime: 50000
max_iperf_duration_s: 30
features:
# Permet d'activer/désactiver rapidement des blocs selon machines
enable_screen_resolution_detection: true
enable_battery_detection: true
enable_network_share_detection: true
enable_audio_detection: true
enable_proxmox_detection: true
[DEBUG] Config chargée : {ConfigVersion:1 Backend:{URL:http://10.0.0.50:8007/api/benchmark Auth:{Mode:bearer_env EnvVar:test_hardware_perf} HTTP:{TimeoutS:15 Retries:2 RetryBackoffS:2 TLSVerify:false}} Runtime:{MaxTotalRuntime:480 CommandTimeout:30 TempDir:/tmp Locale:C PathPrepend:[/usr/sbin /sbin]} Logging:{Level:info Progress:true ShowCommandLines:false CaptureRawOutput:true RawOutputMaxKB:5120 SavePayloadToTmp:true PayloadTmpDir:/tmp PayloadFilenamePrefix:bench_payload_ InteractiveDebugPause:true} Payload:{Dir:. Prefix:bench_payload_ Always:true} Benchmarks:{Enabled:true Weights:map[cpu:0.4 disk:0.2 gpu:0.1 memory:0.2 network:0.1] CPU:{Enabled:true Tool:sysbench Server: Port:0 Params:map[cpu_max_prime:20000 multi_threads:all single_thread:1] Safety:map[]} Memory:{Enabled:true Tool:sysbench Server: Port:0 Params:map[total_size:1G] Safety:map[]} Disk:{Enabled:true Tool:fio Server: Port:0 Params:map[bs:4k ioengine:libaio name:bench numjobs:1 output_format:json runtime_s:30 rw:randrw size:500M time_based:true] Safety:map[direct:1 max_runtime_s:60 max_size:1G]} Network:{Enabled:true Tool:iperf3 Server:10.0.0.50 Port:5201 Params:map[bidir:true duration_s:10 json:true] Safety:map[]}} Collection:{System:{Enabled:true} CPU:{Enabled:true} RAM:{Enabled:true} Storage:{Enabled:true} Network:{Enabled:true} GPU:{Enabled:true} Audio:{Enabled:true} PCI:{Enabled:true} USB:{Enabled:true}} RawInfo:{Enabled:true Include:[lscpu lsblk dmidecode] MaxSizeKB:5120}}
[DEBUG] Configuration complète : {ConfigVersion:1 Backend:{URL:http://10.0.0.50:8007/api/benchmark Auth:{Mode:bearer_env EnvVar:test_hardware_perf} HTTP:{TimeoutS:15 Retries:2 RetryBackoffS:2 TLSVerify:false}} Runtime:{MaxTotalRuntime:480 CommandTimeout:30 TempDir:/tmp Locale:C PathPrepend:[/usr/sbin /sbin]} Logging:{Level:info Progress:true ShowCommandLines:false CaptureRawOutput:true RawOutputMaxKB:5120 SavePayloadToTmp:true PayloadTmpDir:/tmp PayloadFilenamePrefix:bench_payload_ InteractiveDebugPause:true} Payload:{Dir:. Prefix:bench_payload_ Always:true} Benchmarks:{Enabled:true Weights:map[cpu:0.4 disk:0.2 gpu:0.1 memory:0.2 network:0.1] CPU:{Enabled:true Tool:sysbench Server: Port:0 Params:map[cpu_max_prime:20000 multi_threads:all single_thread:1] Safety:map[]} Memory:{Enabled:true Tool:sysbench Server: Port:0 Params:map[total_size:1G] Safety:map[]} Disk:{Enabled:true Tool:fio Server: Port:0 Params:map[bs:4k ioengine:libaio name:bench numjobs:1 output_format:json runtime_s:30 rw:randrw size:500M time_based:true] Safety:map[direct:1 max_runtime_s:60 max_size:1G]} Network:{Enabled:true Tool:iperf3 Server:10.0.0.50 Port:5201 Params:map[bidir:true duration_s:10 json:true] Safety:map[]}} Collection:{System:{Enabled:true} CPU:{Enabled:true} RAM:{Enabled:true} Storage:{Enabled:true} Network:{Enabled:true} GPU:{Enabled:true} Audio:{Enabled:true} PCI:{Enabled:true} USB:{Enabled:true}} RawInfo:{Enabled:true Include:[lscpu lsblk dmidecode] MaxSizeKB:5120}}
[DEBUG] [2/6] Début collecte CPU
[DEBUG] Exec: lscpu []
[DEBUG] Exec: dmidecode [-t 4]
[DEBUG] [2/6] Détails CPU: {Vendor:AuthenticAMD Model:AMD Ryzen 9 5900X 12-Core Processor Cores:12 Threads:24 BaseFreqGHz:4.951 MaxFreqGHz:4.951 CacheL1KB:64 CacheL2KB:512 CacheL3KB:32768 Flags:[fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local user_shstk clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm debug_swap] Microarchitecture:Zen TDPW:<nil>}
[DEBUG] [2/6] Début collecte RAM
[DEBUG] SMBIOS détecté : SMBIOS 3.3.0 (54 tables)
[DEBUG] Module SMBIOS détecté : DIMM 0 {Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 }
[DEBUG] Module SMBIOS détecté : DIMM 1 {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE}
[DEBUG] Module SMBIOS détecté : DIMM 0 {Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 }
[DEBUG] Module SMBIOS détecté : DIMM 1 {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE}
[DEBUG] Mémoire SMBIOS : slots_total=10 slots_used=4 ecc=false max=0MB
[DEBUG] [2/6] Détails RAM: {TotalMB:48096 UsedMB:17317 FreeMB:30779 SharedMB:978 SlotsTotal:10 SlotsUsed:4 MaxCapacityMB:48096 ECC:false Layout:[{Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 } {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE} {Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 } {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE}]}
[DEBUG] [2/6] Début collecte GPU
[DEBUG] Exec: lspci []
[DEBUG] Exec: nvidia-smi [--query-gpu=name,driver_version,memory.total --format=csv,noheader,nounits]
[DEBUG] [2/6] Détails GPU: {Vendor:NVIDIA Model:NVIDIA GeForce RTX 3060 DriverVersion:550.163.01 MemoryDedicatedMB:0xc00041e018 MemorySharedMB:<nil> APISupport:[]}
[DEBUG] [2/6] Début collecte stockage
[DEBUG] Exec: lsblk [-J -b -o NAME,TYPE,TRAN,VENDOR,MODEL,SERIAL,SIZE]
[DEBUG] SMART open /dev/sde impossible: unknown drive type
[DEBUG] SMART open /dev/sdb impossible: unknown drive type
[DEBUG] SMART open /dev/sdc impossible: unknown drive type
[DEBUG] SMART open /dev/sdd impossible: unknown drive type
[DEBUG] [2/6] Détails stockage: {Devices:[{Name:/dev/nvme0n1 Type:ssd Interface:nvme CapacityGB:465.7617416381836 Vendor:CT500P2SSD8 Model:CT500P2SSD8 Serial:2138E5D60DD8 SmartHealth:PASSED Temperature:34} {Name:/dev/nvme1n1 Type: Interface:nvme CapacityGB:465.7617416381836 Vendor:CT500P2SSD8 Model:CT500P2SSD8 Serial:2108E4FD258D SmartHealth:PASSED Temperature:32} {Name:/dev/sda Type: Interface:sata CapacityGB:447.13167572021484 Vendor:ATA Model:KINGSTON SUV500480G Serial:50026B768226A365 SmartHealth:PASSED Temperature:25} {Name:/dev/sdb Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:Compact Flash Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sdc Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:SD/MMC Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sdd Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:MS/MS-PRO Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sde Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:xD-Picture Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0}] Partitions:[{Name:/dev/nvme0n1p2 MountPoint:/ FSType:ext4 TotalGB:432.80120849609375 UsedGB:0xc00041e2d8 FreeGB:0xc00041e2e0} {Name:/dev/nvme0n1p1 MountPoint:/boot/efi FSType:vfat TotalGB:0.9512481689453125 UsedGB:0xc00041e2e8 FreeGB:0xc00041e320}]}
[DEBUG] [2/6] Début collecte PCI devices
[DEBUG] Exec: lspci [-mm]
[DEBUG] [2/6] Détails PCI: [{Slot:00:00.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Root Complex} {Slot:00:00.2 Class:IOMMU Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse IOMMU} {Slot:00:01.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:01.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse GPP Bridge} {Slot:00:01.3 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse GPP Bridge} {Slot:00:02.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:03.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:03.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse GPP Bridge} {Slot:00:04.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:05.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:07.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:07.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]} {Slot:00:08.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:08.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]} {Slot:00:14.0 Class:SMBus Vendor:Advanced Micro Devices, Inc. [AMD] Device:FCH SMBus Controller} {Slot:00:14.3 Class:ISA bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:FCH LPC Bridge} {Slot:00:18.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 0} {Slot:00:18.1 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 1} {Slot:00:18.2 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 2} {Slot:00:18.3 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 3} {Slot:00:18.4 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 4} {Slot:00:18.5 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 5} {Slot:00:18.6 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 6} {Slot:00:18.7 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 7} {Slot:01:00.0 Class:Non-Volatile memory controller Vendor:Micron/Crucial Technology Device:P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)} {Slot:02:00.0 Class:USB controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset USB 3.1 xHCI Compliant Host Controller} {Slot:02:00.1 Class:SATA controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset SATA Controller} {Slot:02:00.2 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Bridge} {Slot:03:00.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:03:01.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:03:04.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:03:08.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:04:00.0 Class:Ethernet controller Vendor:Realtek Semiconductor Co., Ltd. Device:RTL8111/8168/8211/8411 PCI Express Gigabit Ethernet Controller} {Slot:07:00.0 Class:Non-Volatile memory controller Vendor:Micron/Crucial Technology Device:P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)} {Slot:08:00.0 Class:VGA compatible controller Vendor:NVIDIA Corporation Device:GA106 [GeForce RTX 3060 Lite Hash Rate]} {Slot:08:00.1 Class:Audio device Vendor:NVIDIA Corporation Device:GA106 High Definition Audio Controller} {Slot:09:00.0 Class:Non-Essential Instrumentation [1300] Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Function} {Slot:0a:00.0 Class:Non-Essential Instrumentation [1300] Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Reserved SPP} {Slot:0a:00.1 Class:Encryption controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Cryptographic Coprocessor PSPCPP} {Slot:0a:00.3 Class:USB controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse USB 3.0 Host Controller} {Slot:0a:00.4 Class:Audio device Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse HD Audio Controller}]
[DEBUG] [2/6] Début collecte USB devices
[DEBUG] Exec: lsusb []
[DEBUG] [2/6] Détails USB: [{Bus:001 Device:001 VendorID:1d6b ProductID:0002 Name:Linux Foundation 2.0 root hub} {Bus:001 Device:002 VendorID:058f ProductID:6362 Name:Alcor Micro Corp. Flash Card Reader/Writer} {Bus:002 Device:001 VendorID:1d6b ProductID:0003 Name:Linux Foundation 3.0 root hub} {Bus:003 Device:001 VendorID:1d6b ProductID:0002 Name:Linux Foundation 2.0 root hub} {Bus:003 Device:003 VendorID:046d ProductID:c52b Name:Logitech, Inc. Unifying Receiver} {Bus:003 Device:004 VendorID:0bda ProductID:b711 Name:Realtek Semiconductor Corp. RTL8188GU 802.11n WLAN Adapter (After Modeswitch)} {Bus:004 Device:001 VendorID:1d6b ProductID:0003 Name:Linux Foundation 3.0 root hub}]
[DEBUG] [2/6] Début collecte partages réseau
[DEBUG] [2/6] Détails partages réseau: []
[DEBUG] [2/6] Début collecte interfaces réseau
[DEBUG] Exec: ethtool [eno1]
[DEBUG] Exec: ethtool [-i eno1]
[DEBUG] Exec: ethtool [wlxe84e06a6c1fc]
[DEBUG] Exec: ethtool [-i wlxe84e06a6c1fc]
[DEBUG] Exec: iwgetid [wlxe84e06a6c1fc -r]
[DEBUG] Exec: iw [wlxe84e06a6c1fc link]
[DEBUG] [2/6] Détails réseau: {Interfaces:[{Name:eno1 Type:ethernet MAC:18:c0:4d:b5:65:74 IP:10.0.1.109 SpeedMbps:0xc0002dd358 Driver:r8169 SSID: WakeOnLAN:false} {Name:wlxe84e06a6c1fc Type:wifi MAC:1e:c1:a5:4c:a0:f5 IP: SpeedMbps:<nil> Driver:rtl8xxxu SSID: WakeOnLAN:false}]}
[DEBUG] [2/6] Début collecte carte mère
[DEBUG] Exec: dmidecode [-t 2]
[DEBUG] Exec: dmidecode [-t 0]
[DEBUG] [2/6] Détails carte mère: {Vendor:Gigabyte Technology Co., Ltd. Model:B450 AORUS ELITE BIOSVendor:American Megatrends International, LLC. BIOSVersion:F65e BIOSDate:09/20/2023}
[DEBUG] [2/6] Début collecte OS
[DEBUG] Exec: uname [-r]
[DEBUG] Exec: uname [-m]
[DEBUG] Exec: systemd-detect-virt []
[DEBUG] Exec: xrandr []
[DEBUG] Exec: xrandr [--current]
[DEBUG] Exec: who [-b]
[DEBUG] [2/6] Détails OS: {Name:Debian GNU/Linux Version:13 (trixie) KernelVersion:6.12.57+deb13-amd64 Architecture:x86_64 SessionType: DisplayServer: ScreenResolution:5560 x 1920 LastBootTime:démarrage système 2026-01-11 09:11 UptimeSeconds:43925.66 BatteryPercentage:<nil> BatteryStatus: BatteryHealth: Hostname:aorus VirtualizationType:kvm-host DesktopEnvironment:GNOME}
[DEBUG] [2/6] Début collecte capteurs
[DEBUG] [2/6] Détails capteurs: {CPUTempC:<nil> DiskTempsC:map[nvme-pci-0100:Composite:33.85 nvme-pci-0700:Composite:31.85] Sensors:[{Chip:nvme-pci-0700 Name:Composite Type:temperature Value:31.85 Unit:°C Alarm:false} {Chip:acpitz-acpi-0 Name:temp1 Type:temperature Value:16.8 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tctl Type:temperature Value:41.75 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tccd1 Type:temperature Value:36.75 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tccd2 Type:temperature Value:29 Unit:°C Alarm:false} {Chip:nvme-pci-0100 Name:Composite Type:temperature Value:33.85 Unit:°C Alarm:false}]}
[DEBUG] [2/6] Début collecte audio
[DEBUG] Exec: lspci []
[DEBUG] Exec: aplay [-l]
[DEBUG] Exec: arecord [-l]
[DEBUG] Exec: aplay [-L]
[DEBUG] Exec: pactl [info]
[DEBUG] [2/6] Détails audio: {Hardware:{PCIAudioDevices:[08:00.1 Audio device: NVIDIA Corporation GA106 High Definition Audio Controller (rev a1) 0a:00.4 Audio device: Advanced Micro Devices, Inc. [AMD] Starship/Matisse HD Audio Controller] AlsaPlayback:**** Liste des périphériques matériels PLAYBACK ****
carte 0 : NVidia [HDA NVidia], périphérique 3 : HDMI 0 [LG ULTRAWIDE]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 7 : HDMI 1 [K243Y]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 8 : HDMI 2 [HDMI 2]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 9 : HDMI 3 [HDMI 3]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]
Sous-périphériques : 0/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 1 : ALC892 Digital [ALC892 Digital]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
AlsaCapture:**** Liste des périphériques matériels CAPTURE ****
carte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 2 : ALC892 Alt Analog [ALC892 Alt Analog]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
PCMDevices:[null Discard all samples (playback) or generate zero samples (capture) pipewire PipeWire Sound Server default Default ALSA Output (currently PipeWire Media Server) hw:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Direct hardware device without any conversions hw:CARD=NVidia,DEV=7 HDA NVidia, K243Y Direct hardware device without any conversions hw:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Direct hardware device without any conversions hw:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Direct hardware device without any conversions plughw:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Hardware device with all software conversions plughw:CARD=NVidia,DEV=7 HDA NVidia, K243Y Hardware device with all software conversions plughw:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Hardware device with all software conversions plughw:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Hardware device with all software conversions hdmi:CARD=NVidia,DEV=0 HDA NVidia, LG ULTRAWIDE HDMI Audio Output hdmi:CARD=NVidia,DEV=1 HDA NVidia, K243Y HDMI Audio Output hdmi:CARD=NVidia,DEV=2 HDA NVidia, HDMI 2 HDMI Audio Output hdmi:CARD=NVidia,DEV=3 HDA NVidia, HDMI 3 HDMI Audio Output dmix:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Direct sample mixing device dmix:CARD=NVidia,DEV=7 HDA NVidia, K243Y Direct sample mixing device dmix:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Direct sample mixing device dmix:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Direct sample mixing device hw:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Direct hardware device without any conversions hw:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Direct hardware device without any conversions plughw:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Hardware device with all software conversions plughw:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Hardware device with all software conversions sysdefault:CARD=Generic HD-Audio Generic, ALC892 Analog Default Audio Device front:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Front output / input surround21:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 2.1 Surround output to Front and Subwoofer speakers surround40:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 4.0 Surround output to Front and Rear speakers surround41:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 4.1 Surround output to Front, Rear and Subwoofer speakers surround50:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 5.0 Surround output to Front, Center and Rear speakers surround51:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 5.1 Surround output to Front, Center, Rear and Subwoofer speakers surround71:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 7.1 Surround output to Front, Center, Side, Rear and Woofer speakers iec958:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Digital IEC958 (S/PDIF) Digital Audio Output dmix:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Direct sample mixing device dmix:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Direct sample mixing device]} Software:{Backend: ServerName: ServerVersion: DefaultSink:<nil> DefaultSource:<nil> Sinks:[] Sources:[]}}
[DEBUG] Exec: lscpu []
[DEBUG] Exec: lsblk [-a]
[DEBUG] Exec: dmidecode [-t 0,1,2,16,17]
[DEBUG] Matériel collecté : {CPU:{Vendor:AuthenticAMD Model:AMD Ryzen 9 5900X 12-Core Processor Cores:12 Threads:24 BaseFreqGHz:4.951 MaxFreqGHz:4.951 CacheL1KB:64 CacheL2KB:512 CacheL3KB:32768 Flags:[fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local user_shstk clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm debug_swap] Microarchitecture:Zen TDPW:<nil>} RAM:{TotalMB:48096 UsedMB:17317 FreeMB:30779 SharedMB:978 SlotsTotal:10 SlotsUsed:4 MaxCapacityMB:48096 ECC:false Layout:[{Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 } {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE} {Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 } {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE}]} GPU:{Vendor:NVIDIA Model:NVIDIA GeForce RTX 3060 DriverVersion:550.163.01 MemoryDedicatedMB:0xc00041e018 MemorySharedMB:<nil> APISupport:[]} Storage:{Devices:[{Name:/dev/nvme0n1 Type:ssd Interface:nvme CapacityGB:465.7617416381836 Vendor:CT500P2SSD8 Model:CT500P2SSD8 Serial:2138E5D60DD8 SmartHealth:PASSED Temperature:34} {Name:/dev/nvme1n1 Type: Interface:nvme CapacityGB:465.7617416381836 Vendor:CT500P2SSD8 Model:CT500P2SSD8 Serial:2108E4FD258D SmartHealth:PASSED Temperature:32} {Name:/dev/sda Type: Interface:sata CapacityGB:447.13167572021484 Vendor:ATA Model:KINGSTON SUV500480G Serial:50026B768226A365 SmartHealth:PASSED Temperature:25} {Name:/dev/sdb Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:Compact Flash Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sdc Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:SD/MMC Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sdd Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:MS/MS-PRO Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sde Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:xD-Picture Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0}] Partitions:[{Name:/dev/nvme0n1p2 MountPoint:/ FSType:ext4 TotalGB:432.80120849609375 UsedGB:0xc00041e2d8 FreeGB:0xc00041e2e0} {Name:/dev/nvme0n1p1 MountPoint:/boot/efi FSType:vfat TotalGB:0.9512481689453125 UsedGB:0xc00041e2e8 FreeGB:0xc00041e320}]} PCIDevices:[{Slot:00:00.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Root Complex} {Slot:00:00.2 Class:IOMMU Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse IOMMU} {Slot:00:01.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:01.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse GPP Bridge} {Slot:00:01.3 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse GPP Bridge} {Slot:00:02.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:03.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:03.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse GPP Bridge} {Slot:00:04.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:05.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:07.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:07.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]} {Slot:00:08.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:08.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]} {Slot:00:14.0 Class:SMBus Vendor:Advanced Micro Devices, Inc. [AMD] Device:FCH SMBus Controller} {Slot:00:14.3 Class:ISA bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:FCH LPC Bridge} {Slot:00:18.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 0} {Slot:00:18.1 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 1} {Slot:00:18.2 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 2} {Slot:00:18.3 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 3} {Slot:00:18.4 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 4} {Slot:00:18.5 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 5} {Slot:00:18.6 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 6} {Slot:00:18.7 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 7} {Slot:01:00.0 Class:Non-Volatile memory controller Vendor:Micron/Crucial Technology Device:P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)} {Slot:02:00.0 Class:USB controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset USB 3.1 xHCI Compliant Host Controller} {Slot:02:00.1 Class:SATA controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset SATA Controller} {Slot:02:00.2 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Bridge} {Slot:03:00.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:03:01.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:03:04.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:03:08.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:04:00.0 Class:Ethernet controller Vendor:Realtek Semiconductor Co., Ltd. Device:RTL8111/8168/8211/8411 PCI Express Gigabit Ethernet Controller} {Slot:07:00.0 Class:Non-Volatile memory controller Vendor:Micron/Crucial Technology Device:P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)} {Slot:08:00.0 Class:VGA compatible controller Vendor:NVIDIA Corporation Device:GA106 [GeForce RTX 3060 Lite Hash Rate]} {Slot:08:00.1 Class:Audio device Vendor:NVIDIA Corporation Device:GA106 High Definition Audio Controller} {Slot:09:00.0 Class:Non-Essential Instrumentation [1300] Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Function} {Slot:0a:00.0 Class:Non-Essential Instrumentation [1300] Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Reserved SPP} {Slot:0a:00.1 Class:Encryption controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Cryptographic Coprocessor PSPCPP} {Slot:0a:00.3 Class:USB controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse USB 3.0 Host Controller} {Slot:0a:00.4 Class:Audio device Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse HD Audio Controller}] USBDevices:[{Bus:001 Device:001 VendorID:1d6b ProductID:0002 Name:Linux Foundation 2.0 root hub} {Bus:001 Device:002 VendorID:058f ProductID:6362 Name:Alcor Micro Corp. Flash Card Reader/Writer} {Bus:002 Device:001 VendorID:1d6b ProductID:0003 Name:Linux Foundation 3.0 root hub} {Bus:003 Device:001 VendorID:1d6b ProductID:0002 Name:Linux Foundation 2.0 root hub} {Bus:003 Device:003 VendorID:046d ProductID:c52b Name:Logitech, Inc. Unifying Receiver} {Bus:003 Device:004 VendorID:0bda ProductID:b711 Name:Realtek Semiconductor Corp. RTL8188GU 802.11n WLAN Adapter (After Modeswitch)} {Bus:004 Device:001 VendorID:1d6b ProductID:0003 Name:Linux Foundation 3.0 root hub}] NetworkShares:[] Network:{Interfaces:[{Name:eno1 Type:ethernet MAC:18:c0:4d:b5:65:74 IP:10.0.1.109 SpeedMbps:0xc0002dd358 Driver:r8169 SSID: WakeOnLAN:false} {Name:wlxe84e06a6c1fc Type:wifi MAC:1e:c1:a5:4c:a0:f5 IP: SpeedMbps:<nil> Driver:rtl8xxxu SSID: WakeOnLAN:false}]} Motherboard:{Vendor:Gigabyte Technology Co., Ltd. Model:B450 AORUS ELITE BIOSVendor:American Megatrends International, LLC. BIOSVersion:F65e BIOSDate:09/20/2023} OS:{Name:Debian GNU/Linux Version:13 (trixie) KernelVersion:6.12.57+deb13-amd64 Architecture:x86_64 SessionType: DisplayServer: ScreenResolution:5560 x 1920 LastBootTime:démarrage système 2026-01-11 09:11 UptimeSeconds:43925.66 BatteryPercentage:<nil> BatteryStatus: BatteryHealth: Hostname:aorus VirtualizationType:kvm-host DesktopEnvironment:GNOME} Sensors:{CPUTempC:<nil> DiskTempsC:map[nvme-pci-0100:Composite:33.85 nvme-pci-0700:Composite:31.85] Sensors:[{Chip:nvme-pci-0700 Name:Composite Type:temperature Value:31.85 Unit:°C Alarm:false} {Chip:acpitz-acpi-0 Name:temp1 Type:temperature Value:16.8 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tctl Type:temperature Value:41.75 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tccd1 Type:temperature Value:36.75 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tccd2 Type:temperature Value:29 Unit:°C Alarm:false} {Chip:nvme-pci-0100 Name:Composite Type:temperature Value:33.85 Unit:°C Alarm:false}]} Audio:{Hardware:{PCIAudioDevices:[08:00.1 Audio device: NVIDIA Corporation GA106 High Definition Audio Controller (rev a1) 0a:00.4 Audio device: Advanced Micro Devices, Inc. [AMD] Starship/Matisse HD Audio Controller] AlsaPlayback:**** Liste des périphériques matériels PLAYBACK ****
carte 0 : NVidia [HDA NVidia], périphérique 3 : HDMI 0 [LG ULTRAWIDE]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 7 : HDMI 1 [K243Y]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 8 : HDMI 2 [HDMI 2]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 9 : HDMI 3 [HDMI 3]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]
Sous-périphériques : 0/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 1 : ALC892 Digital [ALC892 Digital]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
AlsaCapture:**** Liste des périphériques matériels CAPTURE ****
carte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 2 : ALC892 Alt Analog [ALC892 Alt Analog]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
PCMDevices:[null Discard all samples (playback) or generate zero samples (capture) pipewire PipeWire Sound Server default Default ALSA Output (currently PipeWire Media Server) hw:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Direct hardware device without any conversions hw:CARD=NVidia,DEV=7 HDA NVidia, K243Y Direct hardware device without any conversions hw:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Direct hardware device without any conversions hw:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Direct hardware device without any conversions plughw:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Hardware device with all software conversions plughw:CARD=NVidia,DEV=7 HDA NVidia, K243Y Hardware device with all software conversions plughw:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Hardware device with all software conversions plughw:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Hardware device with all software conversions hdmi:CARD=NVidia,DEV=0 HDA NVidia, LG ULTRAWIDE HDMI Audio Output hdmi:CARD=NVidia,DEV=1 HDA NVidia, K243Y HDMI Audio Output hdmi:CARD=NVidia,DEV=2 HDA NVidia, HDMI 2 HDMI Audio Output hdmi:CARD=NVidia,DEV=3 HDA NVidia, HDMI 3 HDMI Audio Output dmix:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Direct sample mixing device dmix:CARD=NVidia,DEV=7 HDA NVidia, K243Y Direct sample mixing device dmix:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Direct sample mixing device dmix:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Direct sample mixing device hw:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Direct hardware device without any conversions hw:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Direct hardware device without any conversions plughw:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Hardware device with all software conversions plughw:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Hardware device with all software conversions sysdefault:CARD=Generic HD-Audio Generic, ALC892 Analog Default Audio Device front:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Front output / input surround21:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 2.1 Surround output to Front and Subwoofer speakers surround40:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 4.0 Surround output to Front and Rear speakers surround41:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 4.1 Surround output to Front, Rear and Subwoofer speakers surround50:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 5.0 Surround output to Front, Center and Rear speakers surround51:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 5.1 Surround output to Front, Center, Rear and Subwoofer speakers surround71:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 7.1 Surround output to Front, Center, Side, Rear and Woofer speakers iec958:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Digital IEC958 (S/PDIF) Digital Audio Output dmix:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Direct sample mixing device dmix:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Direct sample mixing device]} Software:{Backend: ServerName: ServerVersion: DefaultSink:<nil> DefaultSource:<nil> Sinks:[] Sources:[]}} RawInfo:map[dmidecode:# dmidecode 3.6
Getting SMBIOS data from sysfs.
SMBIOS 3.3.0 present.
Handle 0x0000, DMI type 0, 26 bytes
BIOS Information
Vendor: American Megatrends International, LLC.
Version: F65e
Release Date: 09/20/2023
Address: 0xF0000
Runtime Size: 64 kB
ROM Size: 16 MB
Characteristics:
PCI is supported
BIOS is upgradeable
BIOS shadowing is allowed
Boot from CD is supported
Selectable boot is supported
BIOS ROM is socketed
EDD is supported
Japanese floppy for NEC 9800 1.2 MB is supported (int 13h)
Japanese floppy for Toshiba 1.2 MB is supported (int 13h)
5.25"/360 kB floppy services are supported (int 13h)
5.25"/1.2 MB floppy services are supported (int 13h)
3.5"/720 kB floppy services are supported (int 13h)
3.5"/2.88 MB floppy services are supported (int 13h)
Print screen service is supported (int 5h)
Serial services are supported (int 14h)
Printer services are supported (int 17h)
CGA/mono video services are supported (int 10h)
USB legacy is supported
BIOS boot specification is supported
Targeted content distribution is supported
UEFI is supported
BIOS Revision: 5.17
Handle 0x0001, DMI type 1, 27 bytes
System Information
Manufacturer: Gigabyte Technology Co., Ltd.
Product Name: B450 AORUS ELITE
Version: Default string
Serial Number: Default string
UUID: 03c00218-044d-05b5-6506-740700080009
Wake-up Type: Power Switch
SKU Number: Default string
Family: B450 MB
Handle 0x0002, DMI type 2, 15 bytes
Base Board Information
Manufacturer: Gigabyte Technology Co., Ltd.
Product Name: B450 AORUS ELITE
Version: Default string
Serial Number: Default string
Asset Tag: Default string
Features:
Board is a hosting board
Board is replaceable
Location In Chassis: Default string
Chassis Handle: 0x0003
Type: Motherboard
Contained Object Handles: 0
Handle 0x000B, DMI type 16, 23 bytes
Physical Memory Array
Location: System Board Or Motherboard
Use: System Memory
Error Correction Type: None
Maximum Capacity: 128 GB
Error Information Handle: 0x000A
Number Of Devices: 4
Handle 0x0013, DMI type 17, 92 bytes
Memory Device
Array Handle: 0x000B
Error Information Handle: 0x0012
Total Width: 64 bits
Data Width: 64 bits
Size: 16 GB
Form Factor: DIMM
Set: None
Locator: DIMM 0
Bank Locator: P0 CHANNEL A
Type: DDR4
Type Detail: Synchronous Unbuffered (Unregistered)
Speed: 3200 MT/s
Manufacturer: Unknown
Serial Number: 00000000
Asset Tag: Not Specified
Part Number: CMW32GX4M2E3200C16
Rank: 2
Configured Memory Speed: 3200 MT/s
Minimum Voltage: Unknown
Maximum Voltage: Unknown
Configured Voltage: 1.2 V
Memory Technology: DRAM
Memory Operating Mode Capability: Volatile memory
Firmware Version: Unknown
Module Manufacturer ID: Bank 3, Hex 0x9E
Module Product ID: Unknown
Memory Subsystem Controller Manufacturer ID: Unknown
Memory Subsystem Controller Product ID: Unknown
Non-Volatile Size: None
Volatile Size: 16 GB
Cache Size: None
Logical Size: None
Handle 0x0016, DMI type 17, 92 bytes
Memory Device
Array Handle: 0x000B
Error Information Handle: 0x0015
Total Width: 64 bits
Data Width: 64 bits
Size: 8 GB
Form Factor: DIMM
Set: None
Locator: DIMM 1
Bank Locator: P0 CHANNEL A
Type: DDR4
Type Detail: Synchronous Unbuffered (Unregistered)
Speed: 3200 MT/s
Manufacturer: Unknown
Serial Number: E3C4408B
Asset Tag: Not Specified
Part Number: BL8G32C16U4BL.M8FE
Rank: 1
Configured Memory Speed: 3200 MT/s
Minimum Voltage: 1.2 V
Maximum Voltage: 1.2 V
Configured Voltage: 1.2 V
Memory Technology: DRAM
Memory Operating Mode Capability: Volatile memory
Firmware Version: Unknown
Module Manufacturer ID: Bank 6, Hex 0x9B
Module Product ID: Unknown
Memory Subsystem Controller Manufacturer ID: Unknown
Memory Subsystem Controller Product ID: Unknown
Non-Volatile Size: None
Volatile Size: 8 GB
Cache Size: None
Logical Size: None
Handle 0x0019, DMI type 17, 92 bytes
Memory Device
Array Handle: 0x000B
Error Information Handle: 0x0018
Total Width: 64 bits
Data Width: 64 bits
Size: 16 GB
Form Factor: DIMM
Set: None
Locator: DIMM 0
Bank Locator: P0 CHANNEL B
Type: DDR4
Type Detail: Synchronous Unbuffered (Unregistered)
Speed: 3200 MT/s
Manufacturer: Unknown
Serial Number: 00000000
Asset Tag: Not Specified
Part Number: CMW32GX4M2E3200C16
Rank: 2
Configured Memory Speed: 3200 MT/s
Minimum Voltage: Unknown
Maximum Voltage: Unknown
Configured Voltage: 1.2 V
Memory Technology: DRAM
Memory Operating Mode Capability: Volatile memory
Firmware Version: Unknown
Module Manufacturer ID: Bank 3, Hex 0x9E
Module Product ID: Unknown
Memory Subsystem Controller Manufacturer ID: Unknown
Memory Subsystem Controller Product ID: Unknown
Non-Volatile Size: None
Volatile Size: 16 GB
Cache Size: None
Logical Size: None
Handle 0x001C, DMI type 17, 92 bytes
Memory Device
Array Handle: 0x000B
Error Information Handle: 0x001B
Total Width: 64 bits
Data Width: 64 bits
Size: 8 GB
Form Factor: DIMM
Set: None
Locator: DIMM 1
Bank Locator: P0 CHANNEL B
Type: DDR4
Type Detail: Synchronous Unbuffered (Unregistered)
Speed: 3200 MT/s
Manufacturer: Unknown
Serial Number: E3C44087
Asset Tag: Not Specified
Part Number: BL8G32C16U4BL.M8FE
Rank: 1
Configured Memory Speed: 3200 MT/s
Minimum Voltage: 1.2 V
Maximum Voltage: 1.2 V
Configured Voltage: 1.2 V
Memory Technology: DRAM
Memory Operating Mode Capability: Volatile memory
Firmware Version: Unknown
Module Manufacturer ID: Bank 6, Hex 0x9B
Module Product ID: Unknown
Memory Subsystem Controller Manufacturer ID: Unknown
Memory Subsystem Controller Product ID: Unknown
Non-Volatile Size: None
Volatile Size: 8 GB
Cache Size: None
Logical Size: None
lsblk:NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS
loop0 7:0 0 118,5M 1 loop /snap/iptvnator/92
loop1 7:1 0 48,1M 1 loop /snap/snapd/25935
loop2 7:2 0 50,9M 1 loop /snap/snapd/25577
loop3 7:3 0 4K 1 loop /snap/bare/5
loop4 7:4 0 91,7M 1 loop /snap/gtk-common-themes/1535
loop5 7:5 0 55,5M 1 loop /snap/core18/2976
loop6 7:6 0 164,8M 1 loop /snap/gnome-3-28-1804/198
loop7 7:7 0 0B 0 loop
sda 8:0 0 447,1G 0 disk
└─sda1 8:1 0 447,1G 0 part
sdb 8:16 1 0B 0 disk
sdc 8:32 1 0B 0 disk
sdd 8:48 1 0B 0 disk
sde 8:64 1 0B 0 disk
nvme0n1 259:0 0 465,8G 0 disk
├─nvme0n1p1 259:1 0 976M 0 part /boot/efi
├─nvme0n1p2 259:2 0 440,8G 0 part /
└─nvme0n1p3 259:3 0 24G 0 part [SWAP]
nvme1n1 259:4 0 465,8G 0 disk
├─nvme1n1p1 259:5 0 50M 0 part
├─nvme1n1p2 259:6 0 464,3G 0 part
├─nvme1n1p3 259:7 0 808M 0 part
├─nvme1n1p4 259:8 0 100M 0 part
└─nvme1n1p5 259:9 0 522M 0 part
lscpu:Architecture : x86_64
Mode(s) opératoire(s) des processeurs : 32-bit, 64-bit
Tailles des adresses: 48 bits physical, 48 bits virtual
Boutisme : Little Endian
Processeur(s) : 24
Liste de processeur(s) en ligne : 0-23
Identifiant constructeur : AuthenticAMD
Nom de modèle : AMD Ryzen 9 5900X 12-Core Processor
Famille de processeur : 25
Modèle : 33
Thread(s) par cœur : 2
Cœur(s) par socket : 12
Socket(s) : 1
Révision : 2
Accroissement de fréquence : activé
multiplication des MHz du/des CPU(s) : 81%
Vitesse maximale du processeur en MHz : 4951,0000
Vitesse minimale du processeur en MHz : 550,0000
BogoMIPS : 7399,98
Drapeaux : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local user_shstk clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm debug_swap
Virtualisation : AMD-V
Cache L1d : 384 KiB (12 instances)
Cache L1i : 384 KiB (12 instances)
Cache L2 : 6 MiB (12 instances)
Cache L3 : 64 MiB (2 instances)
Nœud(s) NUMA : 1
Nœud NUMA 0 de processeur(s) : 0-23
Vulnérabilité Gather data sampling : Not affected
Vulnérabilité Indirect target selection : Not affected
Vulnérabilité Itlb multihit : Not affected
Vulnérabilité L1tf : Not affected
Vulnérabilité Mds : Not affected
Vulnérabilité Meltdown : Not affected
Vulnérabilité Mmio stale data : Not affected
Vulnérabilité Reg file data sampling : Not affected
Vulnérabilité Retbleed : Not affected
Vulnérabilité Spec rstack overflow : Mitigation; Safe RET
Vulnérabilité Spec store bypass : Mitigation; Speculative Store Bypass disabled via prctl
Vulnérabilité Spectre v1 : Mitigation; usercopy/swapgs barriers and __user pointer sanitization
Vulnérabilité Spectre v2 : Mitigation; Retpolines; IBPB conditional; IBRS_FW; STIBP always-on; RSB filling; PBRSB-eIBRS Not affected; BHI Not affected
Vulnérabilité Srbds : Not affected
Vulnérabilité Tsa : Vulnerable: Clear CPU buffers attempted, no microcode
Vulnérabilité Tsx async abort : Not affected
Vulnérabilité Vmscape : Mitigation; IBPB before exit to userspace
]}
[DEBUG] [3/6] Benchmark CPU démarré
[DEBUG] Exec: sysbench [cpu --threads=1 --time=10 run]
[DEBUG] Exec: nproc []
[DEBUG] Exec: sysbench [cpu --threads=24 --time=10 run]
[DEBUG] [3/6] Résultat CPU: {EventsPerSec:37452.18 EventsPerSecSingle:5591.15 EventsPerSecMulti:69313.21 DurationSec:20.0004 Score:37452.18 ScoreSingle:5591.15 ScoreMulti:69313.21}
[DEBUG] [3/6] Benchmark mémoire démarré
[DEBUG] Exec: sysbench [memory --memory-block-size=1K --memory-total-size=1G run]
[DEBUG] [3/6] Résultat mémoire: {Throughput:8875.52 Score:8875.52}
[DEBUG] [3/6] Benchmark disque démarré
[DEBUG] [3/6] Bench disque cible : /var/tmp/bench-client (mount=/ fstype=ext4 source=/dev/nvme0n1p2)
[DEBUG] Exec: fio [--name=bench --ioengine=libaio --rw=randrw --bs=4k --direct=1 --size=500M --numjobs=1 --runtime=30 --time_based --output-format=json --filename=/var/tmp/bench-client/bench-1768163058022208122.fio]
[DEBUG] [3/6] Résultat disque: {ReadMBs:40.78125 WriteMBs:40.7470703125 IOPSRead:10440.051998 IOPSWrite:10431.352288 LatencyMs:0.07348452990900001 Score:40.76416015625}
[DEBUG] [3/6] Benchmark réseau démarré
[DEBUG] Exec: iperf3 [-c 10.0.0.50 -p 5201 -J -t 10]
[DEBUG] Exec: ping [-c 1 -W 1 10.0.0.50]
[DEBUG] [3/6] Résultat réseau: {Upload:942.0301373081797 Download:939.2972180673768 PingMs:0.409 JitterMs:<nil> PacketLossPct:<nil> Score:940.6636776877783}
[DEBUG] Résultats des benchmarks : {CPU:{EventsPerSec:37452.18 EventsPerSecSingle:5591.15 EventsPerSecMulti:69313.21 DurationSec:20.0004 Score:37452.18 ScoreSingle:5591.15 ScoreMulti:69313.21} Memory:{Throughput:8875.52 Score:8875.52} Disk:{ReadMBs:40.78125 WriteMBs:40.7470703125 IOPSRead:10440.051998 IOPSWrite:10431.352288 LatencyMs:0.07348452990900001 Score:40.76416015625} Network:{Upload:942.0301373081797 Download:939.2972180673768 PingMs:0.409 JitterMs:<nil> PacketLossPct:<nil> Score:940.6636776877783} GPU:{GLMark2Score:<nil> Score:<nil>} GlobalScore:0}
[DEBUG] Poids benchmarks : map[cpu:0.4 disk:0.2 gpu:0.1 memory:0.2 network:0.1]
[DEBUG] Scores normalisés : cpu=1872.61 mem=88.76 disk=4.08 net=94.07
[DEBUG] Score global calculé : 77701.66
[DEBUG] Payload JSON (49185 octets) : {
"device_identifier": "aorus",
"bench_script_version": "1.6.6",
"bench_client_version": "1.0.1",
"hardware": {
"cpu": {
"vendor": "AuthenticAMD",
"model": "AMD Ryzen 9 5900X 12-Core Processor",
"cores": 12,
"threads": 24,
"base_freq_ghz": 4.951,
"max_freq_ghz": 4.951,
"cache_l1_kb": 64,
"cache_l2_kb": 512,
"cache_l3_kb": 32768,
"flags": [
"fpu",
"vme",
"de",
"pse",
"tsc",
"msr",
"pae",
"mce",
"cx8",
"apic",
"sep",
"mtrr",
"pge",
"mca",
"cmov",
"pat",
"pse36",
"clflush",
"mmx",
"fxsr",
"sse",
"sse2",
"ht",
"syscall",
"nx",
"mmxext",
"fxsr_opt",
"pdpe1gb",
"rdtscp",
"lm",
"constant_tsc",
"rep_good",
"nopl",
"xtopology",
"nonstop_tsc",
"cpuid",
"extd_apicid",
"aperfmperf",
"rapl",
"pni",
"pclmulqdq",
"monitor",
"ssse3",
"fma",
"cx16",
"sse4_1",
"sse4_2",
"x2apic",
"movbe",
"popcnt",
"aes",
"xsave",
"avx",
"f16c",
"rdrand",
"lahf_lm",
"cmp_legacy",
"svm",
"extapic",
"cr8_legacy",
"abm",
"sse4a",
"misalignsse",
"3dnowprefetch",
"osvw",
"ibs",
"skinit",
"wdt",
"tce",
"topoext",
"perfctr_core",
"perfctr_nb",
"bpext",
"perfctr_llc",
"mwaitx",
"cpb",
"cat_l3",
"cdp_l3",
"hw_pstate",
"ssbd",
"mba",
"ibrs",
"ibpb",
"stibp",
"vmmcall",
"fsgsbase",
"bmi1",
"avx2",
"smep",
"bmi2",
"erms",
"invpcid",
"cqm",
"rdt_a",
"rdseed",
"adx",
"smap",
"clflushopt",
"clwb",
"sha_ni",
"xsaveopt",
"xsavec",
"xgetbv1",
"xsaves",
"cqm_llc",
"cqm_occup_llc",
"cqm_mbm_total",
"cqm_mbm_local",
"user_shstk",
"clzero",
"irperf",
"xsaveerptr",
"rdpru",
"wbnoinvd",
"arat",
"npt",
"lbrv",
"svm_lock",
"nrip_save",
"tsc_scale",
"vmcb_clean",
"flushbyasid",
"decodeassists",
"pausefilter",
"pfthreshold",
"avic",
"v_vmsave_vmload",
"vgif",
"v_spec_ctrl",
"umip",
"pku",
"ospke",
"vaes",
"vpclmulqdq",
"rdpid",
"overflow_recov",
"succor",
"smca",
"fsrm",
"debug_swap"
],
"microarchitecture": "Zen",
"tdp_w": null
},
"ram": {
"total_mb": 48096,
"used_mb": 17317,
"free_mb": 30779,
"shared_mb": 978,
"slots_total": 10,
"slots_used": 4,
"max_capacity_mb": 48096,
"ecc": false,
"layout": [
{
"slot": "DIMM 0",
"size_mb": 16384,
"type": "DDR4",
"speed_mhz": 3200,
"configured_speed_mhz": 3200,
"form_factor": "DIMM",
"type_detail": "Synchronous Unbuffered (Unregistered)",
"rank": "2",
"manufacturer": "Unknown",
"part_number": "CMW32GX4M2E3200C16 "
},
{
"slot": "DIMM 1",
"size_mb": 8192,
"type": "DDR4",
"speed_mhz": 3200,
"configured_speed_mhz": 3200,
"form_factor": "DIMM",
"type_detail": "Synchronous Unbuffered (Unregistered)",
"rank": "1",
"manufacturer": "Unknown",
"part_number": "BL8G32C16U4BL.M8FE"
},
{
"slot": "DIMM 0",
"size_mb": 16384,
"type": "DDR4",
"speed_mhz": 3200,
"configured_speed_mhz": 3200,
"form_factor": "DIMM",
"type_detail": "Synchronous Unbuffered (Unregistered)",
"rank": "2",
"manufacturer": "Unknown",
"part_number": "CMW32GX4M2E3200C16 "
},
{
"slot": "DIMM 1",
"size_mb": 8192,
"type": "DDR4",
"speed_mhz": 3200,
"configured_speed_mhz": 3200,
"form_factor": "DIMM",
"type_detail": "Synchronous Unbuffered (Unregistered)",
"rank": "1",
"manufacturer": "Unknown",
"part_number": "BL8G32C16U4BL.M8FE"
}
]
},
"gpu": {
"vendor": "NVIDIA",
"model": "NVIDIA GeForce RTX 3060",
"driver_version": "550.163.01",
"memory_dedicated_mb": 12288,
"memory_shared_mb": null,
"api_support": null
},
"storage": {
"devices": [
{
"name": "/dev/nvme0n1",
"type": "ssd",
"interface": "nvme",
"capacity_gb": 465.7617416381836,
"vendor": "CT500P2SSD8",
"model": "CT500P2SSD8",
"serial": "2138E5D60DD8",
"smart_health": "PASSED",
"temperature_c": 34
},
{
"name": "/dev/nvme1n1",
"type": "",
"interface": "nvme",
"capacity_gb": 465.7617416381836,
"vendor": "CT500P2SSD8",
"model": "CT500P2SSD8",
"serial": "2108E4FD258D",
"smart_health": "PASSED",
"temperature_c": 32
},
{
"name": "/dev/sda",
"type": "",
"interface": "sata",
"capacity_gb": 447.13167572021484,
"vendor": "ATA ",
"model": "KINGSTON SUV500480G",
"serial": "50026B768226A365",
"smart_health": "PASSED",
"temperature_c": 25
},
{
"name": "/dev/sdb",
"type": "",
"interface": "usb",
"capacity_gb": 0,
"vendor": "Generic-",
"model": "Compact Flash",
"serial": "058F63626479",
"smart_health": "UNAVAILABLE",
"temperature_c": 0
},
{
"name": "/dev/sdc",
"type": "",
"interface": "usb",
"capacity_gb": 0,
"vendor": "Generic-",
"model": "SD/MMC",
"serial": "058F63626479",
"smart_health": "UNAVAILABLE",
"temperature_c": 0
},
{
"name": "/dev/sdd",
"type": "",
"interface": "usb",
"capacity_gb": 0,
"vendor": "Generic-",
"model": "MS/MS-PRO",
"serial": "058F63626479",
"smart_health": "UNAVAILABLE",
"temperature_c": 0
},
{
"name": "/dev/sde",
"type": "",
"interface": "usb",
"capacity_gb": 0,
"vendor": "Generic-",
"model": "xD-Picture",
"serial": "058F63626479",
"smart_health": "UNAVAILABLE",
"temperature_c": 0
}
],
"partitions": [
{
"name": "/dev/nvme0n1p2",
"mount_point": "/",
"fs_type": "ext4",
"total_gb": 432.80120849609375,
"used_gb": 349.4398765563965,
"free_gb": 61.306156158447266
},
{
"name": "/dev/nvme0n1p1",
"mount_point": "/boot/efi",
"fs_type": "vfat",
"total_gb": 0.9512481689453125,
"used_gb": 0.008571624755859375,
"free_gb": 0.9426765441894531
}
]
},
"pci_devices": [
{
"slot": "00:00.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse Root Complex"
},
{
"slot": "00:00.2",
"class": "IOMMU",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse IOMMU"
},
{
"slot": "00:01.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:01.1",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse GPP Bridge"
},
{
"slot": "00:01.3",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse GPP Bridge"
},
{
"slot": "00:02.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:03.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:03.1",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse GPP Bridge"
},
{
"slot": "00:04.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:05.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:07.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:07.1",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]"
},
{
"slot": "00:08.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:08.1",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]"
},
{
"slot": "00:14.0",
"class": "SMBus",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "FCH SMBus Controller"
},
{
"slot": "00:14.3",
"class": "ISA bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "FCH LPC Bridge"
},
{
"slot": "00:18.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 0"
},
{
"slot": "00:18.1",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 1"
},
{
"slot": "00:18.2",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 2"
},
{
"slot": "00:18.3",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 3"
},
{
"slot": "00:18.4",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 4"
},
{
"slot": "00:18.5",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 5"
},
{
"slot": "00:18.6",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 6"
},
{
"slot": "00:18.7",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 7"
},
{
"slot": "01:00.0",
"class": "Non-Volatile memory controller",
"vendor": "Micron/Crucial Technology",
"device": "P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)"
},
{
"slot": "02:00.0",
"class": "USB controller",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset USB 3.1 xHCI Compliant Host Controller"
},
{
"slot": "02:00.1",
"class": "SATA controller",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset SATA Controller"
},
{
"slot": "02:00.2",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset PCIe Bridge"
},
{
"slot": "03:00.0",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset PCIe Port"
},
{
"slot": "03:01.0",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset PCIe Port"
},
{
"slot": "03:04.0",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset PCIe Port"
},
{
"slot": "03:08.0",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset PCIe Port"
},
{
"slot": "04:00.0",
"class": "Ethernet controller",
"vendor": "Realtek Semiconductor Co., Ltd.",
"device": "RTL8111/8168/8211/8411 PCI Express Gigabit Ethernet Controller"
},
{
"slot": "07:00.0",
"class": "Non-Volatile memory controller",
"vendor": "Micron/Crucial Technology",
"device": "P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)"
},
{
"slot": "08:00.0",
"class": "VGA compatible controller",
"vendor": "NVIDIA Corporation",
"device": "GA106 [GeForce RTX 3060 Lite Hash Rate]"
},
{
"slot": "08:00.1",
"class": "Audio device",
"vendor": "NVIDIA Corporation",
"device": "GA106 High Definition Audio Controller"
},
{
"slot": "09:00.0",
"class": "Non-Essential Instrumentation [1300]",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Function"
},
{
"slot": "0a:00.0",
"class": "Non-Essential Instrumentation [1300]",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse Reserved SPP"
},
{
"slot": "0a:00.1",
"class": "Encryption controller",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse Cryptographic Coprocessor PSPCPP"
},
{
"slot": "0a:00.3",
"class": "USB controller",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse USB 3.0 Host Controller"
},
{
"slot": "0a:00.4",
"class": "Audio device",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse HD Audio Controller"
}
],
"usb_devices": [
{
"bus": "001",
"device": "001",
"vendor_id": "1d6b",
"product_id": "0002",
"name": "Linux Foundation 2.0 root hub"
},
{
"bus": "001",
"device": "002",
"vendor_id": "058f",
"product_id": "6362",
"name": "Alcor Micro Corp. Flash Card Reader/Writer"
},
{
"bus": "002",
"device": "001",
"vendor_id": "1d6b",
"product_id": "0003",
"name": "Linux Foundation 3.0 root hub"
},
{
"bus": "003",
"device": "001",
"vendor_id": "1d6b",
"product_id": "0002",
"name": "Linux Foundation 2.0 root hub"
},
{
"bus": "003",
"device": "003",
"vendor_id": "046d",
"product_id": "c52b",
"name": "Logitech, Inc. Unifying Receiver"
},
{
"bus": "003",
"device": "004",
"vendor_id": "0bda",
"product_id": "b711",
"name": "Realtek Semiconductor Corp. RTL8188GU 802.11n WLAN Adapter (After Modeswitch)"
},
{
"bus": "004",
"device": "001",
"vendor_id": "1d6b",
"product_id": "0003",
"name": "Linux Foundation 3.0 root hub"
}
],
"network_shares": [],
"network": {
"interfaces": [
{
"name": "eno1",
"type": "ethernet",
"mac": "18:c0:4d:b5:65:74",
"ip": "10.0.1.109",
"speed_mbps": 1000,
"driver": "r8169",
"ssid": "",
"wake_on_lan": false
},
{
"name": "wlxe84e06a6c1fc",
"type": "wifi",
"mac": "1e:c1:a5:4c:a0:f5",
"ip": "",
"speed_mbps": null,
"driver": "rtl8xxxu",
"ssid": "",
"wake_on_lan": false
}
]
},
"motherboard": {
"vendor": "Gigabyte Technology Co., Ltd.",
"model": "B450 AORUS ELITE",
"bios_vendor": "American Megatrends International, LLC.",
"bios_version": "F65e",
"bios_date": "09/20/2023"
},
"os": {
"name": "Debian GNU/Linux",
"version": "13 (trixie)",
"kernel_version": "6.12.57+deb13-amd64",
"architecture": "x86_64",
"session_type": "",
"display_server": "",
"screen_resolution": "5560 x 1920",
"last_boot_time": "démarrage système 2026-01-11 09:11",
"uptime_seconds": 43925.66,
"battery_percentage": null,
"battery_status": "",
"battery_health": "",
"hostname": "aorus",
"virtualization_type": "kvm-host",
"desktop_environment": "GNOME"
},
"sensors": {
"cpu_temp_c": null,
"disk_temps_c": {
"nvme-pci-0100:Composite": 33.85,
"nvme-pci-0700:Composite": 31.85
},
"sensors": [
{
"chip": "nvme-pci-0700",
"name": "Composite",
"type": "temperature",
"value": 31.85,
"unit": "°C",
"alarm": false
},
{
"chip": "acpitz-acpi-0",
"name": "temp1",
"type": "temperature",
"value": 16.8,
"unit": "°C",
"alarm": false
},
{
"chip": "k10temp-pci-00c3",
"name": "Tctl",
"type": "temperature",
"value": 41.75,
"unit": "°C",
"alarm": false
},
{
"chip": "k10temp-pci-00c3",
"name": "Tccd1",
"type": "temperature",
"value": 36.75,
"unit": "°C",
"alarm": false
},
{
"chip": "k10temp-pci-00c3",
"name": "Tccd2",
"type": "temperature",
"value": 29,
"unit": "°C",
"alarm": false
},
{
"chip": "nvme-pci-0100",
"name": "Composite",
"type": "temperature",
"value": 33.85,
"unit": "°C",
"alarm": false
}
]
},
"audio": {
"hardware": {
"pci_audio_devices": [
"08:00.1 Audio device: NVIDIA Corporation GA106 High Definition Audio Controller (rev a1)",
"0a:00.4 Audio device: Advanced Micro Devices, Inc. [AMD] Starship/Matisse HD Audio Controller"
],
"alsa_playback": "**** Liste des périphériques matériels PLAYBACK ****\ncarte 0 : NVidia [HDA NVidia], périphérique 3 : HDMI 0 [LG ULTRAWIDE]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\ncarte 0 : NVidia [HDA NVidia], périphérique 7 : HDMI 1 [K243Y]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\ncarte 0 : NVidia [HDA NVidia], périphérique 8 : HDMI 2 [HDMI 2]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\ncarte 0 : NVidia [HDA NVidia], périphérique 9 : HDMI 3 [HDMI 3]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\ncarte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]\n Sous-périphériques : 0/1\n Sous-périphérique #0 : subdevice #0\ncarte 1 : Generic [HD-Audio Generic], périphérique 1 : ALC892 Digital [ALC892 Digital]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\n",
"alsa_capture": "**** Liste des périphériques matériels CAPTURE ****\ncarte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\ncarte 1 : Generic [HD-Audio Generic], périphérique 2 : ALC892 Alt Analog [ALC892 Alt Analog]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\n",
"pcm_devices": [
"null",
"Discard all samples (playback) or generate zero samples (capture)",
"pipewire",
"PipeWire Sound Server",
"default",
"Default ALSA Output (currently PipeWire Media Server)",
"hw:CARD=NVidia,DEV=3",
"HDA NVidia, LG ULTRAWIDE",
"Direct hardware device without any conversions",
"hw:CARD=NVidia,DEV=7",
"HDA NVidia, K243Y",
"Direct hardware device without any conversions",
"hw:CARD=NVidia,DEV=8",
"HDA NVidia, HDMI 2",
"Direct hardware device without any conversions",
"hw:CARD=NVidia,DEV=9",
"HDA NVidia, HDMI 3",
"Direct hardware device without any conversions",
"plughw:CARD=NVidia,DEV=3",
"HDA NVidia, LG ULTRAWIDE",
"Hardware device with all software conversions",
"plughw:CARD=NVidia,DEV=7",
"HDA NVidia, K243Y",
"Hardware device with all software conversions",
"plughw:CARD=NVidia,DEV=8",
"HDA NVidia, HDMI 2",
"Hardware device with all software conversions",
"plughw:CARD=NVidia,DEV=9",
"HDA NVidia, HDMI 3",
"Hardware device with all software conversions",
"hdmi:CARD=NVidia,DEV=0",
"HDA NVidia, LG ULTRAWIDE",
"HDMI Audio Output",
"hdmi:CARD=NVidia,DEV=1",
"HDA NVidia, K243Y",
"HDMI Audio Output",
"hdmi:CARD=NVidia,DEV=2",
"HDA NVidia, HDMI 2",
"HDMI Audio Output",
"hdmi:CARD=NVidia,DEV=3",
"HDA NVidia, HDMI 3",
"HDMI Audio Output",
"dmix:CARD=NVidia,DEV=3",
"HDA NVidia, LG ULTRAWIDE",
"Direct sample mixing device",
"dmix:CARD=NVidia,DEV=7",
"HDA NVidia, K243Y",
"Direct sample mixing device",
"dmix:CARD=NVidia,DEV=8",
"HDA NVidia, HDMI 2",
"Direct sample mixing device",
"dmix:CARD=NVidia,DEV=9",
"HDA NVidia, HDMI 3",
"Direct sample mixing device",
"hw:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"Direct hardware device without any conversions",
"hw:CARD=Generic,DEV=1",
"HD-Audio Generic, ALC892 Digital",
"Direct hardware device without any conversions",
"plughw:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"Hardware device with all software conversions",
"plughw:CARD=Generic,DEV=1",
"HD-Audio Generic, ALC892 Digital",
"Hardware device with all software conversions",
"sysdefault:CARD=Generic",
"HD-Audio Generic, ALC892 Analog",
"Default Audio Device",
"front:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"Front output / input",
"surround21:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"2.1 Surround output to Front and Subwoofer speakers",
"surround40:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"4.0 Surround output to Front and Rear speakers",
"surround41:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"4.1 Surround output to Front, Rear and Subwoofer speakers",
"surround50:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"5.0 Surround output to Front, Center and Rear speakers",
"surround51:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"5.1 Surround output to Front, Center, Rear and Subwoofer speakers",
"surround71:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"7.1 Surround output to Front, Center, Side, Rear and Woofer speakers",
"iec958:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Digital",
"IEC958 (S/PDIF) Digital Audio Output",
"dmix:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"Direct sample mixing device",
"dmix:CARD=Generic,DEV=1",
"HD-Audio Generic, ALC892 Digital",
"Direct sample mixing device"
]
},
"software": {
"backend": "",
"server_name": "",
"server_version": "",
"default_sink": null,
"default_source": null,
"sinks": null,
"sources": null
}
},
"raw_info": {
"debug": "active",
"dmidecode": "# dmidecode 3.6\nGetting SMBIOS data from sysfs.\nSMBIOS 3.3.0 present.\n\nHandle 0x0000, DMI type 0, 26 bytes\nBIOS Information\n\tVendor: American Megatrends International, LLC.\n\tVersion: F65e\n\tRelease Date: 09/20/2023\n\tAddress: 0xF0000\n\tRuntime Size: 64 kB\n\tROM Size: 16 MB\n\tCharacteristics:\n\t\tPCI is supported\n\t\tBIOS is upgradeable\n\t\tBIOS shadowing is allowed\n\t\tBoot from CD is supported\n\t\tSelectable boot is supported\n\t\tBIOS ROM is socketed\n\t\tEDD is supported\n\t\tJapanese floppy for NEC 9800 1.2 MB is supported (int 13h)\n\t\tJapanese floppy for Toshiba 1.2 MB is supported (int 13h)\n\t\t5.25\"/360 kB floppy services are supported (int 13h)\n\t\t5.25\"/1.2 MB floppy services are supported (int 13h)\n\t\t3.5\"/720 kB floppy services are supported (int 13h)\n\t\t3.5\"/2.88 MB floppy services are supported (int 13h)\n\t\tPrint screen service is supported (int 5h)\n\t\tSerial services are supported (int 14h)\n\t\tPrinter services are supported (int 17h)\n\t\tCGA/mono video services are supported (int 10h)\n\t\tUSB legacy is supported\n\t\tBIOS boot specification is supported\n\t\tTargeted content distribution is supported\n\t\tUEFI is supported\n\tBIOS Revision: 5.17\n\nHandle 0x0001, DMI type 1, 27 bytes\nSystem Information\n\tManufacturer: Gigabyte Technology Co., Ltd.\n\tProduct Name: B450 AORUS ELITE\n\tVersion: Default string\n\tSerial Number: Default string\n\tUUID: 03c00218-044d-05b5-6506-740700080009\n\tWake-up Type: Power Switch\n\tSKU Number: Default string\n\tFamily: B450 MB\n\nHandle 0x0002, DMI type 2, 15 bytes\nBase Board Information\n\tManufacturer: Gigabyte Technology Co., Ltd.\n\tProduct Name: B450 AORUS ELITE\n\tVersion: Default string\n\tSerial Number: Default string\n\tAsset Tag: Default string\n\tFeatures:\n\t\tBoard is a hosting board\n\t\tBoard is replaceable\n\tLocation In Chassis: Default string\n\tChassis Handle: 0x0003\n\tType: Motherboard\n\tContained Object Handles: 0\n\nHandle 0x000B, DMI type 16, 23 bytes\nPhysical Memory Array\n\tLocation: System Board Or Motherboard\n\tUse: System Memory\n\tError Correction Type: None\n\tMaximum Capacity: 128 GB\n\tError Information Handle: 0x000A\n\tNumber Of Devices: 4\n\nHandle 0x0013, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0012\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 16 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 0\n\tBank Locator: P0 CHANNEL A\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: 00000000\n\tAsset Tag: Not Specified\n\tPart Number: CMW32GX4M2E3200C16 \n\tRank: 2\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: Unknown\n\tMaximum Voltage: Unknown\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 3, Hex 0x9E\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 16 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x0016, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0015\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 8 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 1\n\tBank Locator: P0 CHANNEL A\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: E3C4408B\n\tAsset Tag: Not Specified\n\tPart Number: BL8G32C16U4BL.M8FE\n\tRank: 1\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: 1.2 V\n\tMaximum Voltage: 1.2 V\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 6, Hex 0x9B\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 8 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x0019, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0018\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 16 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 0\n\tBank Locator: P0 CHANNEL B\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: 00000000\n\tAsset Tag: Not Specified\n\tPart Number: CMW32GX4M2E3200C16 \n\tRank: 2\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: Unknown\n\tMaximum Voltage: Unknown\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 3, Hex 0x9E\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 16 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x001C, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x001B\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 8 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 1\n\tBank Locator: P0 CHANNEL B\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: E3C44087\n\tAsset Tag: Not Specified\n\tPart Number: BL8G32C16U4BL.M8FE\n\tRank: 1\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: 1.2 V\n\tMaximum Voltage: 1.2 V\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 6, Hex 0x9B\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 8 GB\n\tCache Size: None\n\tLogical Size: None\n\n",
"lsblk": "NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS\nloop0 7:0 0 118,5M 1 loop /snap/iptvnator/92\nloop1 7:1 0 48,1M 1 loop /snap/snapd/25935\nloop2 7:2 0 50,9M 1 loop /snap/snapd/25577\nloop3 7:3 0 4K 1 loop /snap/bare/5\nloop4 7:4 0 91,7M 1 loop /snap/gtk-common-themes/1535\nloop5 7:5 0 55,5M 1 loop /snap/core18/2976\nloop6 7:6 0 164,8M 1 loop /snap/gnome-3-28-1804/198\nloop7 7:7 0 0B 0 loop \nsda 8:0 0 447,1G 0 disk \n└─sda1 8:1 0 447,1G 0 part \nsdb 8:16 1 0B 0 disk \nsdc 8:32 1 0B 0 disk \nsdd 8:48 1 0B 0 disk \nsde 8:64 1 0B 0 disk \nnvme0n1 259:0 0 465,8G 0 disk \n├─nvme0n1p1 259:1 0 976M 0 part /boot/efi\n├─nvme0n1p2 259:2 0 440,8G 0 part /\n└─nvme0n1p3 259:3 0 24G 0 part [SWAP]\nnvme1n1 259:4 0 465,8G 0 disk \n├─nvme1n1p1 259:5 0 50M 0 part \n├─nvme1n1p2 259:6 0 464,3G 0 part \n├─nvme1n1p3 259:7 0 808M 0 part \n├─nvme1n1p4 259:8 0 100M 0 part \n└─nvme1n1p5 259:9 0 522M 0 part \n",
"lscpu": "Architecture : x86_64\nMode(s) opératoire(s) des processeurs : 32-bit, 64-bit\nTailles des adresses: 48 bits physical, 48 bits virtual\nBoutisme : Little Endian\nProcesseur(s) : 24\nListe de processeur(s) en ligne : 0-23\nIdentifiant constructeur : AuthenticAMD\nNom de modèle : AMD Ryzen 9 5900X 12-Core Processor\nFamille de processeur : 25\nModèle : 33\nThread(s) par cœur : 2\nCœur(s) par socket : 12\nSocket(s) : 1\nRévision : 2\nAccroissement de fréquence : activé\nmultiplication des MHz du/des CPU(s) : 81%\nVitesse maximale du processeur en MHz : 4951,0000\nVitesse minimale du processeur en MHz : 550,0000\nBogoMIPS : 7399,98\nDrapeaux : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local user_shstk clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm debug_swap\nVirtualisation : AMD-V\nCache L1d : 384 KiB (12 instances)\nCache L1i : 384 KiB (12 instances)\nCache L2 : 6 MiB (12 instances)\nCache L3 : 64 MiB (2 instances)\nNœud(s) NUMA : 1\nNœud NUMA 0 de processeur(s) : 0-23\nVulnérabilité Gather data sampling : Not affected\nVulnérabilité Indirect target selection : Not affected\nVulnérabilité Itlb multihit : Not affected\nVulnérabilité L1tf : Not affected\nVulnérabilité Mds : Not affected\nVulnérabilité Meltdown : Not affected\nVulnérabilité Mmio stale data : Not affected\nVulnérabilité Reg file data sampling : Not affected\nVulnérabilité Retbleed : Not affected\nVulnérabilité Spec rstack overflow : Mitigation; Safe RET\nVulnérabilité Spec store bypass : Mitigation; Speculative Store Bypass disabled via prctl\nVulnérabilité Spectre v1 : Mitigation; usercopy/swapgs barriers and __user pointer sanitization\nVulnérabilité Spectre v2 : Mitigation; Retpolines; IBPB conditional; IBRS_FW; STIBP always-on; RSB filling; PBRSB-eIBRS Not affected; BHI Not affected\nVulnérabilité Srbds : Not affected\nVulnérabilité Tsa : Vulnerable: Clear CPU buffers attempted, no microcode\nVulnérabilité Tsx async abort : Not affected\nVulnérabilité Vmscape : Mitigation; IBPB before exit to userspace\n"
}
},
"results": {
"cpu": {
"events_per_sec": 37452.18,
"events_per_sec_single": 5591.15,
"events_per_sec_multi": 69313.21,
"duration_s": 20.0004,
"score": 37452.18,
"score_single": 5591.15,
"score_multi": 69313.21
},
"memory": {
"throughput_mib_s": 8875.52,
"score": 8875.52
},
"disk": {
"read_mb_s": 40.78125,
"write_mb_s": 40.7470703125,
"iops_read": 10440.051998,
"iops_write": 10431.352288,
"latency_ms": 0.07348452990900001,
"score": 40.76416015625
},
"network": {
"upload_mbps": 942.0301373081797,
"download_mbps": 939.2972180673768,
"ping_ms": 0.409,
"jitter_ms": null,
"packet_loss_percent": null,
"score": 940.6636776877783
},
"gpu": {
"glmark2_score": null,
"score": null
},
"global_score": 77701.65599800028
},
"raw_info": {
"debug": "active",
"dmidecode": "# dmidecode 3.6\nGetting SMBIOS data from sysfs.\nSMBIOS 3.3.0 present.\n\nHandle 0x0000, DMI type 0, 26 bytes\nBIOS Information\n\tVendor: American Megatrends International, LLC.\n\tVersion: F65e\n\tRelease Date: 09/20/2023\n\tAddress: 0xF0000\n\tRuntime Size: 64 kB\n\tROM Size: 16 MB\n\tCharacteristics:\n\t\tPCI is supported\n\t\tBIOS is upgradeable\n\t\tBIOS shadowing is allowed\n\t\tBoot from CD is supported\n\t\tSelectable boot is supported\n\t\tBIOS ROM is socketed\n\t\tEDD is supported\n\t\tJapanese floppy for NEC 9800 1.2 MB is supported (int 13h)\n\t\tJapanese floppy for Toshiba 1.2 MB is supported (int 13h)\n\t\t5.25\"/360 kB floppy services are supported (int 13h)\n\t\t5.25\"/1.2 MB floppy services are supported (int 13h)\n\t\t3.5\"/720 kB floppy services are supported (int 13h)\n\t\t3.5\"/2.88 MB floppy services are supported (int 13h)\n\t\tPrint screen service is supported (int 5h)\n\t\tSerial services are supported (int 14h)\n\t\tPrinter services are supported (int 17h)\n\t\tCGA/mono video services are supported (int 10h)\n\t\tUSB legacy is supported\n\t\tBIOS boot specification is supported\n\t\tTargeted content distribution is supported\n\t\tUEFI is supported\n\tBIOS Revision: 5.17\n\nHandle 0x0001, DMI type 1, 27 bytes\nSystem Information\n\tManufacturer: Gigabyte Technology Co., Ltd.\n\tProduct Name: B450 AORUS ELITE\n\tVersion: Default string\n\tSerial Number: Default string\n\tUUID: 03c00218-044d-05b5-6506-740700080009\n\tWake-up Type: Power Switch\n\tSKU Number: Default string\n\tFamily: B450 MB\n\nHandle 0x0002, DMI type 2, 15 bytes\nBase Board Information\n\tManufacturer: Gigabyte Technology Co., Ltd.\n\tProduct Name: B450 AORUS ELITE\n\tVersion: Default string\n\tSerial Number: Default string\n\tAsset Tag: Default string\n\tFeatures:\n\t\tBoard is a hosting board\n\t\tBoard is replaceable\n\tLocation In Chassis: Default string\n\tChassis Handle: 0x0003\n\tType: Motherboard\n\tContained Object Handles: 0\n\nHandle 0x000B, DMI type 16, 23 bytes\nPhysical Memory Array\n\tLocation: System Board Or Motherboard\n\tUse: System Memory\n\tError Correction Type: None\n\tMaximum Capacity: 128 GB\n\tError Information Handle: 0x000A\n\tNumber Of Devices: 4\n\nHandle 0x0013, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0012\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 16 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 0\n\tBank Locator: P0 CHANNEL A\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: 00000000\n\tAsset Tag: Not Specified\n\tPart Number: CMW32GX4M2E3200C16 \n\tRank: 2\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: Unknown\n\tMaximum Voltage: Unknown\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 3, Hex 0x9E\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 16 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x0016, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0015\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 8 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 1\n\tBank Locator: P0 CHANNEL A\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: E3C4408B\n\tAsset Tag: Not Specified\n\tPart Number: BL8G32C16U4BL.M8FE\n\tRank: 1\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: 1.2 V\n\tMaximum Voltage: 1.2 V\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 6, Hex 0x9B\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 8 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x0019, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0018\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 16 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 0\n\tBank Locator: P0 CHANNEL B\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: 00000000\n\tAsset Tag: Not Specified\n\tPart Number: CMW32GX4M2E3200C16 \n\tRank: 2\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: Unknown\n\tMaximum Voltage: Unknown\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 3, Hex 0x9E\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 16 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x001C, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x001B\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 8 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 1\n\tBank Locator: P0 CHANNEL B\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: E3C44087\n\tAsset Tag: Not Specified\n\tPart Number: BL8G32C16U4BL.M8FE\n\tRank: 1\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: 1.2 V\n\tMaximum Voltage: 1.2 V\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 6, Hex 0x9B\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 8 GB\n\tCache Size: None\n\tLogical Size: None\n\n",
"lsblk": "NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS\nloop0 7:0 0 118,5M 1 loop /snap/iptvnator/92\nloop1 7:1 0 48,1M 1 loop /snap/snapd/25935\nloop2 7:2 0 50,9M 1 loop /snap/snapd/25577\nloop3 7:3 0 4K 1 loop /snap/bare/5\nloop4 7:4 0 91,7M 1 loop /snap/gtk-common-themes/1535\nloop5 7:5 0 55,5M 1 loop /snap/core18/2976\nloop6 7:6 0 164,8M 1 loop /snap/gnome-3-28-1804/198\nloop7 7:7 0 0B 0 loop \nsda 8:0 0 447,1G 0 disk \n└─sda1 8:1 0 447,1G 0 part \nsdb 8:16 1 0B 0 disk \nsdc 8:32 1 0B 0 disk \nsdd 8:48 1 0B 0 disk \nsde 8:64 1 0B 0 disk \nnvme0n1 259:0 0 465,8G 0 disk \n├─nvme0n1p1 259:1 0 976M 0 part /boot/efi\n├─nvme0n1p2 259:2 0 440,8G 0 part /\n└─nvme0n1p3 259:3 0 24G 0 part [SWAP]\nnvme1n1 259:4 0 465,8G 0 disk \n├─nvme1n1p1 259:5 0 50M 0 part \n├─nvme1n1p2 259:6 0 464,3G 0 part \n├─nvme1n1p3 259:7 0 808M 0 part \n├─nvme1n1p4 259:8 0 100M 0 part \n└─nvme1n1p5 259:9 0 522M 0 part \n",
"lscpu": "Architecture : x86_64\nMode(s) opératoire(s) des processeurs : 32-bit, 64-bit\nTailles des adresses: 48 bits physical, 48 bits virtual\nBoutisme : Little Endian\nProcesseur(s) : 24\nListe de processeur(s) en ligne : 0-23\nIdentifiant constructeur : AuthenticAMD\nNom de modèle : AMD Ryzen 9 5900X 12-Core Processor\nFamille de processeur : 25\nModèle : 33\nThread(s) par cœur : 2\nCœur(s) par socket : 12\nSocket(s) : 1\nRévision : 2\nAccroissement de fréquence : activé\nmultiplication des MHz du/des CPU(s) : 81%\nVitesse maximale du processeur en MHz : 4951,0000\nVitesse minimale du processeur en MHz : 550,0000\nBogoMIPS : 7399,98\nDrapeaux : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local user_shstk clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm debug_swap\nVirtualisation : AMD-V\nCache L1d : 384 KiB (12 instances)\nCache L1i : 384 KiB (12 instances)\nCache L2 : 6 MiB (12 instances)\nCache L3 : 64 MiB (2 instances)\nNœud(s) NUMA : 1\nNœud NUMA 0 de processeur(s) : 0-23\nVulnérabilité Gather data sampling : Not affected\nVulnérabilité Indirect target selection : Not affected\nVulnérabilité Itlb multihit : Not affected\nVulnérabilité L1tf : Not affected\nVulnérabilité Mds : Not affected\nVulnérabilité Meltdown : Not affected\nVulnérabilité Mmio stale data : Not affected\nVulnérabilité Reg file data sampling : Not affected\nVulnérabilité Retbleed : Not affected\nVulnérabilité Spec rstack overflow : Mitigation; Safe RET\nVulnérabilité Spec store bypass : Mitigation; Speculative Store Bypass disabled via prctl\nVulnérabilité Spectre v1 : Mitigation; usercopy/swapgs barriers and __user pointer sanitization\nVulnérabilité Spectre v2 : Mitigation; Retpolines; IBPB conditional; IBRS_FW; STIBP always-on; RSB filling; PBRSB-eIBRS Not affected; BHI Not affected\nVulnérabilité Srbds : Not affected\nVulnérabilité Tsa : Vulnerable: Clear CPU buffers attempted, no microcode\nVulnérabilité Tsx async abort : Not affected\nVulnérabilité Vmscape : Mitigation; IBPB before exit to userspace\n"
}
}
[DEBUG] Payload sauvegardé au format JSON dans bench_payload_last.json (49185 octets)
[DEBUG] Contenu de /home/gilles/Documents/vscode/bis/bench_go/config.yaml :
# bench-client config.yaml
# Objectif: décrire précisément
# - les outils à utiliser (et exigences d'installation)
# - les informations à collecter
# - les benchmarks à exécuter
# - les paramètres (timeouts, limites, endpoints, debug)
#
# Le binaire (Go/Rust) charge ce fichier depuis HTTP(S), valide les bornes, applique des defaults sûrs,
# et peut fallback sur une config locale si indisponible.
config_version: 1
profile: default
backend:
# URL finale du POST (le programme peut aussi accepter server_base_url + path)
url: "http://10.0.0.50:8007/api/benchmark"
# Auth: idéalement injecté par variable d'env sur le client; éviter de mettre le token dans la config distante.
auth:
mode: bearer_env
env_var: "test_hardware_perf"
http:
timeout_s: 15
retries: 2
retry_backoff_s: 2
tls:
verify: true
remote_config:
# Options de cache/ETag si le binaire gère le rafraîchissement
cache_path: "/var/cache/bench-client/config.yaml"
use_etag: true
refresh_max_age_s: 86400
runtime:
# Timeouts globaux de sécurité
max_total_runtime_s: 480
command_timeout_s: 30
command_timeout_overrides:
dmidecode_s: 20
smartctl_s: 10
lsblk_s: 10
sysbench_cpu_s: 120
sysbench_mem_s: 60
fio_s: 120
iperf3_s: 20
temp_dir: "/tmp"
locale: "C"
path_prepend:
- "/usr/sbin"
- "/sbin"
logging:
level: info # trace|debug|info|warn|error
progress: true # affichage étapes (1/N) + items
show_command_lines: false
capture_raw_output: true # remonte dans raw_info (attention taille)
raw_output_max_kb: 5120
save_payload_to_tmp: true
payload_tmp_dir: "/tmp"
payload_filename_prefix: "bench_payload_"
interactive_pause_on_debug: true
payload:
dir: "."
prefix: "bench_payload_"
always_save: true
device_identity:
# device_identifier envoyé au backend
prefer:
- hostname
- machine_id
hostname_command: "hostname"
machine_id_path: "/etc/machine-id"
dependencies:
# Liste des programmes externes (installés par le script shell)
# Le binaire doit pouvoir:
# - détecter présence/version (optionnel)
# - marquer chaque "feature" comme disponible ou non
required_base:
- name: "curl"
purpose: "Téléchargements/diagnostics (souvent côté script)"
- name: "jq"
purpose: "Optionnel: debug/validation (souvent côté script, pas nécessaire au binaire)"
- name: "lscpu"
purpose: "Infos CPU"
- name: "free"
purpose: "Infos mémoire"
- name: "lsblk"
purpose: "Infos stockage/partitions"
- name: "ip"
purpose: "Interfaces réseau, adresses IP"
- name: "bc"
purpose: "Optionnel: calculs (si pas fait en code)"
- name: "dmidecode"
purpose: "Infos BIOS/carte mère/RAM/DMI"
requires_root: true
- name: "smartctl"
package: "smartmontools"
purpose: "Infos disques SMART"
requires_root: true
- name: "ethtool"
purpose: "Vitesse réseau, Wake-on-LAN, driver"
requires_root: true
- name: "lspci"
package: "pciutils"
purpose: "Liste périphériques PCI (GPU/Audio/etc.)"
- name: "lsusb"
package: "usbutils"
purpose: "Liste périphériques USB"
- name: "aplay"
package: "alsa-utils"
purpose: "Inventaire audio ALSA"
- name: "arecord"
package: "alsa-utils"
purpose: "Inventaire capture ALSA"
- name: "pactl"
package: "pulseaudio-utils"
purpose: "Infos audio PulseAudio/PipeWire (si dispo)"
- name: "iw"
package: "iw"
purpose: "SSID + bitrate Wi-Fi"
- name: "loginctl"
package: "systemd"
purpose: "Type de session (x11/wayland/tty)"
- name: "xrandr"
package: "x11-xserver-utils"
purpose: "Résolution écran (X11)"
- name: "xdpyinfo"
package: "x11-utils"
purpose: "Résolution écran (fallback X11)"
- name: "swaymsg"
package: "sway"
purpose: "Résolution écran (Wayland/Sway)"
- name: "nvidia-smi"
package: "nvidia-utils"
purpose: "Infos GPU NVIDIA (si présent)"
- name: "systemd-detect-virt"
package: "systemd"
purpose: "Détection virtualisation/proxmox"
- name: "pveversion"
package: "pve-manager"
purpose: "Détection hôte Proxmox (si présent)"
benchmark_tools:
- name: "sysbench"
purpose: "Bench CPU et mémoire"
- name: "fio"
purpose: "Bench disque"
- name: "iperf3"
purpose: "Bench réseau"
- name: "ping"
package: "iputils-ping"
purpose: "Vérifier accessibilité iperf server"
- name: "nc"
package: "netcat-openbsd"
purpose: "Tester port 5201 iperf3"
collection:
# Liste des infos à récupérer, structurées comme dans ton script.
system:
enabled: true
items:
- hostname
- os_id
- os_version
- kernel_version
- architecture
- session_type # XDG_SESSION_TYPE / loginctl / DISPLAY / WAYLAND_DISPLAY
- screen_resolution # xrandr/xdpyinfo/swaymsg
- last_boot_time # who -b
- uptime_seconds # /proc/uptime
- battery_percentage # /sys/class/power_supply/BAT*/capacity
- battery_status # /sys/class/power_supply/BAT*/status
- battery_health # /sys/class/power_supply/BAT*/health ou uevent
- virtualization # systemd-detect-virt + proxmox hints
virtualization_detection:
enabled: true
proxmox:
detect_host_by:
- pveversion
- "/etc/pve"
detect_guest_by:
- systemd_detect_virt
- qemu_guest_agent
- dmidecode_manufacturer_product_matches: ["qemu", "proxmox"]
capture:
- is_proxmox_host
- is_proxmox_guest
- proxmox_version
- virtualization_type
cpu:
enabled: true
source:
primary: lscpu
supplement_dmidecode: true
items:
- vendor
- model
- cores_physical # cores_per_socket * sockets
- threads # nproc
- base_freq_ghz # lscpu CPU MHz -> GHz
- max_freq_ghz # lscpu CPU max MHz -> GHz
- cache_l1_kb
- cache_l2_kb
- cache_l3_kb
- flags # CPU flags list
- microarchitecture # depuis dmidecode type 4 (Family) si manquant
raw_capture:
- lscpu_output
ram:
enabled: true
sources:
- free
- dmidecode
items:
- total_mb
- used_mb
- free_mb
- shared_mb
- slots_total # dmidecode -t 16
- slots_used # dmidecode -t 17
- max_capacity_mb # dmidecode -t 16 Maximum Capacity
- ecc # dmidecode -t memory Error Correction Type
- layout # par slot: locator, size, type, speed, configured_speed, form_factor, type_detail, rank, manufacturer, part_number
raw_capture:
- dmidecode_full
gpu:
enabled: true
sources:
- lspci
- nvidia_smi_optional
items:
- vendor # NVIDIA/AMD/Intel/Unknown
- model # lspci vga/3d ou nvidia-smi name
- memory_dedicated_mb # nvidia-smi (si dispo)
- driver_version # nvidia-smi (si dispo)
motherboard_bios:
enabled: true
source: dmidecode
items:
- baseboard_manufacturer
- baseboard_product_name
- bios_vendor
- bios_version
- bios_release_date
pci_devices:
enabled: true
source: lspci
items:
- slot
- class
- vendor
- device
usb_devices:
enabled: true
source: lsusb
items:
- bus
- device
- vendor_id
- product_id
- name
audio:
enabled: true
sources:
- lspci
- alsa
- pactl_optional
items:
hardware:
- pci_audio_devices # lspci audio
- alsa_playback # aplay -l
- alsa_capture # arecord -l
- pcm_devices # aplay -L
software:
- backend # pipewire/pulseaudio/alsa
- server_name
- server_version
- default_sink
- default_source
- sinks
- sources
storage:
enabled: true
sources:
- lsblk
- smartctl
devices:
enumerate_by: "lsblk_disks" # lsblk -d -n -o NAME,TYPE
include_removable: false
items:
- device # /dev/sda
- model # smartctl -i
- serial # smartctl -i
- size # lsblk
- type # rota -> ssd/hdd
- interface # tran
- temperature_c # smartctl -A
- smart_health # smartctl -H
partitions:
enabled: true
source: lsblk_json
items:
- name
- mount_point
- fs_type
- total_gb
- used_gb
- free_gb
raw_capture:
- lsblk_output
network_shares:
enabled: true
source: "/proc/mounts"
detect_fs_types:
- nfs
- nfs4
- cifs
- smbfs
- fuse.cifs
- fuse.smbfs
- afp
- afpfs
- fuse.afpfs
- sshfs
- fuse.sshfs
- ftpfs
- curlftpfs
- fuse.ftpfs
- davfs
- davfs2
- fuse.webdavfs
items:
- protocol
- source
- mount_point
- fs_type
- options
- total_gb
- used_gb
- free_gb
network:
enabled: true
sources:
- ip
- ethtool
- iw_optional
interface_filter:
# reprise logique script: UP|UNKNOWN sauf interfaces virtuelles connues
include_states: ["UP", "UNKNOWN"]
exclude_name_prefixes: ["lo", "docker", "br-", "veth", "tap", "fw"]
items:
- name
- type # bridge|ethernet|wifi|unknown
- mac
- ip_address
- speed_mbps # ethtool speed ou iw tx bitrate
- driver # ethtool -i ou /sys/.../driver
- ssid # iw dev link
- wake_on_lan # ethtool Wake-on
raw_info:
enabled: true
include:
- lscpu
- lsblk
- dmidecode
max_size_kb: 5120
benchmarks:
enabled: true
# Pondérations identiques à ton script (si résultat dispo)
weights:
cpu: 0.40
memory: 0.20
disk: 0.20
network: 0.10
gpu: 0.10
cpu_sysbench:
enabled: true
tool: sysbench
params:
cpu_max_prime: 20000
single_thread: 1
multi_threads: "all" # all -> nproc
outputs:
- events_per_sec_single
- events_per_sec_multi
- duration_s
- score_single
- score_multi
- score_global
memory_sysbench:
enabled: true
tool: sysbench
params:
total_size: "1G"
outputs:
- throughput_mib_s
- score
disk_fio:
enabled: true
tool: fio
safety:
# Empêcher un bench destructif ou trop long
max_runtime_s: 60
max_size: "1G"
direct: 1
params:
name: "bench"
ioengine: "libaio"
rw: "randrw"
bs: "4k"
size: "500M"
numjobs: 1
runtime_s: 30
time_based: true
output_format: "json"
outputs:
- read_mb_s
- write_mb_s
- iops_read
- iops_write
- latency_ms
- score
network_iperf3:
enabled: true
tool: iperf3
server: "10.0.0.50"
port: 5201
prechecks:
ping:
enabled: true
count: 1
timeout_s: 1
port_check:
enabled: true
tool: nc
timeout_s: 2
params:
duration_s: 10
bidir: true
json: true
outputs:
- upload_mbps
- download_mbps
- ping_ms
- score
# placeholders (comme ton script)
- jitter_ms
- packet_loss_percent
gpu:
enabled: false
note: "GPU bench non implémenté dans le script d'origine (placeholder)."
payload_mapping:
# Le binaire peut mapper ses structures internes vers le schéma backend actuel.
# Utile si ton backend attend des champs précis.
device_identifier: "system.hostname"
bench_script_version_field: "bench_client_version"
include_sections:
- hardware
- results
- raw_info
limits:
# Bornes générales de sécurité (validation côté client)
max_payload_kb: 1024
max_raw_info_kb: 5120
max_fio_runtime_s: 60
max_fio_size_bytes: 1073741824 # 1 GiB
max_sysbench_cpu_prime: 50000
max_iperf_duration_s: 30
features:
# Permet d'activer/désactiver rapidement des blocs selon machines
enable_screen_resolution_detection: true
enable_battery_detection: true
enable_network_share_detection: true
enable_audio_detection: true
enable_proxmox_detection: true
[DEBUG] Config chargée : {ConfigVersion:1 Backend:{URL:http://10.0.0.50:8007/api/benchmark Auth:{Mode:bearer_env EnvVar:test_hardware_perf} HTTP:{TimeoutS:15 Retries:2 RetryBackoffS:2 TLSVerify:false}} Runtime:{MaxTotalRuntime:480 CommandTimeout:30 TempDir:/tmp Locale:C PathPrepend:[/usr/sbin /sbin]} Logging:{Level:info Progress:true ShowCommandLines:false CaptureRawOutput:true RawOutputMaxKB:5120 SavePayloadToTmp:true PayloadTmpDir:/tmp PayloadFilenamePrefix:bench_payload_ InteractiveDebugPause:true} Payload:{Dir:. Prefix:bench_payload_ Always:true} Benchmarks:{Enabled:true Weights:map[cpu:0.4 disk:0.2 gpu:0.1 memory:0.2 network:0.1] CPU:{Enabled:true Tool:sysbench Server: Port:0 Params:map[cpu_max_prime:20000 multi_threads:all single_thread:1] Safety:map[]} Memory:{Enabled:true Tool:sysbench Server: Port:0 Params:map[total_size:1G] Safety:map[]} Disk:{Enabled:true Tool:fio Server: Port:0 Params:map[bs:4k ioengine:libaio name:bench numjobs:1 output_format:json runtime_s:30 rw:randrw size:500M time_based:true] Safety:map[direct:1 max_runtime_s:60 max_size:1G]} Network:{Enabled:true Tool:iperf3 Server:10.0.0.50 Port:5201 Params:map[bidir:true duration_s:10 json:true] Safety:map[]}} Collection:{System:{Enabled:true} CPU:{Enabled:true} RAM:{Enabled:true} Storage:{Enabled:true} Network:{Enabled:true} GPU:{Enabled:true} Audio:{Enabled:true} PCI:{Enabled:true} USB:{Enabled:true}} RawInfo:{Enabled:true Include:[lscpu lsblk dmidecode] MaxSizeKB:5120}}
[DEBUG] Configuration complète : {ConfigVersion:1 Backend:{URL:http://10.0.0.50:8007/api/benchmark Auth:{Mode:bearer_env EnvVar:test_hardware_perf} HTTP:{TimeoutS:15 Retries:2 RetryBackoffS:2 TLSVerify:false}} Runtime:{MaxTotalRuntime:480 CommandTimeout:30 TempDir:/tmp Locale:C PathPrepend:[/usr/sbin /sbin]} Logging:{Level:info Progress:true ShowCommandLines:false CaptureRawOutput:true RawOutputMaxKB:5120 SavePayloadToTmp:true PayloadTmpDir:/tmp PayloadFilenamePrefix:bench_payload_ InteractiveDebugPause:true} Payload:{Dir:. Prefix:bench_payload_ Always:true} Benchmarks:{Enabled:true Weights:map[cpu:0.4 disk:0.2 gpu:0.1 memory:0.2 network:0.1] CPU:{Enabled:true Tool:sysbench Server: Port:0 Params:map[cpu_max_prime:20000 multi_threads:all single_thread:1] Safety:map[]} Memory:{Enabled:true Tool:sysbench Server: Port:0 Params:map[total_size:1G] Safety:map[]} Disk:{Enabled:true Tool:fio Server: Port:0 Params:map[bs:4k ioengine:libaio name:bench numjobs:1 output_format:json runtime_s:30 rw:randrw size:500M time_based:true] Safety:map[direct:1 max_runtime_s:60 max_size:1G]} Network:{Enabled:true Tool:iperf3 Server:10.0.0.50 Port:5201 Params:map[bidir:true duration_s:10 json:true] Safety:map[]}} Collection:{System:{Enabled:true} CPU:{Enabled:true} RAM:{Enabled:true} Storage:{Enabled:true} Network:{Enabled:true} GPU:{Enabled:true} Audio:{Enabled:true} PCI:{Enabled:true} USB:{Enabled:true}} RawInfo:{Enabled:true Include:[lscpu lsblk dmidecode] MaxSizeKB:5120}}
[DEBUG] [2/6] Début collecte CPU
[DEBUG] Exec: lscpu []
[DEBUG] Exec: dmidecode [-t 4]
[DEBUG] [2/6] Détails CPU: {Vendor:AuthenticAMD Model:AMD Ryzen 9 5900X 12-Core Processor Cores:12 Threads:24 BaseFreqGHz:4.951 MaxFreqGHz:4.951 CacheL1KB:64 CacheL2KB:512 CacheL3KB:32768 Flags:[fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local user_shstk clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm debug_swap] Microarchitecture:Zen TDPW:<nil>}
[DEBUG] [2/6] Début collecte RAM
[DEBUG] SMBIOS détecté : SMBIOS 3.3.0 (54 tables)
[DEBUG] Module SMBIOS détecté : DIMM 0 {Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 }
[DEBUG] Module SMBIOS détecté : DIMM 1 {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE}
[DEBUG] Module SMBIOS détecté : DIMM 0 {Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 }
[DEBUG] Module SMBIOS détecté : DIMM 1 {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE}
[DEBUG] Mémoire SMBIOS : slots_total=10 slots_used=4 ecc=false max=0MB
[DEBUG] [2/6] Détails RAM: {TotalMB:48096 UsedMB:17314 FreeMB:30782 SharedMB:972 SlotsTotal:10 SlotsUsed:4 MaxCapacityMB:48096 ECC:false Layout:[{Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 } {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE} {Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 } {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE}]}
[DEBUG] [2/6] Début collecte GPU
[DEBUG] Exec: lspci []
[DEBUG] Exec: nvidia-smi [--query-gpu=name,driver_version,memory.total --format=csv,noheader,nounits]
[DEBUG] [2/6] Détails GPU: {Vendor:NVIDIA Model:NVIDIA GeForce RTX 3060 DriverVersion:550.163.01 MemoryDedicatedMB:0xc00038c028 MemorySharedMB:<nil> APISupport:[]}
[DEBUG] [2/6] Début collecte stockage
[DEBUG] Exec: lsblk [-J -b -o NAME,TYPE,TRAN,VENDOR,MODEL,SERIAL,SIZE]
[DEBUG] SMART open /dev/sdb impossible: unknown drive type
[DEBUG] SMART open /dev/sdc impossible: unknown drive type
[DEBUG] SMART open /dev/sdd impossible: unknown drive type
[DEBUG] SMART open /dev/sde impossible: unknown drive type
[DEBUG] [2/6] Détails stockage: {Devices:[{Name:/dev/nvme0n1 Type:ssd Interface:nvme CapacityGB:465.7617416381836 Vendor:CT500P2SSD8 Model:CT500P2SSD8 Serial:2138E5D60DD8 SmartHealth:PASSED Temperature:34} {Name:/dev/nvme1n1 Type: Interface:nvme CapacityGB:465.7617416381836 Vendor:CT500P2SSD8 Model:CT500P2SSD8 Serial:2108E4FD258D SmartHealth:PASSED Temperature:32} {Name:/dev/sda Type: Interface:sata CapacityGB:447.13167572021484 Vendor:ATA Model:KINGSTON SUV500480G Serial:50026B768226A365 SmartHealth:PASSED Temperature:25} {Name:/dev/sdb Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:Compact Flash Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sdc Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:SD/MMC Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sdd Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:MS/MS-PRO Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sde Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:xD-Picture Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0}] Partitions:[{Name:/dev/nvme0n1p2 MountPoint:/ FSType:ext4 TotalGB:432.80120849609375 UsedGB:0xc00038c2e8 FreeGB:0xc00038c2f0} {Name:/dev/nvme0n1p1 MountPoint:/boot/efi FSType:vfat TotalGB:0.9512481689453125 UsedGB:0xc00038c2f8 FreeGB:0xc00038c330}]}
[DEBUG] [2/6] Début collecte PCI devices
[DEBUG] Exec: lspci [-mm]
[DEBUG] [2/6] Détails PCI: [{Slot:00:00.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Root Complex} {Slot:00:00.2 Class:IOMMU Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse IOMMU} {Slot:00:01.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:01.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse GPP Bridge} {Slot:00:01.3 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse GPP Bridge} {Slot:00:02.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:03.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:03.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse GPP Bridge} {Slot:00:04.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:05.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:07.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:07.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]} {Slot:00:08.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:08.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]} {Slot:00:14.0 Class:SMBus Vendor:Advanced Micro Devices, Inc. [AMD] Device:FCH SMBus Controller} {Slot:00:14.3 Class:ISA bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:FCH LPC Bridge} {Slot:00:18.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 0} {Slot:00:18.1 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 1} {Slot:00:18.2 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 2} {Slot:00:18.3 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 3} {Slot:00:18.4 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 4} {Slot:00:18.5 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 5} {Slot:00:18.6 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 6} {Slot:00:18.7 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 7} {Slot:01:00.0 Class:Non-Volatile memory controller Vendor:Micron/Crucial Technology Device:P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)} {Slot:02:00.0 Class:USB controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset USB 3.1 xHCI Compliant Host Controller} {Slot:02:00.1 Class:SATA controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset SATA Controller} {Slot:02:00.2 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Bridge} {Slot:03:00.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:03:01.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:03:04.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:03:08.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:04:00.0 Class:Ethernet controller Vendor:Realtek Semiconductor Co., Ltd. Device:RTL8111/8168/8211/8411 PCI Express Gigabit Ethernet Controller} {Slot:07:00.0 Class:Non-Volatile memory controller Vendor:Micron/Crucial Technology Device:P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)} {Slot:08:00.0 Class:VGA compatible controller Vendor:NVIDIA Corporation Device:GA106 [GeForce RTX 3060 Lite Hash Rate]} {Slot:08:00.1 Class:Audio device Vendor:NVIDIA Corporation Device:GA106 High Definition Audio Controller} {Slot:09:00.0 Class:Non-Essential Instrumentation [1300] Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Function} {Slot:0a:00.0 Class:Non-Essential Instrumentation [1300] Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Reserved SPP} {Slot:0a:00.1 Class:Encryption controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Cryptographic Coprocessor PSPCPP} {Slot:0a:00.3 Class:USB controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse USB 3.0 Host Controller} {Slot:0a:00.4 Class:Audio device Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse HD Audio Controller}]
[DEBUG] [2/6] Début collecte USB devices
[DEBUG] Exec: lsusb []
[DEBUG] [2/6] Détails USB: [{Bus:001 Device:001 VendorID:1d6b ProductID:0002 Name:Linux Foundation 2.0 root hub} {Bus:001 Device:002 VendorID:058f ProductID:6362 Name:Alcor Micro Corp. Flash Card Reader/Writer} {Bus:002 Device:001 VendorID:1d6b ProductID:0003 Name:Linux Foundation 3.0 root hub} {Bus:003 Device:001 VendorID:1d6b ProductID:0002 Name:Linux Foundation 2.0 root hub} {Bus:003 Device:003 VendorID:046d ProductID:c52b Name:Logitech, Inc. Unifying Receiver} {Bus:003 Device:004 VendorID:0bda ProductID:b711 Name:Realtek Semiconductor Corp. RTL8188GU 802.11n WLAN Adapter (After Modeswitch)} {Bus:004 Device:001 VendorID:1d6b ProductID:0003 Name:Linux Foundation 3.0 root hub}]
[DEBUG] [2/6] Début collecte partages réseau
[DEBUG] [2/6] Détails partages réseau: []
[DEBUG] [2/6] Début collecte interfaces réseau
[DEBUG] Exec: ethtool [eno1]
[DEBUG] Exec: ethtool [-i eno1]
[DEBUG] Exec: ethtool [wlxe84e06a6c1fc]
[DEBUG] Exec: ethtool [-i wlxe84e06a6c1fc]
[DEBUG] Exec: iwgetid [wlxe84e06a6c1fc -r]
[DEBUG] Exec: iw [wlxe84e06a6c1fc link]
[DEBUG] [2/6] Détails réseau: {Interfaces:[{Name:eno1 Type:ethernet MAC:18:c0:4d:b5:65:74 IP:10.0.1.109 SpeedMbps:0xc000012a98 Driver:r8169 SSID: WakeOnLAN:false} {Name:wlxe84e06a6c1fc Type:wifi MAC:1e:c1:a5:4c:a0:f5 IP: SpeedMbps:<nil> Driver:rtl8xxxu SSID: WakeOnLAN:false}]}
[DEBUG] [2/6] Début collecte carte mère
[DEBUG] Exec: dmidecode [-t 2]
[DEBUG] Exec: dmidecode [-t 0]
[DEBUG] [2/6] Détails carte mère: {Vendor:Gigabyte Technology Co., Ltd. Model:B450 AORUS ELITE BIOSVendor:American Megatrends International, LLC. BIOSVersion:F65e BIOSDate:09/20/2023}
[DEBUG] [2/6] Début collecte OS
[DEBUG] Exec: uname [-r]
[DEBUG] Exec: uname [-m]
[DEBUG] Exec: systemd-detect-virt []
[DEBUG] Exec: xrandr []
[DEBUG] Exec: xrandr [--current]
[DEBUG] Exec: who [-b]
[DEBUG] [2/6] Détails OS: {Name:Debian GNU/Linux Version:13 (trixie) KernelVersion:6.12.57+deb13-amd64 Architecture:x86_64 SessionType: DisplayServer: ScreenResolution:5560 x 1920 LastBootTime:démarrage système 2026-01-11 09:11 UptimeSeconds:44154.53 BatteryPercentage:<nil> BatteryStatus: BatteryHealth: Hostname:aorus VirtualizationType:kvm-host DesktopEnvironment:GNOME}
[DEBUG] [2/6] Début collecte capteurs
[DEBUG] [2/6] Détails capteurs: {CPUTempC:<nil> DiskTempsC:map[nvme-pci-0100:Composite:33.85 nvme-pci-0700:Composite:31.85] Sensors:[{Chip:nvme-pci-0700 Name:Composite Type:temperature Value:31.85 Unit:°C Alarm:false} {Chip:acpitz-acpi-0 Name:temp1 Type:temperature Value:16.8 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tctl Type:temperature Value:38.25 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tccd1 Type:temperature Value:38 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tccd2 Type:temperature Value:28 Unit:°C Alarm:false} {Chip:nvme-pci-0100 Name:Composite Type:temperature Value:33.85 Unit:°C Alarm:false}]}
[DEBUG] [2/6] Début collecte audio
[DEBUG] Exec: lspci []
[DEBUG] Exec: aplay [-l]
[DEBUG] Exec: arecord [-l]
[DEBUG] Exec: aplay [-L]
[DEBUG] Exec: pactl [info]
[DEBUG] [2/6] Détails audio: {Hardware:{PCIAudioDevices:[08:00.1 Audio device: NVIDIA Corporation GA106 High Definition Audio Controller (rev a1) 0a:00.4 Audio device: Advanced Micro Devices, Inc. [AMD] Starship/Matisse HD Audio Controller] AlsaPlayback:**** Liste des périphériques matériels PLAYBACK ****
carte 0 : NVidia [HDA NVidia], périphérique 3 : HDMI 0 [LG ULTRAWIDE]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 7 : HDMI 1 [K243Y]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 8 : HDMI 2 [HDMI 2]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 9 : HDMI 3 [HDMI 3]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]
Sous-périphériques : 0/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 1 : ALC892 Digital [ALC892 Digital]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
AlsaCapture:**** Liste des périphériques matériels CAPTURE ****
carte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 2 : ALC892 Alt Analog [ALC892 Alt Analog]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
PCMDevices:[null Discard all samples (playback) or generate zero samples (capture) pipewire PipeWire Sound Server default Default ALSA Output (currently PipeWire Media Server) hw:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Direct hardware device without any conversions hw:CARD=NVidia,DEV=7 HDA NVidia, K243Y Direct hardware device without any conversions hw:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Direct hardware device without any conversions hw:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Direct hardware device without any conversions plughw:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Hardware device with all software conversions plughw:CARD=NVidia,DEV=7 HDA NVidia, K243Y Hardware device with all software conversions plughw:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Hardware device with all software conversions plughw:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Hardware device with all software conversions hdmi:CARD=NVidia,DEV=0 HDA NVidia, LG ULTRAWIDE HDMI Audio Output hdmi:CARD=NVidia,DEV=1 HDA NVidia, K243Y HDMI Audio Output hdmi:CARD=NVidia,DEV=2 HDA NVidia, HDMI 2 HDMI Audio Output hdmi:CARD=NVidia,DEV=3 HDA NVidia, HDMI 3 HDMI Audio Output dmix:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Direct sample mixing device dmix:CARD=NVidia,DEV=7 HDA NVidia, K243Y Direct sample mixing device dmix:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Direct sample mixing device dmix:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Direct sample mixing device hw:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Direct hardware device without any conversions hw:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Direct hardware device without any conversions plughw:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Hardware device with all software conversions plughw:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Hardware device with all software conversions sysdefault:CARD=Generic HD-Audio Generic, ALC892 Analog Default Audio Device front:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Front output / input surround21:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 2.1 Surround output to Front and Subwoofer speakers surround40:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 4.0 Surround output to Front and Rear speakers surround41:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 4.1 Surround output to Front, Rear and Subwoofer speakers surround50:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 5.0 Surround output to Front, Center and Rear speakers surround51:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 5.1 Surround output to Front, Center, Rear and Subwoofer speakers surround71:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 7.1 Surround output to Front, Center, Side, Rear and Woofer speakers iec958:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Digital IEC958 (S/PDIF) Digital Audio Output dmix:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Direct sample mixing device dmix:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Direct sample mixing device]} Software:{Backend: ServerName: ServerVersion: DefaultSink:<nil> DefaultSource:<nil> Sinks:[] Sources:[]}}
[DEBUG] Exec: lscpu []
[DEBUG] Exec: lsblk [-a]
[DEBUG] Exec: dmidecode [-t 0,1,2,16,17]
[DEBUG] Matériel collecté : {CPU:{Vendor:AuthenticAMD Model:AMD Ryzen 9 5900X 12-Core Processor Cores:12 Threads:24 BaseFreqGHz:4.951 MaxFreqGHz:4.951 CacheL1KB:64 CacheL2KB:512 CacheL3KB:32768 Flags:[fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local user_shstk clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm debug_swap] Microarchitecture:Zen TDPW:<nil>} RAM:{TotalMB:48096 UsedMB:17314 FreeMB:30782 SharedMB:972 SlotsTotal:10 SlotsUsed:4 MaxCapacityMB:48096 ECC:false Layout:[{Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 } {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE} {Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 } {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE}]} GPU:{Vendor:NVIDIA Model:NVIDIA GeForce RTX 3060 DriverVersion:550.163.01 MemoryDedicatedMB:0xc00038c028 MemorySharedMB:<nil> APISupport:[]} Storage:{Devices:[{Name:/dev/nvme0n1 Type:ssd Interface:nvme CapacityGB:465.7617416381836 Vendor:CT500P2SSD8 Model:CT500P2SSD8 Serial:2138E5D60DD8 SmartHealth:PASSED Temperature:34} {Name:/dev/nvme1n1 Type: Interface:nvme CapacityGB:465.7617416381836 Vendor:CT500P2SSD8 Model:CT500P2SSD8 Serial:2108E4FD258D SmartHealth:PASSED Temperature:32} {Name:/dev/sda Type: Interface:sata CapacityGB:447.13167572021484 Vendor:ATA Model:KINGSTON SUV500480G Serial:50026B768226A365 SmartHealth:PASSED Temperature:25} {Name:/dev/sdb Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:Compact Flash Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sdc Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:SD/MMC Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sdd Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:MS/MS-PRO Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sde Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:xD-Picture Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0}] Partitions:[{Name:/dev/nvme0n1p2 MountPoint:/ FSType:ext4 TotalGB:432.80120849609375 UsedGB:0xc00038c2e8 FreeGB:0xc00038c2f0} {Name:/dev/nvme0n1p1 MountPoint:/boot/efi FSType:vfat TotalGB:0.9512481689453125 UsedGB:0xc00038c2f8 FreeGB:0xc00038c330}]} PCIDevices:[{Slot:00:00.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Root Complex} {Slot:00:00.2 Class:IOMMU Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse IOMMU} {Slot:00:01.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:01.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse GPP Bridge} {Slot:00:01.3 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse GPP Bridge} {Slot:00:02.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:03.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:03.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse GPP Bridge} {Slot:00:04.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:05.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:07.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:07.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]} {Slot:00:08.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:08.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]} {Slot:00:14.0 Class:SMBus Vendor:Advanced Micro Devices, Inc. [AMD] Device:FCH SMBus Controller} {Slot:00:14.3 Class:ISA bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:FCH LPC Bridge} {Slot:00:18.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 0} {Slot:00:18.1 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 1} {Slot:00:18.2 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 2} {Slot:00:18.3 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 3} {Slot:00:18.4 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 4} {Slot:00:18.5 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 5} {Slot:00:18.6 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 6} {Slot:00:18.7 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 7} {Slot:01:00.0 Class:Non-Volatile memory controller Vendor:Micron/Crucial Technology Device:P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)} {Slot:02:00.0 Class:USB controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset USB 3.1 xHCI Compliant Host Controller} {Slot:02:00.1 Class:SATA controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset SATA Controller} {Slot:02:00.2 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Bridge} {Slot:03:00.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:03:01.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:03:04.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:03:08.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:04:00.0 Class:Ethernet controller Vendor:Realtek Semiconductor Co., Ltd. Device:RTL8111/8168/8211/8411 PCI Express Gigabit Ethernet Controller} {Slot:07:00.0 Class:Non-Volatile memory controller Vendor:Micron/Crucial Technology Device:P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)} {Slot:08:00.0 Class:VGA compatible controller Vendor:NVIDIA Corporation Device:GA106 [GeForce RTX 3060 Lite Hash Rate]} {Slot:08:00.1 Class:Audio device Vendor:NVIDIA Corporation Device:GA106 High Definition Audio Controller} {Slot:09:00.0 Class:Non-Essential Instrumentation [1300] Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Function} {Slot:0a:00.0 Class:Non-Essential Instrumentation [1300] Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Reserved SPP} {Slot:0a:00.1 Class:Encryption controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Cryptographic Coprocessor PSPCPP} {Slot:0a:00.3 Class:USB controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse USB 3.0 Host Controller} {Slot:0a:00.4 Class:Audio device Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse HD Audio Controller}] USBDevices:[{Bus:001 Device:001 VendorID:1d6b ProductID:0002 Name:Linux Foundation 2.0 root hub} {Bus:001 Device:002 VendorID:058f ProductID:6362 Name:Alcor Micro Corp. Flash Card Reader/Writer} {Bus:002 Device:001 VendorID:1d6b ProductID:0003 Name:Linux Foundation 3.0 root hub} {Bus:003 Device:001 VendorID:1d6b ProductID:0002 Name:Linux Foundation 2.0 root hub} {Bus:003 Device:003 VendorID:046d ProductID:c52b Name:Logitech, Inc. Unifying Receiver} {Bus:003 Device:004 VendorID:0bda ProductID:b711 Name:Realtek Semiconductor Corp. RTL8188GU 802.11n WLAN Adapter (After Modeswitch)} {Bus:004 Device:001 VendorID:1d6b ProductID:0003 Name:Linux Foundation 3.0 root hub}] NetworkShares:[] Network:{Interfaces:[{Name:eno1 Type:ethernet MAC:18:c0:4d:b5:65:74 IP:10.0.1.109 SpeedMbps:0xc000012a98 Driver:r8169 SSID: WakeOnLAN:false} {Name:wlxe84e06a6c1fc Type:wifi MAC:1e:c1:a5:4c:a0:f5 IP: SpeedMbps:<nil> Driver:rtl8xxxu SSID: WakeOnLAN:false}]} Motherboard:{Vendor:Gigabyte Technology Co., Ltd. Model:B450 AORUS ELITE BIOSVendor:American Megatrends International, LLC. BIOSVersion:F65e BIOSDate:09/20/2023} OS:{Name:Debian GNU/Linux Version:13 (trixie) KernelVersion:6.12.57+deb13-amd64 Architecture:x86_64 SessionType: DisplayServer: ScreenResolution:5560 x 1920 LastBootTime:démarrage système 2026-01-11 09:11 UptimeSeconds:44154.53 BatteryPercentage:<nil> BatteryStatus: BatteryHealth: Hostname:aorus VirtualizationType:kvm-host DesktopEnvironment:GNOME} Sensors:{CPUTempC:<nil> DiskTempsC:map[nvme-pci-0100:Composite:33.85 nvme-pci-0700:Composite:31.85] Sensors:[{Chip:nvme-pci-0700 Name:Composite Type:temperature Value:31.85 Unit:°C Alarm:false} {Chip:acpitz-acpi-0 Name:temp1 Type:temperature Value:16.8 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tctl Type:temperature Value:38.25 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tccd1 Type:temperature Value:38 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tccd2 Type:temperature Value:28 Unit:°C Alarm:false} {Chip:nvme-pci-0100 Name:Composite Type:temperature Value:33.85 Unit:°C Alarm:false}]} Audio:{Hardware:{PCIAudioDevices:[08:00.1 Audio device: NVIDIA Corporation GA106 High Definition Audio Controller (rev a1) 0a:00.4 Audio device: Advanced Micro Devices, Inc. [AMD] Starship/Matisse HD Audio Controller] AlsaPlayback:**** Liste des périphériques matériels PLAYBACK ****
carte 0 : NVidia [HDA NVidia], périphérique 3 : HDMI 0 [LG ULTRAWIDE]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 7 : HDMI 1 [K243Y]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 8 : HDMI 2 [HDMI 2]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 9 : HDMI 3 [HDMI 3]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]
Sous-périphériques : 0/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 1 : ALC892 Digital [ALC892 Digital]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
AlsaCapture:**** Liste des périphériques matériels CAPTURE ****
carte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 2 : ALC892 Alt Analog [ALC892 Alt Analog]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
PCMDevices:[null Discard all samples (playback) or generate zero samples (capture) pipewire PipeWire Sound Server default Default ALSA Output (currently PipeWire Media Server) hw:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Direct hardware device without any conversions hw:CARD=NVidia,DEV=7 HDA NVidia, K243Y Direct hardware device without any conversions hw:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Direct hardware device without any conversions hw:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Direct hardware device without any conversions plughw:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Hardware device with all software conversions plughw:CARD=NVidia,DEV=7 HDA NVidia, K243Y Hardware device with all software conversions plughw:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Hardware device with all software conversions plughw:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Hardware device with all software conversions hdmi:CARD=NVidia,DEV=0 HDA NVidia, LG ULTRAWIDE HDMI Audio Output hdmi:CARD=NVidia,DEV=1 HDA NVidia, K243Y HDMI Audio Output hdmi:CARD=NVidia,DEV=2 HDA NVidia, HDMI 2 HDMI Audio Output hdmi:CARD=NVidia,DEV=3 HDA NVidia, HDMI 3 HDMI Audio Output dmix:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Direct sample mixing device dmix:CARD=NVidia,DEV=7 HDA NVidia, K243Y Direct sample mixing device dmix:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Direct sample mixing device dmix:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Direct sample mixing device hw:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Direct hardware device without any conversions hw:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Direct hardware device without any conversions plughw:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Hardware device with all software conversions plughw:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Hardware device with all software conversions sysdefault:CARD=Generic HD-Audio Generic, ALC892 Analog Default Audio Device front:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Front output / input surround21:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 2.1 Surround output to Front and Subwoofer speakers surround40:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 4.0 Surround output to Front and Rear speakers surround41:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 4.1 Surround output to Front, Rear and Subwoofer speakers surround50:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 5.0 Surround output to Front, Center and Rear speakers surround51:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 5.1 Surround output to Front, Center, Rear and Subwoofer speakers surround71:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 7.1 Surround output to Front, Center, Side, Rear and Woofer speakers iec958:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Digital IEC958 (S/PDIF) Digital Audio Output dmix:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Direct sample mixing device dmix:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Direct sample mixing device]} Software:{Backend: ServerName: ServerVersion: DefaultSink:<nil> DefaultSource:<nil> Sinks:[] Sources:[]}} RawInfo:map[dmidecode:# dmidecode 3.6
Getting SMBIOS data from sysfs.
SMBIOS 3.3.0 present.
Handle 0x0000, DMI type 0, 26 bytes
BIOS Information
Vendor: American Megatrends International, LLC.
Version: F65e
Release Date: 09/20/2023
Address: 0xF0000
Runtime Size: 64 kB
ROM Size: 16 MB
Characteristics:
PCI is supported
BIOS is upgradeable
BIOS shadowing is allowed
Boot from CD is supported
Selectable boot is supported
BIOS ROM is socketed
EDD is supported
Japanese floppy for NEC 9800 1.2 MB is supported (int 13h)
Japanese floppy for Toshiba 1.2 MB is supported (int 13h)
5.25"/360 kB floppy services are supported (int 13h)
5.25"/1.2 MB floppy services are supported (int 13h)
3.5"/720 kB floppy services are supported (int 13h)
3.5"/2.88 MB floppy services are supported (int 13h)
Print screen service is supported (int 5h)
Serial services are supported (int 14h)
Printer services are supported (int 17h)
CGA/mono video services are supported (int 10h)
USB legacy is supported
BIOS boot specification is supported
Targeted content distribution is supported
UEFI is supported
BIOS Revision: 5.17
Handle 0x0001, DMI type 1, 27 bytes
System Information
Manufacturer: Gigabyte Technology Co., Ltd.
Product Name: B450 AORUS ELITE
Version: Default string
Serial Number: Default string
UUID: 03c00218-044d-05b5-6506-740700080009
Wake-up Type: Power Switch
SKU Number: Default string
Family: B450 MB
Handle 0x0002, DMI type 2, 15 bytes
Base Board Information
Manufacturer: Gigabyte Technology Co., Ltd.
Product Name: B450 AORUS ELITE
Version: Default string
Serial Number: Default string
Asset Tag: Default string
Features:
Board is a hosting board
Board is replaceable
Location In Chassis: Default string
Chassis Handle: 0x0003
Type: Motherboard
Contained Object Handles: 0
Handle 0x000B, DMI type 16, 23 bytes
Physical Memory Array
Location: System Board Or Motherboard
Use: System Memory
Error Correction Type: None
Maximum Capacity: 128 GB
Error Information Handle: 0x000A
Number Of Devices: 4
Handle 0x0013, DMI type 17, 92 bytes
Memory Device
Array Handle: 0x000B
Error Information Handle: 0x0012
Total Width: 64 bits
Data Width: 64 bits
Size: 16 GB
Form Factor: DIMM
Set: None
Locator: DIMM 0
Bank Locator: P0 CHANNEL A
Type: DDR4
Type Detail: Synchronous Unbuffered (Unregistered)
Speed: 3200 MT/s
Manufacturer: Unknown
Serial Number: 00000000
Asset Tag: Not Specified
Part Number: CMW32GX4M2E3200C16
Rank: 2
Configured Memory Speed: 3200 MT/s
Minimum Voltage: Unknown
Maximum Voltage: Unknown
Configured Voltage: 1.2 V
Memory Technology: DRAM
Memory Operating Mode Capability: Volatile memory
Firmware Version: Unknown
Module Manufacturer ID: Bank 3, Hex 0x9E
Module Product ID: Unknown
Memory Subsystem Controller Manufacturer ID: Unknown
Memory Subsystem Controller Product ID: Unknown
Non-Volatile Size: None
Volatile Size: 16 GB
Cache Size: None
Logical Size: None
Handle 0x0016, DMI type 17, 92 bytes
Memory Device
Array Handle: 0x000B
Error Information Handle: 0x0015
Total Width: 64 bits
Data Width: 64 bits
Size: 8 GB
Form Factor: DIMM
Set: None
Locator: DIMM 1
Bank Locator: P0 CHANNEL A
Type: DDR4
Type Detail: Synchronous Unbuffered (Unregistered)
Speed: 3200 MT/s
Manufacturer: Unknown
Serial Number: E3C4408B
Asset Tag: Not Specified
Part Number: BL8G32C16U4BL.M8FE
Rank: 1
Configured Memory Speed: 3200 MT/s
Minimum Voltage: 1.2 V
Maximum Voltage: 1.2 V
Configured Voltage: 1.2 V
Memory Technology: DRAM
Memory Operating Mode Capability: Volatile memory
Firmware Version: Unknown
Module Manufacturer ID: Bank 6, Hex 0x9B
Module Product ID: Unknown
Memory Subsystem Controller Manufacturer ID: Unknown
Memory Subsystem Controller Product ID: Unknown
Non-Volatile Size: None
Volatile Size: 8 GB
Cache Size: None
Logical Size: None
Handle 0x0019, DMI type 17, 92 bytes
Memory Device
Array Handle: 0x000B
Error Information Handle: 0x0018
Total Width: 64 bits
Data Width: 64 bits
Size: 16 GB
Form Factor: DIMM
Set: None
Locator: DIMM 0
Bank Locator: P0 CHANNEL B
Type: DDR4
Type Detail: Synchronous Unbuffered (Unregistered)
Speed: 3200 MT/s
Manufacturer: Unknown
Serial Number: 00000000
Asset Tag: Not Specified
Part Number: CMW32GX4M2E3200C16
Rank: 2
Configured Memory Speed: 3200 MT/s
Minimum Voltage: Unknown
Maximum Voltage: Unknown
Configured Voltage: 1.2 V
Memory Technology: DRAM
Memory Operating Mode Capability: Volatile memory
Firmware Version: Unknown
Module Manufacturer ID: Bank 3, Hex 0x9E
Module Product ID: Unknown
Memory Subsystem Controller Manufacturer ID: Unknown
Memory Subsystem Controller Product ID: Unknown
Non-Volatile Size: None
Volatile Size: 16 GB
Cache Size: None
Logical Size: None
Handle 0x001C, DMI type 17, 92 bytes
Memory Device
Array Handle: 0x000B
Error Information Handle: 0x001B
Total Width: 64 bits
Data Width: 64 bits
Size: 8 GB
Form Factor: DIMM
Set: None
Locator: DIMM 1
Bank Locator: P0 CHANNEL B
Type: DDR4
Type Detail: Synchronous Unbuffered (Unregistered)
Speed: 3200 MT/s
Manufacturer: Unknown
Serial Number: E3C44087
Asset Tag: Not Specified
Part Number: BL8G32C16U4BL.M8FE
Rank: 1
Configured Memory Speed: 3200 MT/s
Minimum Voltage: 1.2 V
Maximum Voltage: 1.2 V
Configured Voltage: 1.2 V
Memory Technology: DRAM
Memory Operating Mode Capability: Volatile memory
Firmware Version: Unknown
Module Manufacturer ID: Bank 6, Hex 0x9B
Module Product ID: Unknown
Memory Subsystem Controller Manufacturer ID: Unknown
Memory Subsystem Controller Product ID: Unknown
Non-Volatile Size: None
Volatile Size: 8 GB
Cache Size: None
Logical Size: None
lsblk:NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS
loop0 7:0 0 118,5M 1 loop /snap/iptvnator/92
loop1 7:1 0 48,1M 1 loop /snap/snapd/25935
loop2 7:2 0 50,9M 1 loop /snap/snapd/25577
loop3 7:3 0 4K 1 loop /snap/bare/5
loop4 7:4 0 91,7M 1 loop /snap/gtk-common-themes/1535
loop5 7:5 0 55,5M 1 loop /snap/core18/2976
loop6 7:6 0 164,8M 1 loop /snap/gnome-3-28-1804/198
loop7 7:7 0 0B 0 loop
sda 8:0 0 447,1G 0 disk
└─sda1 8:1 0 447,1G 0 part
sdb 8:16 1 0B 0 disk
sdc 8:32 1 0B 0 disk
sdd 8:48 1 0B 0 disk
sde 8:64 1 0B 0 disk
nvme0n1 259:0 0 465,8G 0 disk
├─nvme0n1p1 259:1 0 976M 0 part /boot/efi
├─nvme0n1p2 259:2 0 440,8G 0 part /
└─nvme0n1p3 259:3 0 24G 0 part [SWAP]
nvme1n1 259:4 0 465,8G 0 disk
├─nvme1n1p1 259:5 0 50M 0 part
├─nvme1n1p2 259:6 0 464,3G 0 part
├─nvme1n1p3 259:7 0 808M 0 part
├─nvme1n1p4 259:8 0 100M 0 part
└─nvme1n1p5 259:9 0 522M 0 part
lscpu:Architecture : x86_64
Mode(s) opératoire(s) des processeurs : 32-bit, 64-bit
Tailles des adresses: 48 bits physical, 48 bits virtual
Boutisme : Little Endian
Processeur(s) : 24
Liste de processeur(s) en ligne : 0-23
Identifiant constructeur : AuthenticAMD
Nom de modèle : AMD Ryzen 9 5900X 12-Core Processor
Famille de processeur : 25
Modèle : 33
Thread(s) par cœur : 2
Cœur(s) par socket : 12
Socket(s) : 1
Révision : 2
Accroissement de fréquence : activé
multiplication des MHz du/des CPU(s) : 75%
Vitesse maximale du processeur en MHz : 4951,0000
Vitesse minimale du processeur en MHz : 550,0000
BogoMIPS : 7399,98
Drapeaux : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local user_shstk clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm debug_swap
Virtualisation : AMD-V
Cache L1d : 384 KiB (12 instances)
Cache L1i : 384 KiB (12 instances)
Cache L2 : 6 MiB (12 instances)
Cache L3 : 64 MiB (2 instances)
Nœud(s) NUMA : 1
Nœud NUMA 0 de processeur(s) : 0-23
Vulnérabilité Gather data sampling : Not affected
Vulnérabilité Indirect target selection : Not affected
Vulnérabilité Itlb multihit : Not affected
Vulnérabilité L1tf : Not affected
Vulnérabilité Mds : Not affected
Vulnérabilité Meltdown : Not affected
Vulnérabilité Mmio stale data : Not affected
Vulnérabilité Reg file data sampling : Not affected
Vulnérabilité Retbleed : Not affected
Vulnérabilité Spec rstack overflow : Mitigation; Safe RET
Vulnérabilité Spec store bypass : Mitigation; Speculative Store Bypass disabled via prctl
Vulnérabilité Spectre v1 : Mitigation; usercopy/swapgs barriers and __user pointer sanitization
Vulnérabilité Spectre v2 : Mitigation; Retpolines; IBPB conditional; IBRS_FW; STIBP always-on; RSB filling; PBRSB-eIBRS Not affected; BHI Not affected
Vulnérabilité Srbds : Not affected
Vulnérabilité Tsa : Vulnerable: Clear CPU buffers attempted, no microcode
Vulnérabilité Tsx async abort : Not affected
Vulnérabilité Vmscape : Mitigation; IBPB before exit to userspace
]}
[DEBUG] [3/6] Benchmark CPU démarré
[DEBUG] Exec: sysbench [cpu --threads=1 --time=10 run]
[DEBUG] Exec: nproc []
[DEBUG] Exec: sysbench [cpu --threads=24 --time=10 run]
[DEBUG] [3/6] Résultat CPU: {EventsPerSec:37361.530000000006 EventsPerSecSingle:5610.96 EventsPerSecMulti:69112.1 DurationSec:20.000500000000002 Score:37361.530000000006 ScoreSingle:5610.96 ScoreMulti:69112.1}
[DEBUG] [3/6] Benchmark mémoire démarré
[DEBUG] Exec: sysbench [memory --memory-block-size=1K --memory-total-size=1G run]
[DEBUG] [3/6] Résultat mémoire: {Throughput:8910.25 Score:8910.25}
[DEBUG] [3/6] Benchmark disque démarré
[DEBUG] [3/6] Bench disque cible : /var/tmp/bench-client (mount=/ fstype=ext4 source=/dev/nvme0n1p2)
[DEBUG] Exec: fio [--name=bench --ioengine=libaio --rw=randrw --bs=4k --direct=1 --size=500M --numjobs=1 --runtime=30 --time_based --output-format=json --filename=/var/tmp/bench-client/bench-1768163286887522676.fio]
[DEBUG] [3/6] Résultat disque: {ReadMBs:29.880859375 WriteMBs:29.8876953125 IOPSRead:7649.745008 IOPSWrite:7651.344955 LatencyMs:0.107432584462 Score:29.88427734375}
[DEBUG] [3/6] Benchmark réseau démarré
[DEBUG] Exec: iperf3 [-c 10.0.0.50 -p 5201 -J -t 10]
[DEBUG] Exec: ping [-c 1 -W 1 10.0.0.50]
[DEBUG] [3/6] Résultat réseau: {Upload:942.1359240852237 Download:938.9118888182643 PingMs:0.362 JitterMs:<nil> PacketLossPct:<nil> Score:940.523906451744}
[DEBUG] Résultats des benchmarks : {CPU:{EventsPerSec:37361.530000000006 EventsPerSecSingle:5610.96 EventsPerSecMulti:69112.1 DurationSec:20.000500000000002 Score:37361.530000000006 ScoreSingle:5610.96 ScoreMulti:69112.1} Memory:{Throughput:8910.25 Score:8910.25} Disk:{ReadMBs:29.880859375 WriteMBs:29.8876953125 IOPSRead:7649.745008 IOPSWrite:7651.344955 LatencyMs:0.107432584462 Score:29.88427734375} Network:{Upload:942.1359240852237 Download:938.9118888182643 PingMs:0.362 JitterMs:<nil> PacketLossPct:<nil> Score:940.523906451744} GPU:{GLMark2Score:<nil> Score:<nil>} GlobalScore:0}
[DEBUG] Poids benchmarks : map[cpu:0.4 disk:0.2 gpu:0.1 memory:0.2 network:0.1]
[DEBUG] Scores normalisés : cpu=1868.08 mem=89.10 disk=2.99 net=94.05
[DEBUG] Score global calculé : 77505.40
[DEBUG] Payload JSON (49208 octets) : {
"device_identifier": "aorus",
"bench_script_version": "1.6.6",
"bench_client_version": "1.0.1",
"hardware": {
"cpu": {
"vendor": "AuthenticAMD",
"model": "AMD Ryzen 9 5900X 12-Core Processor",
"cores": 12,
"threads": 24,
"base_freq_ghz": 4.951,
"max_freq_ghz": 4.951,
"cache_l1_kb": 64,
"cache_l2_kb": 512,
"cache_l3_kb": 32768,
"flags": [
"fpu",
"vme",
"de",
"pse",
"tsc",
"msr",
"pae",
"mce",
"cx8",
"apic",
"sep",
"mtrr",
"pge",
"mca",
"cmov",
"pat",
"pse36",
"clflush",
"mmx",
"fxsr",
"sse",
"sse2",
"ht",
"syscall",
"nx",
"mmxext",
"fxsr_opt",
"pdpe1gb",
"rdtscp",
"lm",
"constant_tsc",
"rep_good",
"nopl",
"xtopology",
"nonstop_tsc",
"cpuid",
"extd_apicid",
"aperfmperf",
"rapl",
"pni",
"pclmulqdq",
"monitor",
"ssse3",
"fma",
"cx16",
"sse4_1",
"sse4_2",
"x2apic",
"movbe",
"popcnt",
"aes",
"xsave",
"avx",
"f16c",
"rdrand",
"lahf_lm",
"cmp_legacy",
"svm",
"extapic",
"cr8_legacy",
"abm",
"sse4a",
"misalignsse",
"3dnowprefetch",
"osvw",
"ibs",
"skinit",
"wdt",
"tce",
"topoext",
"perfctr_core",
"perfctr_nb",
"bpext",
"perfctr_llc",
"mwaitx",
"cpb",
"cat_l3",
"cdp_l3",
"hw_pstate",
"ssbd",
"mba",
"ibrs",
"ibpb",
"stibp",
"vmmcall",
"fsgsbase",
"bmi1",
"avx2",
"smep",
"bmi2",
"erms",
"invpcid",
"cqm",
"rdt_a",
"rdseed",
"adx",
"smap",
"clflushopt",
"clwb",
"sha_ni",
"xsaveopt",
"xsavec",
"xgetbv1",
"xsaves",
"cqm_llc",
"cqm_occup_llc",
"cqm_mbm_total",
"cqm_mbm_local",
"user_shstk",
"clzero",
"irperf",
"xsaveerptr",
"rdpru",
"wbnoinvd",
"arat",
"npt",
"lbrv",
"svm_lock",
"nrip_save",
"tsc_scale",
"vmcb_clean",
"flushbyasid",
"decodeassists",
"pausefilter",
"pfthreshold",
"avic",
"v_vmsave_vmload",
"vgif",
"v_spec_ctrl",
"umip",
"pku",
"ospke",
"vaes",
"vpclmulqdq",
"rdpid",
"overflow_recov",
"succor",
"smca",
"fsrm",
"debug_swap"
],
"microarchitecture": "Zen",
"tdp_w": null
},
"ram": {
"total_mb": 48096,
"used_mb": 17314,
"free_mb": 30782,
"shared_mb": 972,
"slots_total": 10,
"slots_used": 4,
"max_capacity_mb": 48096,
"ecc": false,
"layout": [
{
"slot": "DIMM 0",
"size_mb": 16384,
"type": "DDR4",
"speed_mhz": 3200,
"configured_speed_mhz": 3200,
"form_factor": "DIMM",
"type_detail": "Synchronous Unbuffered (Unregistered)",
"rank": "2",
"manufacturer": "Unknown",
"part_number": "CMW32GX4M2E3200C16 "
},
{
"slot": "DIMM 1",
"size_mb": 8192,
"type": "DDR4",
"speed_mhz": 3200,
"configured_speed_mhz": 3200,
"form_factor": "DIMM",
"type_detail": "Synchronous Unbuffered (Unregistered)",
"rank": "1",
"manufacturer": "Unknown",
"part_number": "BL8G32C16U4BL.M8FE"
},
{
"slot": "DIMM 0",
"size_mb": 16384,
"type": "DDR4",
"speed_mhz": 3200,
"configured_speed_mhz": 3200,
"form_factor": "DIMM",
"type_detail": "Synchronous Unbuffered (Unregistered)",
"rank": "2",
"manufacturer": "Unknown",
"part_number": "CMW32GX4M2E3200C16 "
},
{
"slot": "DIMM 1",
"size_mb": 8192,
"type": "DDR4",
"speed_mhz": 3200,
"configured_speed_mhz": 3200,
"form_factor": "DIMM",
"type_detail": "Synchronous Unbuffered (Unregistered)",
"rank": "1",
"manufacturer": "Unknown",
"part_number": "BL8G32C16U4BL.M8FE"
}
]
},
"gpu": {
"vendor": "NVIDIA",
"model": "NVIDIA GeForce RTX 3060",
"driver_version": "550.163.01",
"memory_dedicated_mb": 12288,
"memory_shared_mb": null,
"api_support": null
},
"storage": {
"devices": [
{
"name": "/dev/nvme0n1",
"type": "ssd",
"interface": "nvme",
"capacity_gb": 465.7617416381836,
"vendor": "CT500P2SSD8",
"model": "CT500P2SSD8",
"serial": "2138E5D60DD8",
"smart_health": "PASSED",
"temperature_c": 34
},
{
"name": "/dev/nvme1n1",
"type": "",
"interface": "nvme",
"capacity_gb": 465.7617416381836,
"vendor": "CT500P2SSD8",
"model": "CT500P2SSD8",
"serial": "2108E4FD258D",
"smart_health": "PASSED",
"temperature_c": 32
},
{
"name": "/dev/sda",
"type": "",
"interface": "sata",
"capacity_gb": 447.13167572021484,
"vendor": "ATA ",
"model": "KINGSTON SUV500480G",
"serial": "50026B768226A365",
"smart_health": "PASSED",
"temperature_c": 25
},
{
"name": "/dev/sdb",
"type": "",
"interface": "usb",
"capacity_gb": 0,
"vendor": "Generic-",
"model": "Compact Flash",
"serial": "058F63626479",
"smart_health": "UNAVAILABLE",
"temperature_c": 0
},
{
"name": "/dev/sdc",
"type": "",
"interface": "usb",
"capacity_gb": 0,
"vendor": "Generic-",
"model": "SD/MMC",
"serial": "058F63626479",
"smart_health": "UNAVAILABLE",
"temperature_c": 0
},
{
"name": "/dev/sdd",
"type": "",
"interface": "usb",
"capacity_gb": 0,
"vendor": "Generic-",
"model": "MS/MS-PRO",
"serial": "058F63626479",
"smart_health": "UNAVAILABLE",
"temperature_c": 0
},
{
"name": "/dev/sde",
"type": "",
"interface": "usb",
"capacity_gb": 0,
"vendor": "Generic-",
"model": "xD-Picture",
"serial": "058F63626479",
"smart_health": "UNAVAILABLE",
"temperature_c": 0
}
],
"partitions": [
{
"name": "/dev/nvme0n1p2",
"mount_point": "/",
"fs_type": "ext4",
"total_gb": 432.80120849609375,
"used_gb": 349.44409561157227,
"free_gb": 61.301937103271484
},
{
"name": "/dev/nvme0n1p1",
"mount_point": "/boot/efi",
"fs_type": "vfat",
"total_gb": 0.9512481689453125,
"used_gb": 0.008571624755859375,
"free_gb": 0.9426765441894531
}
]
},
"pci_devices": [
{
"slot": "00:00.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse Root Complex"
},
{
"slot": "00:00.2",
"class": "IOMMU",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse IOMMU"
},
{
"slot": "00:01.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:01.1",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse GPP Bridge"
},
{
"slot": "00:01.3",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse GPP Bridge"
},
{
"slot": "00:02.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:03.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:03.1",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse GPP Bridge"
},
{
"slot": "00:04.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:05.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:07.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:07.1",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]"
},
{
"slot": "00:08.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:08.1",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]"
},
{
"slot": "00:14.0",
"class": "SMBus",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "FCH SMBus Controller"
},
{
"slot": "00:14.3",
"class": "ISA bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "FCH LPC Bridge"
},
{
"slot": "00:18.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 0"
},
{
"slot": "00:18.1",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 1"
},
{
"slot": "00:18.2",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 2"
},
{
"slot": "00:18.3",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 3"
},
{
"slot": "00:18.4",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 4"
},
{
"slot": "00:18.5",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 5"
},
{
"slot": "00:18.6",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 6"
},
{
"slot": "00:18.7",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 7"
},
{
"slot": "01:00.0",
"class": "Non-Volatile memory controller",
"vendor": "Micron/Crucial Technology",
"device": "P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)"
},
{
"slot": "02:00.0",
"class": "USB controller",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset USB 3.1 xHCI Compliant Host Controller"
},
{
"slot": "02:00.1",
"class": "SATA controller",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset SATA Controller"
},
{
"slot": "02:00.2",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset PCIe Bridge"
},
{
"slot": "03:00.0",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset PCIe Port"
},
{
"slot": "03:01.0",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset PCIe Port"
},
{
"slot": "03:04.0",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset PCIe Port"
},
{
"slot": "03:08.0",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset PCIe Port"
},
{
"slot": "04:00.0",
"class": "Ethernet controller",
"vendor": "Realtek Semiconductor Co., Ltd.",
"device": "RTL8111/8168/8211/8411 PCI Express Gigabit Ethernet Controller"
},
{
"slot": "07:00.0",
"class": "Non-Volatile memory controller",
"vendor": "Micron/Crucial Technology",
"device": "P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)"
},
{
"slot": "08:00.0",
"class": "VGA compatible controller",
"vendor": "NVIDIA Corporation",
"device": "GA106 [GeForce RTX 3060 Lite Hash Rate]"
},
{
"slot": "08:00.1",
"class": "Audio device",
"vendor": "NVIDIA Corporation",
"device": "GA106 High Definition Audio Controller"
},
{
"slot": "09:00.0",
"class": "Non-Essential Instrumentation [1300]",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Function"
},
{
"slot": "0a:00.0",
"class": "Non-Essential Instrumentation [1300]",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse Reserved SPP"
},
{
"slot": "0a:00.1",
"class": "Encryption controller",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse Cryptographic Coprocessor PSPCPP"
},
{
"slot": "0a:00.3",
"class": "USB controller",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse USB 3.0 Host Controller"
},
{
"slot": "0a:00.4",
"class": "Audio device",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse HD Audio Controller"
}
],
"usb_devices": [
{
"bus": "001",
"device": "001",
"vendor_id": "1d6b",
"product_id": "0002",
"name": "Linux Foundation 2.0 root hub"
},
{
"bus": "001",
"device": "002",
"vendor_id": "058f",
"product_id": "6362",
"name": "Alcor Micro Corp. Flash Card Reader/Writer"
},
{
"bus": "002",
"device": "001",
"vendor_id": "1d6b",
"product_id": "0003",
"name": "Linux Foundation 3.0 root hub"
},
{
"bus": "003",
"device": "001",
"vendor_id": "1d6b",
"product_id": "0002",
"name": "Linux Foundation 2.0 root hub"
},
{
"bus": "003",
"device": "003",
"vendor_id": "046d",
"product_id": "c52b",
"name": "Logitech, Inc. Unifying Receiver"
},
{
"bus": "003",
"device": "004",
"vendor_id": "0bda",
"product_id": "b711",
"name": "Realtek Semiconductor Corp. RTL8188GU 802.11n WLAN Adapter (After Modeswitch)"
},
{
"bus": "004",
"device": "001",
"vendor_id": "1d6b",
"product_id": "0003",
"name": "Linux Foundation 3.0 root hub"
}
],
"network_shares": [],
"network": {
"interfaces": [
{
"name": "eno1",
"type": "ethernet",
"mac": "18:c0:4d:b5:65:74",
"ip": "10.0.1.109",
"speed_mbps": 1000,
"driver": "r8169",
"ssid": "",
"wake_on_lan": false
},
{
"name": "wlxe84e06a6c1fc",
"type": "wifi",
"mac": "1e:c1:a5:4c:a0:f5",
"ip": "",
"speed_mbps": null,
"driver": "rtl8xxxu",
"ssid": "",
"wake_on_lan": false
}
]
},
"motherboard": {
"vendor": "Gigabyte Technology Co., Ltd.",
"model": "B450 AORUS ELITE",
"bios_vendor": "American Megatrends International, LLC.",
"bios_version": "F65e",
"bios_date": "09/20/2023"
},
"os": {
"name": "Debian GNU/Linux",
"version": "13 (trixie)",
"kernel_version": "6.12.57+deb13-amd64",
"architecture": "x86_64",
"session_type": "",
"display_server": "",
"screen_resolution": "5560 x 1920",
"last_boot_time": "démarrage système 2026-01-11 09:11",
"uptime_seconds": 44154.53,
"battery_percentage": null,
"battery_status": "",
"battery_health": "",
"hostname": "aorus",
"virtualization_type": "kvm-host",
"desktop_environment": "GNOME"
},
"sensors": {
"cpu_temp_c": null,
"disk_temps_c": {
"nvme-pci-0100:Composite": 33.85,
"nvme-pci-0700:Composite": 31.85
},
"sensors": [
{
"chip": "nvme-pci-0700",
"name": "Composite",
"type": "temperature",
"value": 31.85,
"unit": "°C",
"alarm": false
},
{
"chip": "acpitz-acpi-0",
"name": "temp1",
"type": "temperature",
"value": 16.8,
"unit": "°C",
"alarm": false
},
{
"chip": "k10temp-pci-00c3",
"name": "Tctl",
"type": "temperature",
"value": 38.25,
"unit": "°C",
"alarm": false
},
{
"chip": "k10temp-pci-00c3",
"name": "Tccd1",
"type": "temperature",
"value": 38,
"unit": "°C",
"alarm": false
},
{
"chip": "k10temp-pci-00c3",
"name": "Tccd2",
"type": "temperature",
"value": 28,
"unit": "°C",
"alarm": false
},
{
"chip": "nvme-pci-0100",
"name": "Composite",
"type": "temperature",
"value": 33.85,
"unit": "°C",
"alarm": false
}
]
},
"audio": {
"hardware": {
"pci_audio_devices": [
"08:00.1 Audio device: NVIDIA Corporation GA106 High Definition Audio Controller (rev a1)",
"0a:00.4 Audio device: Advanced Micro Devices, Inc. [AMD] Starship/Matisse HD Audio Controller"
],
"alsa_playback": "**** Liste des périphériques matériels PLAYBACK ****\ncarte 0 : NVidia [HDA NVidia], périphérique 3 : HDMI 0 [LG ULTRAWIDE]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\ncarte 0 : NVidia [HDA NVidia], périphérique 7 : HDMI 1 [K243Y]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\ncarte 0 : NVidia [HDA NVidia], périphérique 8 : HDMI 2 [HDMI 2]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\ncarte 0 : NVidia [HDA NVidia], périphérique 9 : HDMI 3 [HDMI 3]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\ncarte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]\n Sous-périphériques : 0/1\n Sous-périphérique #0 : subdevice #0\ncarte 1 : Generic [HD-Audio Generic], périphérique 1 : ALC892 Digital [ALC892 Digital]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\n",
"alsa_capture": "**** Liste des périphériques matériels CAPTURE ****\ncarte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\ncarte 1 : Generic [HD-Audio Generic], périphérique 2 : ALC892 Alt Analog [ALC892 Alt Analog]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\n",
"pcm_devices": [
"null",
"Discard all samples (playback) or generate zero samples (capture)",
"pipewire",
"PipeWire Sound Server",
"default",
"Default ALSA Output (currently PipeWire Media Server)",
"hw:CARD=NVidia,DEV=3",
"HDA NVidia, LG ULTRAWIDE",
"Direct hardware device without any conversions",
"hw:CARD=NVidia,DEV=7",
"HDA NVidia, K243Y",
"Direct hardware device without any conversions",
"hw:CARD=NVidia,DEV=8",
"HDA NVidia, HDMI 2",
"Direct hardware device without any conversions",
"hw:CARD=NVidia,DEV=9",
"HDA NVidia, HDMI 3",
"Direct hardware device without any conversions",
"plughw:CARD=NVidia,DEV=3",
"HDA NVidia, LG ULTRAWIDE",
"Hardware device with all software conversions",
"plughw:CARD=NVidia,DEV=7",
"HDA NVidia, K243Y",
"Hardware device with all software conversions",
"plughw:CARD=NVidia,DEV=8",
"HDA NVidia, HDMI 2",
"Hardware device with all software conversions",
"plughw:CARD=NVidia,DEV=9",
"HDA NVidia, HDMI 3",
"Hardware device with all software conversions",
"hdmi:CARD=NVidia,DEV=0",
"HDA NVidia, LG ULTRAWIDE",
"HDMI Audio Output",
"hdmi:CARD=NVidia,DEV=1",
"HDA NVidia, K243Y",
"HDMI Audio Output",
"hdmi:CARD=NVidia,DEV=2",
"HDA NVidia, HDMI 2",
"HDMI Audio Output",
"hdmi:CARD=NVidia,DEV=3",
"HDA NVidia, HDMI 3",
"HDMI Audio Output",
"dmix:CARD=NVidia,DEV=3",
"HDA NVidia, LG ULTRAWIDE",
"Direct sample mixing device",
"dmix:CARD=NVidia,DEV=7",
"HDA NVidia, K243Y",
"Direct sample mixing device",
"dmix:CARD=NVidia,DEV=8",
"HDA NVidia, HDMI 2",
"Direct sample mixing device",
"dmix:CARD=NVidia,DEV=9",
"HDA NVidia, HDMI 3",
"Direct sample mixing device",
"hw:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"Direct hardware device without any conversions",
"hw:CARD=Generic,DEV=1",
"HD-Audio Generic, ALC892 Digital",
"Direct hardware device without any conversions",
"plughw:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"Hardware device with all software conversions",
"plughw:CARD=Generic,DEV=1",
"HD-Audio Generic, ALC892 Digital",
"Hardware device with all software conversions",
"sysdefault:CARD=Generic",
"HD-Audio Generic, ALC892 Analog",
"Default Audio Device",
"front:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"Front output / input",
"surround21:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"2.1 Surround output to Front and Subwoofer speakers",
"surround40:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"4.0 Surround output to Front and Rear speakers",
"surround41:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"4.1 Surround output to Front, Rear and Subwoofer speakers",
"surround50:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"5.0 Surround output to Front, Center and Rear speakers",
"surround51:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"5.1 Surround output to Front, Center, Rear and Subwoofer speakers",
"surround71:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"7.1 Surround output to Front, Center, Side, Rear and Woofer speakers",
"iec958:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Digital",
"IEC958 (S/PDIF) Digital Audio Output",
"dmix:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"Direct sample mixing device",
"dmix:CARD=Generic,DEV=1",
"HD-Audio Generic, ALC892 Digital",
"Direct sample mixing device"
]
},
"software": {
"backend": "",
"server_name": "",
"server_version": "",
"default_sink": null,
"default_source": null,
"sinks": null,
"sources": null
}
},
"raw_info": {
"debug": "active",
"dmidecode": "# dmidecode 3.6\nGetting SMBIOS data from sysfs.\nSMBIOS 3.3.0 present.\n\nHandle 0x0000, DMI type 0, 26 bytes\nBIOS Information\n\tVendor: American Megatrends International, LLC.\n\tVersion: F65e\n\tRelease Date: 09/20/2023\n\tAddress: 0xF0000\n\tRuntime Size: 64 kB\n\tROM Size: 16 MB\n\tCharacteristics:\n\t\tPCI is supported\n\t\tBIOS is upgradeable\n\t\tBIOS shadowing is allowed\n\t\tBoot from CD is supported\n\t\tSelectable boot is supported\n\t\tBIOS ROM is socketed\n\t\tEDD is supported\n\t\tJapanese floppy for NEC 9800 1.2 MB is supported (int 13h)\n\t\tJapanese floppy for Toshiba 1.2 MB is supported (int 13h)\n\t\t5.25\"/360 kB floppy services are supported (int 13h)\n\t\t5.25\"/1.2 MB floppy services are supported (int 13h)\n\t\t3.5\"/720 kB floppy services are supported (int 13h)\n\t\t3.5\"/2.88 MB floppy services are supported (int 13h)\n\t\tPrint screen service is supported (int 5h)\n\t\tSerial services are supported (int 14h)\n\t\tPrinter services are supported (int 17h)\n\t\tCGA/mono video services are supported (int 10h)\n\t\tUSB legacy is supported\n\t\tBIOS boot specification is supported\n\t\tTargeted content distribution is supported\n\t\tUEFI is supported\n\tBIOS Revision: 5.17\n\nHandle 0x0001, DMI type 1, 27 bytes\nSystem Information\n\tManufacturer: Gigabyte Technology Co., Ltd.\n\tProduct Name: B450 AORUS ELITE\n\tVersion: Default string\n\tSerial Number: Default string\n\tUUID: 03c00218-044d-05b5-6506-740700080009\n\tWake-up Type: Power Switch\n\tSKU Number: Default string\n\tFamily: B450 MB\n\nHandle 0x0002, DMI type 2, 15 bytes\nBase Board Information\n\tManufacturer: Gigabyte Technology Co., Ltd.\n\tProduct Name: B450 AORUS ELITE\n\tVersion: Default string\n\tSerial Number: Default string\n\tAsset Tag: Default string\n\tFeatures:\n\t\tBoard is a hosting board\n\t\tBoard is replaceable\n\tLocation In Chassis: Default string\n\tChassis Handle: 0x0003\n\tType: Motherboard\n\tContained Object Handles: 0\n\nHandle 0x000B, DMI type 16, 23 bytes\nPhysical Memory Array\n\tLocation: System Board Or Motherboard\n\tUse: System Memory\n\tError Correction Type: None\n\tMaximum Capacity: 128 GB\n\tError Information Handle: 0x000A\n\tNumber Of Devices: 4\n\nHandle 0x0013, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0012\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 16 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 0\n\tBank Locator: P0 CHANNEL A\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: 00000000\n\tAsset Tag: Not Specified\n\tPart Number: CMW32GX4M2E3200C16 \n\tRank: 2\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: Unknown\n\tMaximum Voltage: Unknown\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 3, Hex 0x9E\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 16 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x0016, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0015\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 8 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 1\n\tBank Locator: P0 CHANNEL A\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: E3C4408B\n\tAsset Tag: Not Specified\n\tPart Number: BL8G32C16U4BL.M8FE\n\tRank: 1\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: 1.2 V\n\tMaximum Voltage: 1.2 V\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 6, Hex 0x9B\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 8 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x0019, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0018\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 16 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 0\n\tBank Locator: P0 CHANNEL B\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: 00000000\n\tAsset Tag: Not Specified\n\tPart Number: CMW32GX4M2E3200C16 \n\tRank: 2\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: Unknown\n\tMaximum Voltage: Unknown\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 3, Hex 0x9E\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 16 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x001C, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x001B\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 8 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 1\n\tBank Locator: P0 CHANNEL B\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: E3C44087\n\tAsset Tag: Not Specified\n\tPart Number: BL8G32C16U4BL.M8FE\n\tRank: 1\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: 1.2 V\n\tMaximum Voltage: 1.2 V\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 6, Hex 0x9B\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 8 GB\n\tCache Size: None\n\tLogical Size: None\n\n",
"lsblk": "NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS\nloop0 7:0 0 118,5M 1 loop /snap/iptvnator/92\nloop1 7:1 0 48,1M 1 loop /snap/snapd/25935\nloop2 7:2 0 50,9M 1 loop /snap/snapd/25577\nloop3 7:3 0 4K 1 loop /snap/bare/5\nloop4 7:4 0 91,7M 1 loop /snap/gtk-common-themes/1535\nloop5 7:5 0 55,5M 1 loop /snap/core18/2976\nloop6 7:6 0 164,8M 1 loop /snap/gnome-3-28-1804/198\nloop7 7:7 0 0B 0 loop \nsda 8:0 0 447,1G 0 disk \n└─sda1 8:1 0 447,1G 0 part \nsdb 8:16 1 0B 0 disk \nsdc 8:32 1 0B 0 disk \nsdd 8:48 1 0B 0 disk \nsde 8:64 1 0B 0 disk \nnvme0n1 259:0 0 465,8G 0 disk \n├─nvme0n1p1 259:1 0 976M 0 part /boot/efi\n├─nvme0n1p2 259:2 0 440,8G 0 part /\n└─nvme0n1p3 259:3 0 24G 0 part [SWAP]\nnvme1n1 259:4 0 465,8G 0 disk \n├─nvme1n1p1 259:5 0 50M 0 part \n├─nvme1n1p2 259:6 0 464,3G 0 part \n├─nvme1n1p3 259:7 0 808M 0 part \n├─nvme1n1p4 259:8 0 100M 0 part \n└─nvme1n1p5 259:9 0 522M 0 part \n",
"lscpu": "Architecture : x86_64\nMode(s) opératoire(s) des processeurs : 32-bit, 64-bit\nTailles des adresses: 48 bits physical, 48 bits virtual\nBoutisme : Little Endian\nProcesseur(s) : 24\nListe de processeur(s) en ligne : 0-23\nIdentifiant constructeur : AuthenticAMD\nNom de modèle : AMD Ryzen 9 5900X 12-Core Processor\nFamille de processeur : 25\nModèle : 33\nThread(s) par cœur : 2\nCœur(s) par socket : 12\nSocket(s) : 1\nRévision : 2\nAccroissement de fréquence : activé\nmultiplication des MHz du/des CPU(s) : 75%\nVitesse maximale du processeur en MHz : 4951,0000\nVitesse minimale du processeur en MHz : 550,0000\nBogoMIPS : 7399,98\nDrapeaux : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local user_shstk clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm debug_swap\nVirtualisation : AMD-V\nCache L1d : 384 KiB (12 instances)\nCache L1i : 384 KiB (12 instances)\nCache L2 : 6 MiB (12 instances)\nCache L3 : 64 MiB (2 instances)\nNœud(s) NUMA : 1\nNœud NUMA 0 de processeur(s) : 0-23\nVulnérabilité Gather data sampling : Not affected\nVulnérabilité Indirect target selection : Not affected\nVulnérabilité Itlb multihit : Not affected\nVulnérabilité L1tf : Not affected\nVulnérabilité Mds : Not affected\nVulnérabilité Meltdown : Not affected\nVulnérabilité Mmio stale data : Not affected\nVulnérabilité Reg file data sampling : Not affected\nVulnérabilité Retbleed : Not affected\nVulnérabilité Spec rstack overflow : Mitigation; Safe RET\nVulnérabilité Spec store bypass : Mitigation; Speculative Store Bypass disabled via prctl\nVulnérabilité Spectre v1 : Mitigation; usercopy/swapgs barriers and __user pointer sanitization\nVulnérabilité Spectre v2 : Mitigation; Retpolines; IBPB conditional; IBRS_FW; STIBP always-on; RSB filling; PBRSB-eIBRS Not affected; BHI Not affected\nVulnérabilité Srbds : Not affected\nVulnérabilité Tsa : Vulnerable: Clear CPU buffers attempted, no microcode\nVulnérabilité Tsx async abort : Not affected\nVulnérabilité Vmscape : Mitigation; IBPB before exit to userspace\n"
}
},
"results": {
"cpu": {
"events_per_sec": 37361.530000000006,
"events_per_sec_single": 5610.96,
"events_per_sec_multi": 69112.1,
"duration_s": 20.000500000000002,
"score": 37361.530000000006,
"score_single": 5610.96,
"score_multi": 69112.1
},
"memory": {
"throughput_mib_s": 8910.25,
"score": 8910.25
},
"disk": {
"read_mb_s": 29.880859375,
"write_mb_s": 29.8876953125,
"iops_read": 7649.745008,
"iops_write": 7651.344955,
"latency_ms": 0.107432584462,
"score": 29.88427734375
},
"network": {
"upload_mbps": 942.1359240852237,
"download_mbps": 938.9118888182643,
"ping_ms": 0.362,
"jitter_ms": null,
"packet_loss_percent": null,
"score": 940.523906451744
},
"gpu": {
"glmark2_score": null,
"score": null
},
"global_score": 77505.40246113927
},
"raw_info": {
"debug": "active",
"dmidecode": "# dmidecode 3.6\nGetting SMBIOS data from sysfs.\nSMBIOS 3.3.0 present.\n\nHandle 0x0000, DMI type 0, 26 bytes\nBIOS Information\n\tVendor: American Megatrends International, LLC.\n\tVersion: F65e\n\tRelease Date: 09/20/2023\n\tAddress: 0xF0000\n\tRuntime Size: 64 kB\n\tROM Size: 16 MB\n\tCharacteristics:\n\t\tPCI is supported\n\t\tBIOS is upgradeable\n\t\tBIOS shadowing is allowed\n\t\tBoot from CD is supported\n\t\tSelectable boot is supported\n\t\tBIOS ROM is socketed\n\t\tEDD is supported\n\t\tJapanese floppy for NEC 9800 1.2 MB is supported (int 13h)\n\t\tJapanese floppy for Toshiba 1.2 MB is supported (int 13h)\n\t\t5.25\"/360 kB floppy services are supported (int 13h)\n\t\t5.25\"/1.2 MB floppy services are supported (int 13h)\n\t\t3.5\"/720 kB floppy services are supported (int 13h)\n\t\t3.5\"/2.88 MB floppy services are supported (int 13h)\n\t\tPrint screen service is supported (int 5h)\n\t\tSerial services are supported (int 14h)\n\t\tPrinter services are supported (int 17h)\n\t\tCGA/mono video services are supported (int 10h)\n\t\tUSB legacy is supported\n\t\tBIOS boot specification is supported\n\t\tTargeted content distribution is supported\n\t\tUEFI is supported\n\tBIOS Revision: 5.17\n\nHandle 0x0001, DMI type 1, 27 bytes\nSystem Information\n\tManufacturer: Gigabyte Technology Co., Ltd.\n\tProduct Name: B450 AORUS ELITE\n\tVersion: Default string\n\tSerial Number: Default string\n\tUUID: 03c00218-044d-05b5-6506-740700080009\n\tWake-up Type: Power Switch\n\tSKU Number: Default string\n\tFamily: B450 MB\n\nHandle 0x0002, DMI type 2, 15 bytes\nBase Board Information\n\tManufacturer: Gigabyte Technology Co., Ltd.\n\tProduct Name: B450 AORUS ELITE\n\tVersion: Default string\n\tSerial Number: Default string\n\tAsset Tag: Default string\n\tFeatures:\n\t\tBoard is a hosting board\n\t\tBoard is replaceable\n\tLocation In Chassis: Default string\n\tChassis Handle: 0x0003\n\tType: Motherboard\n\tContained Object Handles: 0\n\nHandle 0x000B, DMI type 16, 23 bytes\nPhysical Memory Array\n\tLocation: System Board Or Motherboard\n\tUse: System Memory\n\tError Correction Type: None\n\tMaximum Capacity: 128 GB\n\tError Information Handle: 0x000A\n\tNumber Of Devices: 4\n\nHandle 0x0013, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0012\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 16 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 0\n\tBank Locator: P0 CHANNEL A\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: 00000000\n\tAsset Tag: Not Specified\n\tPart Number: CMW32GX4M2E3200C16 \n\tRank: 2\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: Unknown\n\tMaximum Voltage: Unknown\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 3, Hex 0x9E\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 16 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x0016, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0015\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 8 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 1\n\tBank Locator: P0 CHANNEL A\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: E3C4408B\n\tAsset Tag: Not Specified\n\tPart Number: BL8G32C16U4BL.M8FE\n\tRank: 1\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: 1.2 V\n\tMaximum Voltage: 1.2 V\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 6, Hex 0x9B\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 8 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x0019, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0018\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 16 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 0\n\tBank Locator: P0 CHANNEL B\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: 00000000\n\tAsset Tag: Not Specified\n\tPart Number: CMW32GX4M2E3200C16 \n\tRank: 2\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: Unknown\n\tMaximum Voltage: Unknown\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 3, Hex 0x9E\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 16 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x001C, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x001B\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 8 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 1\n\tBank Locator: P0 CHANNEL B\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: E3C44087\n\tAsset Tag: Not Specified\n\tPart Number: BL8G32C16U4BL.M8FE\n\tRank: 1\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: 1.2 V\n\tMaximum Voltage: 1.2 V\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 6, Hex 0x9B\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 8 GB\n\tCache Size: None\n\tLogical Size: None\n\n",
"lsblk": "NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS\nloop0 7:0 0 118,5M 1 loop /snap/iptvnator/92\nloop1 7:1 0 48,1M 1 loop /snap/snapd/25935\nloop2 7:2 0 50,9M 1 loop /snap/snapd/25577\nloop3 7:3 0 4K 1 loop /snap/bare/5\nloop4 7:4 0 91,7M 1 loop /snap/gtk-common-themes/1535\nloop5 7:5 0 55,5M 1 loop /snap/core18/2976\nloop6 7:6 0 164,8M 1 loop /snap/gnome-3-28-1804/198\nloop7 7:7 0 0B 0 loop \nsda 8:0 0 447,1G 0 disk \n└─sda1 8:1 0 447,1G 0 part \nsdb 8:16 1 0B 0 disk \nsdc 8:32 1 0B 0 disk \nsdd 8:48 1 0B 0 disk \nsde 8:64 1 0B 0 disk \nnvme0n1 259:0 0 465,8G 0 disk \n├─nvme0n1p1 259:1 0 976M 0 part /boot/efi\n├─nvme0n1p2 259:2 0 440,8G 0 part /\n└─nvme0n1p3 259:3 0 24G 0 part [SWAP]\nnvme1n1 259:4 0 465,8G 0 disk \n├─nvme1n1p1 259:5 0 50M 0 part \n├─nvme1n1p2 259:6 0 464,3G 0 part \n├─nvme1n1p3 259:7 0 808M 0 part \n├─nvme1n1p4 259:8 0 100M 0 part \n└─nvme1n1p5 259:9 0 522M 0 part \n",
"lscpu": "Architecture : x86_64\nMode(s) opératoire(s) des processeurs : 32-bit, 64-bit\nTailles des adresses: 48 bits physical, 48 bits virtual\nBoutisme : Little Endian\nProcesseur(s) : 24\nListe de processeur(s) en ligne : 0-23\nIdentifiant constructeur : AuthenticAMD\nNom de modèle : AMD Ryzen 9 5900X 12-Core Processor\nFamille de processeur : 25\nModèle : 33\nThread(s) par cœur : 2\nCœur(s) par socket : 12\nSocket(s) : 1\nRévision : 2\nAccroissement de fréquence : activé\nmultiplication des MHz du/des CPU(s) : 75%\nVitesse maximale du processeur en MHz : 4951,0000\nVitesse minimale du processeur en MHz : 550,0000\nBogoMIPS : 7399,98\nDrapeaux : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local user_shstk clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm debug_swap\nVirtualisation : AMD-V\nCache L1d : 384 KiB (12 instances)\nCache L1i : 384 KiB (12 instances)\nCache L2 : 6 MiB (12 instances)\nCache L3 : 64 MiB (2 instances)\nNœud(s) NUMA : 1\nNœud NUMA 0 de processeur(s) : 0-23\nVulnérabilité Gather data sampling : Not affected\nVulnérabilité Indirect target selection : Not affected\nVulnérabilité Itlb multihit : Not affected\nVulnérabilité L1tf : Not affected\nVulnérabilité Mds : Not affected\nVulnérabilité Meltdown : Not affected\nVulnérabilité Mmio stale data : Not affected\nVulnérabilité Reg file data sampling : Not affected\nVulnérabilité Retbleed : Not affected\nVulnérabilité Spec rstack overflow : Mitigation; Safe RET\nVulnérabilité Spec store bypass : Mitigation; Speculative Store Bypass disabled via prctl\nVulnérabilité Spectre v1 : Mitigation; usercopy/swapgs barriers and __user pointer sanitization\nVulnérabilité Spectre v2 : Mitigation; Retpolines; IBPB conditional; IBRS_FW; STIBP always-on; RSB filling; PBRSB-eIBRS Not affected; BHI Not affected\nVulnérabilité Srbds : Not affected\nVulnérabilité Tsa : Vulnerable: Clear CPU buffers attempted, no microcode\nVulnérabilité Tsx async abort : Not affected\nVulnérabilité Vmscape : Mitigation; IBPB before exit to userspace\n"
}
}
[DEBUG] Payload sauvegardé au format JSON dans bench_payload_last.json (49208 octets)
[DEBUG] Contenu de /home/gilles/Documents/vscode/bis/bench_go/config.yaml :
# bench-client config.yaml
# Objectif: décrire précisément
# - les outils à utiliser (et exigences d'installation)
# - les informations à collecter
# - les benchmarks à exécuter
# - les paramètres (timeouts, limites, endpoints, debug)
#
# Le binaire (Go/Rust) charge ce fichier depuis HTTP(S), valide les bornes, applique des defaults sûrs,
# et peut fallback sur une config locale si indisponible.
config_version: 1
profile: default
backend:
# URL finale du POST (le programme peut aussi accepter server_base_url + path)
url: "http://10.0.0.50:8007/api/benchmark"
# Auth: idéalement injecté par variable d'env sur le client; éviter de mettre le token dans la config distante.
auth:
mode: bearer_env
env_var: "test_hardware_perf"
http:
timeout_s: 15
retries: 2
retry_backoff_s: 2
tls:
verify: true
remote_config:
# Options de cache/ETag si le binaire gère le rafraîchissement
cache_path: "/var/cache/bench-client/config.yaml"
use_etag: true
refresh_max_age_s: 86400
runtime:
# Timeouts globaux de sécurité
max_total_runtime_s: 480
command_timeout_s: 30
command_timeout_overrides:
dmidecode_s: 20
smartctl_s: 10
lsblk_s: 10
sysbench_cpu_s: 120
sysbench_mem_s: 60
fio_s: 120
iperf3_s: 20
temp_dir: "/tmp"
locale: "C"
path_prepend:
- "/usr/sbin"
- "/sbin"
logging:
level: info # trace|debug|info|warn|error
progress: true # affichage étapes (1/N) + items
show_command_lines: false
capture_raw_output: true # remonte dans raw_info (attention taille)
raw_output_max_kb: 5120
save_payload_to_tmp: true
payload_tmp_dir: "/tmp"
payload_filename_prefix: "bench_payload_"
interactive_pause_on_debug: true
payload:
dir: "."
prefix: "bench_payload_"
always_save: true
device_identity:
# device_identifier envoyé au backend
prefer:
- hostname
- machine_id
hostname_command: "hostname"
machine_id_path: "/etc/machine-id"
dependencies:
# Liste des programmes externes (installés par le script shell)
# Le binaire doit pouvoir:
# - détecter présence/version (optionnel)
# - marquer chaque "feature" comme disponible ou non
required_base:
- name: "curl"
purpose: "Téléchargements/diagnostics (souvent côté script)"
- name: "jq"
purpose: "Optionnel: debug/validation (souvent côté script, pas nécessaire au binaire)"
- name: "lscpu"
purpose: "Infos CPU"
- name: "free"
purpose: "Infos mémoire"
- name: "lsblk"
purpose: "Infos stockage/partitions"
- name: "ip"
purpose: "Interfaces réseau, adresses IP"
- name: "bc"
purpose: "Optionnel: calculs (si pas fait en code)"
- name: "dmidecode"
purpose: "Infos BIOS/carte mère/RAM/DMI"
requires_root: true
- name: "smartctl"
package: "smartmontools"
purpose: "Infos disques SMART"
requires_root: true
- name: "ethtool"
purpose: "Vitesse réseau, Wake-on-LAN, driver"
requires_root: true
- name: "lspci"
package: "pciutils"
purpose: "Liste périphériques PCI (GPU/Audio/etc.)"
- name: "lsusb"
package: "usbutils"
purpose: "Liste périphériques USB"
- name: "aplay"
package: "alsa-utils"
purpose: "Inventaire audio ALSA"
- name: "arecord"
package: "alsa-utils"
purpose: "Inventaire capture ALSA"
- name: "pactl"
package: "pulseaudio-utils"
purpose: "Infos audio PulseAudio/PipeWire (si dispo)"
- name: "iw"
package: "iw"
purpose: "SSID + bitrate Wi-Fi"
- name: "loginctl"
package: "systemd"
purpose: "Type de session (x11/wayland/tty)"
- name: "xrandr"
package: "x11-xserver-utils"
purpose: "Résolution écran (X11)"
- name: "xdpyinfo"
package: "x11-utils"
purpose: "Résolution écran (fallback X11)"
- name: "swaymsg"
package: "sway"
purpose: "Résolution écran (Wayland/Sway)"
- name: "nvidia-smi"
package: "nvidia-utils"
purpose: "Infos GPU NVIDIA (si présent)"
- name: "systemd-detect-virt"
package: "systemd"
purpose: "Détection virtualisation/proxmox"
- name: "pveversion"
package: "pve-manager"
purpose: "Détection hôte Proxmox (si présent)"
benchmark_tools:
- name: "sysbench"
purpose: "Bench CPU et mémoire"
- name: "fio"
purpose: "Bench disque"
- name: "iperf3"
purpose: "Bench réseau"
- name: "ping"
package: "iputils-ping"
purpose: "Vérifier accessibilité iperf server"
- name: "nc"
package: "netcat-openbsd"
purpose: "Tester port 5201 iperf3"
collection:
# Liste des infos à récupérer, structurées comme dans ton script.
system:
enabled: true
items:
- hostname
- os_id
- os_version
- kernel_version
- architecture
- session_type # XDG_SESSION_TYPE / loginctl / DISPLAY / WAYLAND_DISPLAY
- screen_resolution # xrandr/xdpyinfo/swaymsg
- last_boot_time # who -b
- uptime_seconds # /proc/uptime
- battery_percentage # /sys/class/power_supply/BAT*/capacity
- battery_status # /sys/class/power_supply/BAT*/status
- battery_health # /sys/class/power_supply/BAT*/health ou uevent
- virtualization # systemd-detect-virt + proxmox hints
virtualization_detection:
enabled: true
proxmox:
detect_host_by:
- pveversion
- "/etc/pve"
detect_guest_by:
- systemd_detect_virt
- qemu_guest_agent
- dmidecode_manufacturer_product_matches: ["qemu", "proxmox"]
capture:
- is_proxmox_host
- is_proxmox_guest
- proxmox_version
- virtualization_type
cpu:
enabled: true
source:
primary: lscpu
supplement_dmidecode: true
items:
- vendor
- model
- cores_physical # cores_per_socket * sockets
- threads # nproc
- base_freq_ghz # lscpu CPU MHz -> GHz
- max_freq_ghz # lscpu CPU max MHz -> GHz
- cache_l1_kb
- cache_l2_kb
- cache_l3_kb
- flags # CPU flags list
- microarchitecture # depuis dmidecode type 4 (Family) si manquant
raw_capture:
- lscpu_output
ram:
enabled: true
sources:
- free
- dmidecode
items:
- total_mb
- used_mb
- free_mb
- shared_mb
- slots_total # dmidecode -t 16
- slots_used # dmidecode -t 17
- max_capacity_mb # dmidecode -t 16 Maximum Capacity
- ecc # dmidecode -t memory Error Correction Type
- layout # par slot: locator, size, type, speed, configured_speed, form_factor, type_detail, rank, manufacturer, part_number
raw_capture:
- dmidecode_full
gpu:
enabled: true
sources:
- lspci
- nvidia_smi_optional
items:
- vendor # NVIDIA/AMD/Intel/Unknown
- model # lspci vga/3d ou nvidia-smi name
- memory_dedicated_mb # nvidia-smi (si dispo)
- driver_version # nvidia-smi (si dispo)
motherboard_bios:
enabled: true
source: dmidecode
items:
- baseboard_manufacturer
- baseboard_product_name
- bios_vendor
- bios_version
- bios_release_date
pci_devices:
enabled: true
source: lspci
items:
- slot
- class
- vendor
- device
usb_devices:
enabled: true
source: lsusb
items:
- bus
- device
- vendor_id
- product_id
- name
audio:
enabled: true
sources:
- lspci
- alsa
- pactl_optional
items:
hardware:
- pci_audio_devices # lspci audio
- alsa_playback # aplay -l
- alsa_capture # arecord -l
- pcm_devices # aplay -L
software:
- backend # pipewire/pulseaudio/alsa
- server_name
- server_version
- default_sink
- default_source
- sinks
- sources
storage:
enabled: true
sources:
- lsblk
- smartctl
devices:
enumerate_by: "lsblk_disks" # lsblk -d -n -o NAME,TYPE
include_removable: false
items:
- device # /dev/sda
- model # smartctl -i
- serial # smartctl -i
- size # lsblk
- type # rota -> ssd/hdd
- interface # tran
- temperature_c # smartctl -A
- smart_health # smartctl -H
partitions:
enabled: true
source: lsblk_json
items:
- name
- mount_point
- fs_type
- total_gb
- used_gb
- free_gb
raw_capture:
- lsblk_output
network_shares:
enabled: true
source: "/proc/mounts"
detect_fs_types:
- nfs
- nfs4
- cifs
- smbfs
- fuse.cifs
- fuse.smbfs
- afp
- afpfs
- fuse.afpfs
- sshfs
- fuse.sshfs
- ftpfs
- curlftpfs
- fuse.ftpfs
- davfs
- davfs2
- fuse.webdavfs
items:
- protocol
- source
- mount_point
- fs_type
- options
- total_gb
- used_gb
- free_gb
network:
enabled: true
sources:
- ip
- ethtool
- iw_optional
interface_filter:
# reprise logique script: UP|UNKNOWN sauf interfaces virtuelles connues
include_states: ["UP", "UNKNOWN"]
exclude_name_prefixes: ["lo", "docker", "br-", "veth", "tap", "fw"]
items:
- name
- type # bridge|ethernet|wifi|unknown
- mac
- ip_address
- speed_mbps # ethtool speed ou iw tx bitrate
- driver # ethtool -i ou /sys/.../driver
- ssid # iw dev link
- wake_on_lan # ethtool Wake-on
raw_info:
enabled: true
include:
- lscpu
- lsblk
- dmidecode
max_size_kb: 5120
benchmarks:
enabled: true
# Pondérations identiques à ton script (si résultat dispo)
weights:
cpu: 0.40
memory: 0.20
disk: 0.20
network: 0.10
gpu: 0.10
cpu_sysbench:
enabled: true
tool: sysbench
params:
cpu_max_prime: 20000
single_thread: 1
multi_threads: "all" # all -> nproc
outputs:
- events_per_sec_single
- events_per_sec_multi
- duration_s
- score_single
- score_multi
- score_global
memory_sysbench:
enabled: true
tool: sysbench
params:
total_size: "1G"
outputs:
- throughput_mib_s
- score
disk_fio:
enabled: true
tool: fio
safety:
# Empêcher un bench destructif ou trop long
max_runtime_s: 60
max_size: "1G"
direct: 1
params:
name: "bench"
ioengine: "libaio"
rw: "randrw"
bs: "4k"
size: "500M"
numjobs: 1
runtime_s: 30
time_based: true
output_format: "json"
outputs:
- read_mb_s
- write_mb_s
- iops_read
- iops_write
- latency_ms
- score
network_iperf3:
enabled: true
tool: iperf3
server: "10.0.0.50"
port: 5201
prechecks:
ping:
enabled: true
count: 1
timeout_s: 1
port_check:
enabled: true
tool: nc
timeout_s: 2
params:
duration_s: 10
bidir: true
json: true
outputs:
- upload_mbps
- download_mbps
- ping_ms
- score
# placeholders (comme ton script)
- jitter_ms
- packet_loss_percent
gpu:
enabled: false
note: "GPU bench non implémenté dans le script d'origine (placeholder)."
payload_mapping:
# Le binaire peut mapper ses structures internes vers le schéma backend actuel.
# Utile si ton backend attend des champs précis.
device_identifier: "system.hostname"
bench_script_version_field: "bench_client_version"
include_sections:
- hardware
- results
- raw_info
limits:
# Bornes générales de sécurité (validation côté client)
max_payload_kb: 1024
max_raw_info_kb: 5120
max_fio_runtime_s: 60
max_fio_size_bytes: 1073741824 # 1 GiB
max_sysbench_cpu_prime: 50000
max_iperf_duration_s: 30
features:
# Permet d'activer/désactiver rapidement des blocs selon machines
enable_screen_resolution_detection: true
enable_battery_detection: true
enable_network_share_detection: true
enable_audio_detection: true
enable_proxmox_detection: true
[DEBUG] Config chargée : {ConfigVersion:1 Backend:{URL:http://10.0.0.50:8007/api/benchmark Auth:{Mode:bearer_env EnvVar:test_hardware_perf} HTTP:{TimeoutS:15 Retries:2 RetryBackoffS:2 TLSVerify:false}} Runtime:{MaxTotalRuntime:480 CommandTimeout:30 TempDir:/tmp Locale:C PathPrepend:[/usr/sbin /sbin]} Logging:{Level:info Progress:true ShowCommandLines:false CaptureRawOutput:true RawOutputMaxKB:5120 SavePayloadToTmp:true PayloadTmpDir:/tmp PayloadFilenamePrefix:bench_payload_ InteractiveDebugPause:true} Payload:{Dir:. Prefix:bench_payload_ Always:true} Benchmarks:{Enabled:true Weights:map[cpu:0.4 disk:0.2 gpu:0.1 memory:0.2 network:0.1] CPU:{Enabled:true Tool:sysbench Server: Port:0 Params:map[cpu_max_prime:20000 multi_threads:all single_thread:1] Safety:map[]} Memory:{Enabled:true Tool:sysbench Server: Port:0 Params:map[total_size:1G] Safety:map[]} Disk:{Enabled:true Tool:fio Server: Port:0 Params:map[bs:4k ioengine:libaio name:bench numjobs:1 output_format:json runtime_s:30 rw:randrw size:500M time_based:true] Safety:map[direct:1 max_runtime_s:60 max_size:1G]} Network:{Enabled:true Tool:iperf3 Server:10.0.0.50 Port:5201 Params:map[bidir:true duration_s:10 json:true] Safety:map[]}} Collection:{System:{Enabled:true} CPU:{Enabled:true} RAM:{Enabled:true} Storage:{Enabled:true} Network:{Enabled:true} GPU:{Enabled:true} Audio:{Enabled:true} PCI:{Enabled:true} USB:{Enabled:true}} RawInfo:{Enabled:true Include:[lscpu lsblk dmidecode] MaxSizeKB:5120}}
[DEBUG] Configuration complète : {ConfigVersion:1 Backend:{URL:http://10.0.0.50:8007/api/benchmark Auth:{Mode:bearer_env EnvVar:test_hardware_perf} HTTP:{TimeoutS:15 Retries:2 RetryBackoffS:2 TLSVerify:false}} Runtime:{MaxTotalRuntime:480 CommandTimeout:30 TempDir:/tmp Locale:C PathPrepend:[/usr/sbin /sbin]} Logging:{Level:info Progress:true ShowCommandLines:false CaptureRawOutput:true RawOutputMaxKB:5120 SavePayloadToTmp:true PayloadTmpDir:/tmp PayloadFilenamePrefix:bench_payload_ InteractiveDebugPause:true} Payload:{Dir:. Prefix:bench_payload_ Always:true} Benchmarks:{Enabled:true Weights:map[cpu:0.4 disk:0.2 gpu:0.1 memory:0.2 network:0.1] CPU:{Enabled:true Tool:sysbench Server: Port:0 Params:map[cpu_max_prime:20000 multi_threads:all single_thread:1] Safety:map[]} Memory:{Enabled:true Tool:sysbench Server: Port:0 Params:map[total_size:1G] Safety:map[]} Disk:{Enabled:true Tool:fio Server: Port:0 Params:map[bs:4k ioengine:libaio name:bench numjobs:1 output_format:json runtime_s:30 rw:randrw size:500M time_based:true] Safety:map[direct:1 max_runtime_s:60 max_size:1G]} Network:{Enabled:true Tool:iperf3 Server:10.0.0.50 Port:5201 Params:map[bidir:true duration_s:10 json:true] Safety:map[]}} Collection:{System:{Enabled:true} CPU:{Enabled:true} RAM:{Enabled:true} Storage:{Enabled:true} Network:{Enabled:true} GPU:{Enabled:true} Audio:{Enabled:true} PCI:{Enabled:true} USB:{Enabled:true}} RawInfo:{Enabled:true Include:[lscpu lsblk dmidecode] MaxSizeKB:5120}}
[DEBUG] [2/6] Début collecte CPU
[DEBUG] Exec: lscpu []
[DEBUG] Exec: dmidecode [-t 4]
[DEBUG] [2/6] Détails CPU: {Vendor:AuthenticAMD Model:AMD Ryzen 9 5900X 12-Core Processor Cores:12 Threads:24 BaseFreqGHz:4.951 MaxFreqGHz:4.951 CacheL1KB:64 CacheL2KB:512 CacheL3KB:32768 Flags:[fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local user_shstk clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm debug_swap] Microarchitecture:Zen TDPW:<nil>}
[DEBUG] [2/6] Début collecte RAM
[DEBUG] SMBIOS détecté : SMBIOS 3.3.0 (54 tables)
[DEBUG] Module SMBIOS détecté : DIMM 0 {Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 }
[DEBUG] Module SMBIOS détecté : DIMM 1 {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE}
[DEBUG] Module SMBIOS détecté : DIMM 0 {Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 }
[DEBUG] Module SMBIOS détecté : DIMM 1 {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE}
[DEBUG] Mémoire SMBIOS : slots_total=10 slots_used=4 ecc=false max=0MB
[DEBUG] [2/6] Détails RAM: {TotalMB:48096 UsedMB:17189 FreeMB:30907 SharedMB:960 SlotsTotal:10 SlotsUsed:4 MaxCapacityMB:48096 ECC:false Layout:[{Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 } {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE} {Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 } {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE}]}
[DEBUG] [2/6] Début collecte GPU
[DEBUG] Exec: lspci []
[DEBUG] Exec: nvidia-smi [--query-gpu=name,driver_version,memory.total --format=csv,noheader,nounits]
[DEBUG] [2/6] Détails GPU: {Vendor:NVIDIA Model:NVIDIA GeForce RTX 3060 DriverVersion:550.163.01 MemoryDedicatedMB:0xc0002d1da8 MemorySharedMB:<nil> APISupport:[]}
[DEBUG] [2/6] Début collecte stockage
[DEBUG] Exec: lsblk [-J -b -o NAME,TYPE,TRAN,VENDOR,MODEL,SERIAL,SIZE]
[DEBUG] SMART open /dev/sdb impossible: unknown drive type
[DEBUG] SMART open /dev/sdc impossible: unknown drive type
[DEBUG] SMART open /dev/sdd impossible: unknown drive type
[DEBUG] SMART open /dev/sde impossible: unknown drive type
[DEBUG] [2/6] Détails stockage: {Devices:[{Name:/dev/nvme0n1 Type:ssd Interface:nvme CapacityGB:465.7617416381836 Vendor:CT500P2SSD8 Model:CT500P2SSD8 Serial:2138E5D60DD8 SmartHealth:PASSED Temperature:34} {Name:/dev/nvme1n1 Type: Interface:nvme CapacityGB:465.7617416381836 Vendor:CT500P2SSD8 Model:CT500P2SSD8 Serial:2108E4FD258D SmartHealth:PASSED Temperature:32} {Name:/dev/sda Type: Interface:sata CapacityGB:447.13167572021484 Vendor:ATA Model:KINGSTON SUV500480G Serial:50026B768226A365 SmartHealth:PASSED Temperature:25} {Name:/dev/sdb Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:Compact Flash Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sdc Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:SD/MMC Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sdd Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:MS/MS-PRO Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sde Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:xD-Picture Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0}] Partitions:[{Name:/dev/nvme0n1p2 MountPoint:/ FSType:ext4 TotalGB:432.80120849609375 UsedGB:0xc000430068 FreeGB:0xc000430070} {Name:/dev/nvme0n1p1 MountPoint:/boot/efi FSType:vfat TotalGB:0.9512481689453125 UsedGB:0xc000430078 FreeGB:0xc0004300b0}]}
[DEBUG] [2/6] Début collecte PCI devices
[DEBUG] Exec: lspci [-mm]
[DEBUG] [2/6] Détails PCI: [{Slot:00:00.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Root Complex} {Slot:00:00.2 Class:IOMMU Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse IOMMU} {Slot:00:01.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:01.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse GPP Bridge} {Slot:00:01.3 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse GPP Bridge} {Slot:00:02.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:03.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:03.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse GPP Bridge} {Slot:00:04.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:05.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:07.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:07.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]} {Slot:00:08.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:08.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]} {Slot:00:14.0 Class:SMBus Vendor:Advanced Micro Devices, Inc. [AMD] Device:FCH SMBus Controller} {Slot:00:14.3 Class:ISA bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:FCH LPC Bridge} {Slot:00:18.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 0} {Slot:00:18.1 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 1} {Slot:00:18.2 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 2} {Slot:00:18.3 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 3} {Slot:00:18.4 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 4} {Slot:00:18.5 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 5} {Slot:00:18.6 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 6} {Slot:00:18.7 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 7} {Slot:01:00.0 Class:Non-Volatile memory controller Vendor:Micron/Crucial Technology Device:P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)} {Slot:02:00.0 Class:USB controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset USB 3.1 xHCI Compliant Host Controller} {Slot:02:00.1 Class:SATA controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset SATA Controller} {Slot:02:00.2 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Bridge} {Slot:03:00.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:03:01.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:03:04.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:03:08.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:04:00.0 Class:Ethernet controller Vendor:Realtek Semiconductor Co., Ltd. Device:RTL8111/8168/8211/8411 PCI Express Gigabit Ethernet Controller} {Slot:07:00.0 Class:Non-Volatile memory controller Vendor:Micron/Crucial Technology Device:P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)} {Slot:08:00.0 Class:VGA compatible controller Vendor:NVIDIA Corporation Device:GA106 [GeForce RTX 3060 Lite Hash Rate]} {Slot:08:00.1 Class:Audio device Vendor:NVIDIA Corporation Device:GA106 High Definition Audio Controller} {Slot:09:00.0 Class:Non-Essential Instrumentation [1300] Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Function} {Slot:0a:00.0 Class:Non-Essential Instrumentation [1300] Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Reserved SPP} {Slot:0a:00.1 Class:Encryption controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Cryptographic Coprocessor PSPCPP} {Slot:0a:00.3 Class:USB controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse USB 3.0 Host Controller} {Slot:0a:00.4 Class:Audio device Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse HD Audio Controller}]
[DEBUG] [2/6] Début collecte USB devices
[DEBUG] Exec: lsusb []
[DEBUG] [2/6] Détails USB: [{Bus:001 Device:001 VendorID:1d6b ProductID:0002 Name:Linux Foundation 2.0 root hub} {Bus:001 Device:002 VendorID:058f ProductID:6362 Name:Alcor Micro Corp. Flash Card Reader/Writer} {Bus:002 Device:001 VendorID:1d6b ProductID:0003 Name:Linux Foundation 3.0 root hub} {Bus:003 Device:001 VendorID:1d6b ProductID:0002 Name:Linux Foundation 2.0 root hub} {Bus:003 Device:003 VendorID:046d ProductID:c52b Name:Logitech, Inc. Unifying Receiver} {Bus:003 Device:004 VendorID:0bda ProductID:b711 Name:Realtek Semiconductor Corp. RTL8188GU 802.11n WLAN Adapter (After Modeswitch)} {Bus:004 Device:001 VendorID:1d6b ProductID:0003 Name:Linux Foundation 3.0 root hub}]
[DEBUG] [2/6] Début collecte partages réseau
[DEBUG] [2/6] Détails partages réseau: []
[DEBUG] [2/6] Début collecte interfaces réseau
[DEBUG] Exec: ethtool [eno1]
[DEBUG] Exec: ethtool [-i eno1]
[DEBUG] Exec: ethtool [wlxe84e06a6c1fc]
[DEBUG] Exec: ethtool [-i wlxe84e06a6c1fc]
[DEBUG] Exec: iwgetid [wlxe84e06a6c1fc -r]
[DEBUG] Exec: iw [wlxe84e06a6c1fc link]
[DEBUG] [2/6] Détails réseau: {Interfaces:[{Name:eno1 Type:ethernet MAC:18:c0:4d:b5:65:74 IP:10.0.1.109 SpeedMbps:0xc0004305c8 Driver:r8169 SSID: WakeOnLAN:false} {Name:wlxe84e06a6c1fc Type:wifi MAC:ea:49:66:6c:18:ca IP: SpeedMbps:<nil> Driver:rtl8xxxu SSID: WakeOnLAN:false}]}
[DEBUG] [2/6] Début collecte carte mère
[DEBUG] Exec: dmidecode [-t 2]
[DEBUG] Exec: dmidecode [-t 0]
[DEBUG] [2/6] Détails carte mère: {Vendor:Gigabyte Technology Co., Ltd. Model:B450 AORUS ELITE BIOSVendor:American Megatrends International, LLC. BIOSVersion:F65e BIOSDate:09/20/2023}
[DEBUG] [2/6] Début collecte OS
[DEBUG] Exec: uname [-r]
[DEBUG] Exec: uname [-m]
[DEBUG] Exec: systemd-detect-virt []
[DEBUG] Exec: xrandr []
[DEBUG] Exec: xrandr [--current]
[DEBUG] Exec: who [-b]
[DEBUG] [2/6] Détails OS: {Name:Debian GNU/Linux Version:13 (trixie) KernelVersion:6.12.57+deb13-amd64 Architecture:x86_64 SessionType: DisplayServer: ScreenResolution:5560 x 1920 LastBootTime:démarrage système 2026-01-11 09:11 UptimeSeconds:45297.12 BatteryPercentage:<nil> BatteryStatus: BatteryHealth: Hostname:aorus VirtualizationType:kvm-host DesktopEnvironment:GNOME}
[DEBUG] [2/6] Début collecte capteurs
[DEBUG] [2/6] Détails capteurs: {CPUTempC:<nil> DiskTempsC:map[nvme-pci-0100:Composite:33.85 nvme-pci-0700:Composite:31.85] Sensors:[{Chip:k10temp-pci-00c3 Name:Tctl Type:temperature Value:40 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tccd1 Type:temperature Value:39.75 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tccd2 Type:temperature Value:31.75 Unit:°C Alarm:false} {Chip:nvme-pci-0100 Name:Composite Type:temperature Value:33.85 Unit:°C Alarm:false} {Chip:nvme-pci-0700 Name:Composite Type:temperature Value:31.85 Unit:°C Alarm:false} {Chip:acpitz-acpi-0 Name:temp1 Type:temperature Value:16.8 Unit:°C Alarm:false}]}
[DEBUG] [2/6] Début collecte audio
[DEBUG] Exec: lspci []
[DEBUG] Exec: aplay [-l]
[DEBUG] Exec: arecord [-l]
[DEBUG] Exec: aplay [-L]
[DEBUG] Exec: pactl [info]
[DEBUG] [2/6] Détails audio: {Hardware:{PCIAudioDevices:[08:00.1 Audio device: NVIDIA Corporation GA106 High Definition Audio Controller (rev a1) 0a:00.4 Audio device: Advanced Micro Devices, Inc. [AMD] Starship/Matisse HD Audio Controller] AlsaPlayback:**** Liste des périphériques matériels PLAYBACK ****
carte 0 : NVidia [HDA NVidia], périphérique 3 : HDMI 0 [LG ULTRAWIDE]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 7 : HDMI 1 [K243Y]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 8 : HDMI 2 [HDMI 2]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 9 : HDMI 3 [HDMI 3]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]
Sous-périphériques : 0/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 1 : ALC892 Digital [ALC892 Digital]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
AlsaCapture:**** Liste des périphériques matériels CAPTURE ****
carte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 2 : ALC892 Alt Analog [ALC892 Alt Analog]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
PCMDevices:[null Discard all samples (playback) or generate zero samples (capture) pipewire PipeWire Sound Server default Default ALSA Output (currently PipeWire Media Server) hw:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Direct hardware device without any conversions hw:CARD=NVidia,DEV=7 HDA NVidia, K243Y Direct hardware device without any conversions hw:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Direct hardware device without any conversions hw:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Direct hardware device without any conversions plughw:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Hardware device with all software conversions plughw:CARD=NVidia,DEV=7 HDA NVidia, K243Y Hardware device with all software conversions plughw:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Hardware device with all software conversions plughw:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Hardware device with all software conversions hdmi:CARD=NVidia,DEV=0 HDA NVidia, LG ULTRAWIDE HDMI Audio Output hdmi:CARD=NVidia,DEV=1 HDA NVidia, K243Y HDMI Audio Output hdmi:CARD=NVidia,DEV=2 HDA NVidia, HDMI 2 HDMI Audio Output hdmi:CARD=NVidia,DEV=3 HDA NVidia, HDMI 3 HDMI Audio Output dmix:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Direct sample mixing device dmix:CARD=NVidia,DEV=7 HDA NVidia, K243Y Direct sample mixing device dmix:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Direct sample mixing device dmix:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Direct sample mixing device hw:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Direct hardware device without any conversions hw:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Direct hardware device without any conversions plughw:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Hardware device with all software conversions plughw:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Hardware device with all software conversions sysdefault:CARD=Generic HD-Audio Generic, ALC892 Analog Default Audio Device front:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Front output / input surround21:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 2.1 Surround output to Front and Subwoofer speakers surround40:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 4.0 Surround output to Front and Rear speakers surround41:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 4.1 Surround output to Front, Rear and Subwoofer speakers surround50:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 5.0 Surround output to Front, Center and Rear speakers surround51:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 5.1 Surround output to Front, Center, Rear and Subwoofer speakers surround71:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 7.1 Surround output to Front, Center, Side, Rear and Woofer speakers iec958:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Digital IEC958 (S/PDIF) Digital Audio Output dmix:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Direct sample mixing device dmix:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Direct sample mixing device]} Software:{Backend: ServerName: ServerVersion: DefaultSink:<nil> DefaultSource:<nil> Sinks:[] Sources:[]}}
[DEBUG] Exec: lscpu []
[DEBUG] Exec: lsblk [-a]
[DEBUG] Exec: dmidecode [-t 0,1,2,16,17]
[DEBUG] Matériel collecté : {CPU:{Vendor:AuthenticAMD Model:AMD Ryzen 9 5900X 12-Core Processor Cores:12 Threads:24 BaseFreqGHz:4.951 MaxFreqGHz:4.951 CacheL1KB:64 CacheL2KB:512 CacheL3KB:32768 Flags:[fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local user_shstk clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm debug_swap] Microarchitecture:Zen TDPW:<nil>} RAM:{TotalMB:48096 UsedMB:17189 FreeMB:30907 SharedMB:960 SlotsTotal:10 SlotsUsed:4 MaxCapacityMB:48096 ECC:false Layout:[{Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 } {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE} {Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 } {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE}]} GPU:{Vendor:NVIDIA Model:NVIDIA GeForce RTX 3060 DriverVersion:550.163.01 MemoryDedicatedMB:0xc0002d1da8 MemorySharedMB:<nil> APISupport:[]} Storage:{Devices:[{Name:/dev/nvme0n1 Type:ssd Interface:nvme CapacityGB:465.7617416381836 Vendor:CT500P2SSD8 Model:CT500P2SSD8 Serial:2138E5D60DD8 SmartHealth:PASSED Temperature:34} {Name:/dev/nvme1n1 Type: Interface:nvme CapacityGB:465.7617416381836 Vendor:CT500P2SSD8 Model:CT500P2SSD8 Serial:2108E4FD258D SmartHealth:PASSED Temperature:32} {Name:/dev/sda Type: Interface:sata CapacityGB:447.13167572021484 Vendor:ATA Model:KINGSTON SUV500480G Serial:50026B768226A365 SmartHealth:PASSED Temperature:25} {Name:/dev/sdb Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:Compact Flash Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sdc Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:SD/MMC Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sdd Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:MS/MS-PRO Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sde Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:xD-Picture Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0}] Partitions:[{Name:/dev/nvme0n1p2 MountPoint:/ FSType:ext4 TotalGB:432.80120849609375 UsedGB:0xc000430068 FreeGB:0xc000430070} {Name:/dev/nvme0n1p1 MountPoint:/boot/efi FSType:vfat TotalGB:0.9512481689453125 UsedGB:0xc000430078 FreeGB:0xc0004300b0}]} PCIDevices:[{Slot:00:00.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Root Complex} {Slot:00:00.2 Class:IOMMU Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse IOMMU} {Slot:00:01.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:01.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse GPP Bridge} {Slot:00:01.3 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse GPP Bridge} {Slot:00:02.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:03.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:03.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse GPP Bridge} {Slot:00:04.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:05.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:07.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:07.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]} {Slot:00:08.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:08.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]} {Slot:00:14.0 Class:SMBus Vendor:Advanced Micro Devices, Inc. [AMD] Device:FCH SMBus Controller} {Slot:00:14.3 Class:ISA bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:FCH LPC Bridge} {Slot:00:18.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 0} {Slot:00:18.1 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 1} {Slot:00:18.2 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 2} {Slot:00:18.3 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 3} {Slot:00:18.4 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 4} {Slot:00:18.5 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 5} {Slot:00:18.6 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 6} {Slot:00:18.7 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 7} {Slot:01:00.0 Class:Non-Volatile memory controller Vendor:Micron/Crucial Technology Device:P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)} {Slot:02:00.0 Class:USB controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset USB 3.1 xHCI Compliant Host Controller} {Slot:02:00.1 Class:SATA controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset SATA Controller} {Slot:02:00.2 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Bridge} {Slot:03:00.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:03:01.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:03:04.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:03:08.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:04:00.0 Class:Ethernet controller Vendor:Realtek Semiconductor Co., Ltd. Device:RTL8111/8168/8211/8411 PCI Express Gigabit Ethernet Controller} {Slot:07:00.0 Class:Non-Volatile memory controller Vendor:Micron/Crucial Technology Device:P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)} {Slot:08:00.0 Class:VGA compatible controller Vendor:NVIDIA Corporation Device:GA106 [GeForce RTX 3060 Lite Hash Rate]} {Slot:08:00.1 Class:Audio device Vendor:NVIDIA Corporation Device:GA106 High Definition Audio Controller} {Slot:09:00.0 Class:Non-Essential Instrumentation [1300] Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Function} {Slot:0a:00.0 Class:Non-Essential Instrumentation [1300] Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Reserved SPP} {Slot:0a:00.1 Class:Encryption controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Cryptographic Coprocessor PSPCPP} {Slot:0a:00.3 Class:USB controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse USB 3.0 Host Controller} {Slot:0a:00.4 Class:Audio device Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse HD Audio Controller}] USBDevices:[{Bus:001 Device:001 VendorID:1d6b ProductID:0002 Name:Linux Foundation 2.0 root hub} {Bus:001 Device:002 VendorID:058f ProductID:6362 Name:Alcor Micro Corp. Flash Card Reader/Writer} {Bus:002 Device:001 VendorID:1d6b ProductID:0003 Name:Linux Foundation 3.0 root hub} {Bus:003 Device:001 VendorID:1d6b ProductID:0002 Name:Linux Foundation 2.0 root hub} {Bus:003 Device:003 VendorID:046d ProductID:c52b Name:Logitech, Inc. Unifying Receiver} {Bus:003 Device:004 VendorID:0bda ProductID:b711 Name:Realtek Semiconductor Corp. RTL8188GU 802.11n WLAN Adapter (After Modeswitch)} {Bus:004 Device:001 VendorID:1d6b ProductID:0003 Name:Linux Foundation 3.0 root hub}] NetworkShares:[] Network:{Interfaces:[{Name:eno1 Type:ethernet MAC:18:c0:4d:b5:65:74 IP:10.0.1.109 SpeedMbps:0xc0004305c8 Driver:r8169 SSID: WakeOnLAN:false} {Name:wlxe84e06a6c1fc Type:wifi MAC:ea:49:66:6c:18:ca IP: SpeedMbps:<nil> Driver:rtl8xxxu SSID: WakeOnLAN:false}]} Motherboard:{Vendor:Gigabyte Technology Co., Ltd. Model:B450 AORUS ELITE BIOSVendor:American Megatrends International, LLC. BIOSVersion:F65e BIOSDate:09/20/2023} OS:{Name:Debian GNU/Linux Version:13 (trixie) KernelVersion:6.12.57+deb13-amd64 Architecture:x86_64 SessionType: DisplayServer: ScreenResolution:5560 x 1920 LastBootTime:démarrage système 2026-01-11 09:11 UptimeSeconds:45297.12 BatteryPercentage:<nil> BatteryStatus: BatteryHealth: Hostname:aorus VirtualizationType:kvm-host DesktopEnvironment:GNOME} Sensors:{CPUTempC:<nil> DiskTempsC:map[nvme-pci-0100:Composite:33.85 nvme-pci-0700:Composite:31.85] Sensors:[{Chip:k10temp-pci-00c3 Name:Tctl Type:temperature Value:40 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tccd1 Type:temperature Value:39.75 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tccd2 Type:temperature Value:31.75 Unit:°C Alarm:false} {Chip:nvme-pci-0100 Name:Composite Type:temperature Value:33.85 Unit:°C Alarm:false} {Chip:nvme-pci-0700 Name:Composite Type:temperature Value:31.85 Unit:°C Alarm:false} {Chip:acpitz-acpi-0 Name:temp1 Type:temperature Value:16.8 Unit:°C Alarm:false}]} Audio:{Hardware:{PCIAudioDevices:[08:00.1 Audio device: NVIDIA Corporation GA106 High Definition Audio Controller (rev a1) 0a:00.4 Audio device: Advanced Micro Devices, Inc. [AMD] Starship/Matisse HD Audio Controller] AlsaPlayback:**** Liste des périphériques matériels PLAYBACK ****
carte 0 : NVidia [HDA NVidia], périphérique 3 : HDMI 0 [LG ULTRAWIDE]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 7 : HDMI 1 [K243Y]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 8 : HDMI 2 [HDMI 2]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 9 : HDMI 3 [HDMI 3]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]
Sous-périphériques : 0/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 1 : ALC892 Digital [ALC892 Digital]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
AlsaCapture:**** Liste des périphériques matériels CAPTURE ****
carte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 2 : ALC892 Alt Analog [ALC892 Alt Analog]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
PCMDevices:[null Discard all samples (playback) or generate zero samples (capture) pipewire PipeWire Sound Server default Default ALSA Output (currently PipeWire Media Server) hw:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Direct hardware device without any conversions hw:CARD=NVidia,DEV=7 HDA NVidia, K243Y Direct hardware device without any conversions hw:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Direct hardware device without any conversions hw:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Direct hardware device without any conversions plughw:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Hardware device with all software conversions plughw:CARD=NVidia,DEV=7 HDA NVidia, K243Y Hardware device with all software conversions plughw:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Hardware device with all software conversions plughw:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Hardware device with all software conversions hdmi:CARD=NVidia,DEV=0 HDA NVidia, LG ULTRAWIDE HDMI Audio Output hdmi:CARD=NVidia,DEV=1 HDA NVidia, K243Y HDMI Audio Output hdmi:CARD=NVidia,DEV=2 HDA NVidia, HDMI 2 HDMI Audio Output hdmi:CARD=NVidia,DEV=3 HDA NVidia, HDMI 3 HDMI Audio Output dmix:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Direct sample mixing device dmix:CARD=NVidia,DEV=7 HDA NVidia, K243Y Direct sample mixing device dmix:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Direct sample mixing device dmix:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Direct sample mixing device hw:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Direct hardware device without any conversions hw:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Direct hardware device without any conversions plughw:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Hardware device with all software conversions plughw:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Hardware device with all software conversions sysdefault:CARD=Generic HD-Audio Generic, ALC892 Analog Default Audio Device front:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Front output / input surround21:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 2.1 Surround output to Front and Subwoofer speakers surround40:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 4.0 Surround output to Front and Rear speakers surround41:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 4.1 Surround output to Front, Rear and Subwoofer speakers surround50:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 5.0 Surround output to Front, Center and Rear speakers surround51:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 5.1 Surround output to Front, Center, Rear and Subwoofer speakers surround71:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 7.1 Surround output to Front, Center, Side, Rear and Woofer speakers iec958:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Digital IEC958 (S/PDIF) Digital Audio Output dmix:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Direct sample mixing device dmix:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Direct sample mixing device]} Software:{Backend: ServerName: ServerVersion: DefaultSink:<nil> DefaultSource:<nil> Sinks:[] Sources:[]}} RawInfo:map[dmidecode:# dmidecode 3.6
Getting SMBIOS data from sysfs.
SMBIOS 3.3.0 present.
Handle 0x0000, DMI type 0, 26 bytes
BIOS Information
Vendor: American Megatrends International, LLC.
Version: F65e
Release Date: 09/20/2023
Address: 0xF0000
Runtime Size: 64 kB
ROM Size: 16 MB
Characteristics:
PCI is supported
BIOS is upgradeable
BIOS shadowing is allowed
Boot from CD is supported
Selectable boot is supported
BIOS ROM is socketed
EDD is supported
Japanese floppy for NEC 9800 1.2 MB is supported (int 13h)
Japanese floppy for Toshiba 1.2 MB is supported (int 13h)
5.25"/360 kB floppy services are supported (int 13h)
5.25"/1.2 MB floppy services are supported (int 13h)
3.5"/720 kB floppy services are supported (int 13h)
3.5"/2.88 MB floppy services are supported (int 13h)
Print screen service is supported (int 5h)
Serial services are supported (int 14h)
Printer services are supported (int 17h)
CGA/mono video services are supported (int 10h)
USB legacy is supported
BIOS boot specification is supported
Targeted content distribution is supported
UEFI is supported
BIOS Revision: 5.17
Handle 0x0001, DMI type 1, 27 bytes
System Information
Manufacturer: Gigabyte Technology Co., Ltd.
Product Name: B450 AORUS ELITE
Version: Default string
Serial Number: Default string
UUID: 03c00218-044d-05b5-6506-740700080009
Wake-up Type: Power Switch
SKU Number: Default string
Family: B450 MB
Handle 0x0002, DMI type 2, 15 bytes
Base Board Information
Manufacturer: Gigabyte Technology Co., Ltd.
Product Name: B450 AORUS ELITE
Version: Default string
Serial Number: Default string
Asset Tag: Default string
Features:
Board is a hosting board
Board is replaceable
Location In Chassis: Default string
Chassis Handle: 0x0003
Type: Motherboard
Contained Object Handles: 0
Handle 0x000B, DMI type 16, 23 bytes
Physical Memory Array
Location: System Board Or Motherboard
Use: System Memory
Error Correction Type: None
Maximum Capacity: 128 GB
Error Information Handle: 0x000A
Number Of Devices: 4
Handle 0x0013, DMI type 17, 92 bytes
Memory Device
Array Handle: 0x000B
Error Information Handle: 0x0012
Total Width: 64 bits
Data Width: 64 bits
Size: 16 GB
Form Factor: DIMM
Set: None
Locator: DIMM 0
Bank Locator: P0 CHANNEL A
Type: DDR4
Type Detail: Synchronous Unbuffered (Unregistered)
Speed: 3200 MT/s
Manufacturer: Unknown
Serial Number: 00000000
Asset Tag: Not Specified
Part Number: CMW32GX4M2E3200C16
Rank: 2
Configured Memory Speed: 3200 MT/s
Minimum Voltage: Unknown
Maximum Voltage: Unknown
Configured Voltage: 1.2 V
Memory Technology: DRAM
Memory Operating Mode Capability: Volatile memory
Firmware Version: Unknown
Module Manufacturer ID: Bank 3, Hex 0x9E
Module Product ID: Unknown
Memory Subsystem Controller Manufacturer ID: Unknown
Memory Subsystem Controller Product ID: Unknown
Non-Volatile Size: None
Volatile Size: 16 GB
Cache Size: None
Logical Size: None
Handle 0x0016, DMI type 17, 92 bytes
Memory Device
Array Handle: 0x000B
Error Information Handle: 0x0015
Total Width: 64 bits
Data Width: 64 bits
Size: 8 GB
Form Factor: DIMM
Set: None
Locator: DIMM 1
Bank Locator: P0 CHANNEL A
Type: DDR4
Type Detail: Synchronous Unbuffered (Unregistered)
Speed: 3200 MT/s
Manufacturer: Unknown
Serial Number: E3C4408B
Asset Tag: Not Specified
Part Number: BL8G32C16U4BL.M8FE
Rank: 1
Configured Memory Speed: 3200 MT/s
Minimum Voltage: 1.2 V
Maximum Voltage: 1.2 V
Configured Voltage: 1.2 V
Memory Technology: DRAM
Memory Operating Mode Capability: Volatile memory
Firmware Version: Unknown
Module Manufacturer ID: Bank 6, Hex 0x9B
Module Product ID: Unknown
Memory Subsystem Controller Manufacturer ID: Unknown
Memory Subsystem Controller Product ID: Unknown
Non-Volatile Size: None
Volatile Size: 8 GB
Cache Size: None
Logical Size: None
Handle 0x0019, DMI type 17, 92 bytes
Memory Device
Array Handle: 0x000B
Error Information Handle: 0x0018
Total Width: 64 bits
Data Width: 64 bits
Size: 16 GB
Form Factor: DIMM
Set: None
Locator: DIMM 0
Bank Locator: P0 CHANNEL B
Type: DDR4
Type Detail: Synchronous Unbuffered (Unregistered)
Speed: 3200 MT/s
Manufacturer: Unknown
Serial Number: 00000000
Asset Tag: Not Specified
Part Number: CMW32GX4M2E3200C16
Rank: 2
Configured Memory Speed: 3200 MT/s
Minimum Voltage: Unknown
Maximum Voltage: Unknown
Configured Voltage: 1.2 V
Memory Technology: DRAM
Memory Operating Mode Capability: Volatile memory
Firmware Version: Unknown
Module Manufacturer ID: Bank 3, Hex 0x9E
Module Product ID: Unknown
Memory Subsystem Controller Manufacturer ID: Unknown
Memory Subsystem Controller Product ID: Unknown
Non-Volatile Size: None
Volatile Size: 16 GB
Cache Size: None
Logical Size: None
Handle 0x001C, DMI type 17, 92 bytes
Memory Device
Array Handle: 0x000B
Error Information Handle: 0x001B
Total Width: 64 bits
Data Width: 64 bits
Size: 8 GB
Form Factor: DIMM
Set: None
Locator: DIMM 1
Bank Locator: P0 CHANNEL B
Type: DDR4
Type Detail: Synchronous Unbuffered (Unregistered)
Speed: 3200 MT/s
Manufacturer: Unknown
Serial Number: E3C44087
Asset Tag: Not Specified
Part Number: BL8G32C16U4BL.M8FE
Rank: 1
Configured Memory Speed: 3200 MT/s
Minimum Voltage: 1.2 V
Maximum Voltage: 1.2 V
Configured Voltage: 1.2 V
Memory Technology: DRAM
Memory Operating Mode Capability: Volatile memory
Firmware Version: Unknown
Module Manufacturer ID: Bank 6, Hex 0x9B
Module Product ID: Unknown
Memory Subsystem Controller Manufacturer ID: Unknown
Memory Subsystem Controller Product ID: Unknown
Non-Volatile Size: None
Volatile Size: 8 GB
Cache Size: None
Logical Size: None
lsblk:NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS
loop0 7:0 0 118,5M 1 loop /snap/iptvnator/92
loop1 7:1 0 48,1M 1 loop /snap/snapd/25935
loop2 7:2 0 50,9M 1 loop /snap/snapd/25577
loop3 7:3 0 4K 1 loop /snap/bare/5
loop4 7:4 0 91,7M 1 loop /snap/gtk-common-themes/1535
loop5 7:5 0 55,5M 1 loop /snap/core18/2976
loop6 7:6 0 164,8M 1 loop /snap/gnome-3-28-1804/198
loop7 7:7 0 0B 0 loop
sda 8:0 0 447,1G 0 disk
└─sda1 8:1 0 447,1G 0 part
sdb 8:16 1 0B 0 disk
sdc 8:32 1 0B 0 disk
sdd 8:48 1 0B 0 disk
sde 8:64 1 0B 0 disk
nvme0n1 259:0 0 465,8G 0 disk
├─nvme0n1p1 259:1 0 976M 0 part /boot/efi
├─nvme0n1p2 259:2 0 440,8G 0 part /
└─nvme0n1p3 259:3 0 24G 0 part [SWAP]
nvme1n1 259:4 0 465,8G 0 disk
├─nvme1n1p1 259:5 0 50M 0 part
├─nvme1n1p2 259:6 0 464,3G 0 part
├─nvme1n1p3 259:7 0 808M 0 part
├─nvme1n1p4 259:8 0 100M 0 part
└─nvme1n1p5 259:9 0 522M 0 part
lscpu:Architecture : x86_64
Mode(s) opératoire(s) des processeurs : 32-bit, 64-bit
Tailles des adresses: 48 bits physical, 48 bits virtual
Boutisme : Little Endian
Processeur(s) : 24
Liste de processeur(s) en ligne : 0-23
Identifiant constructeur : AuthenticAMD
Nom de modèle : AMD Ryzen 9 5900X 12-Core Processor
Famille de processeur : 25
Modèle : 33
Thread(s) par cœur : 2
Cœur(s) par socket : 12
Socket(s) : 1
Révision : 2
Accroissement de fréquence : activé
multiplication des MHz du/des CPU(s) : 78%
Vitesse maximale du processeur en MHz : 4951,0000
Vitesse minimale du processeur en MHz : 550,0000
BogoMIPS : 7399,98
Drapeaux : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local user_shstk clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm debug_swap
Virtualisation : AMD-V
Cache L1d : 384 KiB (12 instances)
Cache L1i : 384 KiB (12 instances)
Cache L2 : 6 MiB (12 instances)
Cache L3 : 64 MiB (2 instances)
Nœud(s) NUMA : 1
Nœud NUMA 0 de processeur(s) : 0-23
Vulnérabilité Gather data sampling : Not affected
Vulnérabilité Indirect target selection : Not affected
Vulnérabilité Itlb multihit : Not affected
Vulnérabilité L1tf : Not affected
Vulnérabilité Mds : Not affected
Vulnérabilité Meltdown : Not affected
Vulnérabilité Mmio stale data : Not affected
Vulnérabilité Reg file data sampling : Not affected
Vulnérabilité Retbleed : Not affected
Vulnérabilité Spec rstack overflow : Mitigation; Safe RET
Vulnérabilité Spec store bypass : Mitigation; Speculative Store Bypass disabled via prctl
Vulnérabilité Spectre v1 : Mitigation; usercopy/swapgs barriers and __user pointer sanitization
Vulnérabilité Spectre v2 : Mitigation; Retpolines; IBPB conditional; IBRS_FW; STIBP always-on; RSB filling; PBRSB-eIBRS Not affected; BHI Not affected
Vulnérabilité Srbds : Not affected
Vulnérabilité Tsa : Vulnerable: Clear CPU buffers attempted, no microcode
Vulnérabilité Tsx async abort : Not affected
Vulnérabilité Vmscape : Mitigation; IBPB before exit to userspace
]}
[DEBUG] [3/6] Benchmark CPU démarré
[DEBUG] Exec: sysbench [cpu --threads=1 --time=10 run]
[DEBUG] Exec: nproc []
[DEBUG] Exec: sysbench [cpu --threads=24 --time=10 run]
[DEBUG] [3/6] Résultat CPU: {EventsPerSec:37325.17 EventsPerSecSingle:5594.45 EventsPerSecMulti:69055.89 DurationSec:20.000500000000002 Score:37325.17 ScoreSingle:5594.45 ScoreMulti:69055.89}
[DEBUG] [3/6] Benchmark mémoire démarré
[DEBUG] Exec: sysbench [memory --memory-block-size=1K --memory-total-size=1G run]
[DEBUG] [3/6] Résultat mémoire: {Throughput:8659.01 Score:8659.01}
[DEBUG] [3/6] Benchmark disque démarré
[DEBUG] [3/6] Bench disque cible : /var/tmp/bench-client (mount=/ fstype=ext4 source=/dev/nvme0n1p2)
[DEBUG] [3/6] Bench disque direct sur /dev/nvme0n1p2 (mnt=/ fs=ext4)
[DEBUG] [3/6] Bench direct : écriture+lecture /var/tmp/bench-client/direct-500mb.bin (500 MB)
[DEBUG] [3/6] Bench direct : écriture+lecture /var/tmp/bench-client/direct-1gb.bin (1024 MB)
[DEBUG] [3/6] Bench direct chunk 1/50 (/var/tmp/bench-client/direct-chunk-01.bin)
[DEBUG] [3/6] Bench direct chunk 2/50 (/var/tmp/bench-client/direct-chunk-02.bin)
[DEBUG] [3/6] Bench direct chunk 3/50 (/var/tmp/bench-client/direct-chunk-03.bin)
[DEBUG] [3/6] Bench direct chunk 4/50 (/var/tmp/bench-client/direct-chunk-04.bin)
[DEBUG] [3/6] Bench direct chunk 5/50 (/var/tmp/bench-client/direct-chunk-05.bin)
[DEBUG] [3/6] Bench direct chunk 6/50 (/var/tmp/bench-client/direct-chunk-06.bin)
[DEBUG] [3/6] Bench direct chunk 7/50 (/var/tmp/bench-client/direct-chunk-07.bin)
[DEBUG] [3/6] Bench direct chunk 8/50 (/var/tmp/bench-client/direct-chunk-08.bin)
[DEBUG] [3/6] Bench direct chunk 9/50 (/var/tmp/bench-client/direct-chunk-09.bin)
[DEBUG] [3/6] Bench direct chunk 10/50 (/var/tmp/bench-client/direct-chunk-10.bin)
[DEBUG] [3/6] Bench direct chunk 11/50 (/var/tmp/bench-client/direct-chunk-11.bin)
[DEBUG] [3/6] Bench direct chunk 12/50 (/var/tmp/bench-client/direct-chunk-12.bin)
[DEBUG] [3/6] Bench direct chunk 13/50 (/var/tmp/bench-client/direct-chunk-13.bin)
[DEBUG] [3/6] Bench direct chunk 14/50 (/var/tmp/bench-client/direct-chunk-14.bin)
[DEBUG] [3/6] Bench direct chunk 15/50 (/var/tmp/bench-client/direct-chunk-15.bin)
[DEBUG] [3/6] Bench direct chunk 16/50 (/var/tmp/bench-client/direct-chunk-16.bin)
[DEBUG] [3/6] Bench direct chunk 17/50 (/var/tmp/bench-client/direct-chunk-17.bin)
[DEBUG] [3/6] Bench direct chunk 18/50 (/var/tmp/bench-client/direct-chunk-18.bin)
[DEBUG] [3/6] Bench direct chunk 19/50 (/var/tmp/bench-client/direct-chunk-19.bin)
[DEBUG] [3/6] Bench direct chunk 20/50 (/var/tmp/bench-client/direct-chunk-20.bin)
[DEBUG] [3/6] Bench direct chunk 21/50 (/var/tmp/bench-client/direct-chunk-21.bin)
[DEBUG] [3/6] Bench direct chunk 22/50 (/var/tmp/bench-client/direct-chunk-22.bin)
[DEBUG] [3/6] Bench direct chunk 23/50 (/var/tmp/bench-client/direct-chunk-23.bin)
[DEBUG] [3/6] Bench direct chunk 24/50 (/var/tmp/bench-client/direct-chunk-24.bin)
[DEBUG] [3/6] Bench direct chunk 25/50 (/var/tmp/bench-client/direct-chunk-25.bin)
[DEBUG] [3/6] Bench direct chunk 26/50 (/var/tmp/bench-client/direct-chunk-26.bin)
[DEBUG] [3/6] Bench direct chunk 27/50 (/var/tmp/bench-client/direct-chunk-27.bin)
[DEBUG] [3/6] Bench direct chunk 28/50 (/var/tmp/bench-client/direct-chunk-28.bin)
[DEBUG] [3/6] Bench direct chunk 29/50 (/var/tmp/bench-client/direct-chunk-29.bin)
[DEBUG] [3/6] Bench direct chunk 30/50 (/var/tmp/bench-client/direct-chunk-30.bin)
[DEBUG] [3/6] Bench direct chunk 31/50 (/var/tmp/bench-client/direct-chunk-31.bin)
[DEBUG] [3/6] Bench direct chunk 32/50 (/var/tmp/bench-client/direct-chunk-32.bin)
[DEBUG] [3/6] Bench direct chunk 33/50 (/var/tmp/bench-client/direct-chunk-33.bin)
[DEBUG] [3/6] Bench direct chunk 34/50 (/var/tmp/bench-client/direct-chunk-34.bin)
[DEBUG] [3/6] Bench direct chunk 35/50 (/var/tmp/bench-client/direct-chunk-35.bin)
[DEBUG] [3/6] Bench direct chunk 36/50 (/var/tmp/bench-client/direct-chunk-36.bin)
[DEBUG] [3/6] Bench direct chunk 37/50 (/var/tmp/bench-client/direct-chunk-37.bin)
[DEBUG] [3/6] Bench direct chunk 38/50 (/var/tmp/bench-client/direct-chunk-38.bin)
[DEBUG] [3/6] Bench direct chunk 39/50 (/var/tmp/bench-client/direct-chunk-39.bin)
[DEBUG] [3/6] Bench direct chunk 40/50 (/var/tmp/bench-client/direct-chunk-40.bin)
[DEBUG] [3/6] Bench direct chunk 41/50 (/var/tmp/bench-client/direct-chunk-41.bin)
[DEBUG] [3/6] Bench direct chunk 42/50 (/var/tmp/bench-client/direct-chunk-42.bin)
[DEBUG] [3/6] Bench direct chunk 43/50 (/var/tmp/bench-client/direct-chunk-43.bin)
[DEBUG] [3/6] Bench direct chunk 44/50 (/var/tmp/bench-client/direct-chunk-44.bin)
[DEBUG] [3/6] Bench direct chunk 45/50 (/var/tmp/bench-client/direct-chunk-45.bin)
[DEBUG] [3/6] Bench direct chunk 46/50 (/var/tmp/bench-client/direct-chunk-46.bin)
[DEBUG] [3/6] Bench direct chunk 47/50 (/var/tmp/bench-client/direct-chunk-47.bin)
[DEBUG] [3/6] Bench direct chunk 48/50 (/var/tmp/bench-client/direct-chunk-48.bin)
[DEBUG] [3/6] Bench direct chunk 49/50 (/var/tmp/bench-client/direct-chunk-49.bin)
[DEBUG] [3/6] Bench direct chunk 50/50 (/var/tmp/bench-client/direct-chunk-50.bin)
[DEBUG] [3/6] Bench disque direct résumé -> write=950.33 MB/s read=13437.98 MB/s
[DEBUG] Exec: fio [--name=bench --ioengine=libaio --rw=randrw --bs=4k --direct=1 --size=500M --numjobs=1 --runtime=30 --time_based --output-format=json --filename=/var/tmp/bench-client/bench-1768164431469543795.fio]
[DEBUG] [3/6] Bench disque final -> read=13437.98 MB/s write=950.33 MB/s score=7194.16
[DEBUG] [3/6] Résultat disque: {ReadMBs:13437.980310148756 WriteMBs:950.3320739207459 IOPSRead:10311.322956 IOPSWrite:10305.189827 LatencyMs:0.074536597045 Score:7194.156192034751}
[DEBUG] [3/6] Benchmark réseau démarré
[DEBUG] Exec: iperf3 [-c 10.0.0.50 -p 5201 -J -t 10]
[DEBUG] Exec: ping [-c 1 -W 1 10.0.0.50]
[DEBUG] [3/6] Résultat réseau: {Upload:941.2196123858542 Download:938.9757868072979 PingMs:0.292 JitterMs:<nil> PacketLossPct:<nil> Score:940.0976995965761}
[DEBUG] Résultats des benchmarks : {CPU:{EventsPerSec:37325.17 EventsPerSecSingle:5594.45 EventsPerSecMulti:69055.89 DurationSec:20.000500000000002 Score:37325.17 ScoreSingle:5594.45 ScoreMulti:69055.89} Memory:{Throughput:8659.01 Score:8659.01} Disk:{ReadMBs:13437.980310148756 WriteMBs:950.3320739207459 IOPSRead:10311.322956 IOPSWrite:10305.189827 LatencyMs:0.074536597045 Score:7194.156192034751} Network:{Upload:941.2196123858542 Download:938.9757868072979 PingMs:0.292 JitterMs:<nil> PacketLossPct:<nil> Score:940.0976995965761} GPU:{GLMark2Score:<nil> Score:<nil>} GlobalScore:0}
[DEBUG] Poids benchmarks : map[cpu:0.4 disk:0.2 gpu:0.1 memory:0.2 network:0.1]
[DEBUG] Scores normalisés : cpu=1866.26 mem=86.59 disk=719.42 net=94.01
[DEBUG] Score global calculé : 91710.55
[DEBUG] Payload JSON (49208 octets) : {
"device_identifier": "aorus",
"bench_script_version": "1.6.6",
"bench_client_version": "1.0.1",
"hardware": {
"cpu": {
"vendor": "AuthenticAMD",
"model": "AMD Ryzen 9 5900X 12-Core Processor",
"cores": 12,
"threads": 24,
"base_freq_ghz": 4.951,
"max_freq_ghz": 4.951,
"cache_l1_kb": 64,
"cache_l2_kb": 512,
"cache_l3_kb": 32768,
"flags": [
"fpu",
"vme",
"de",
"pse",
"tsc",
"msr",
"pae",
"mce",
"cx8",
"apic",
"sep",
"mtrr",
"pge",
"mca",
"cmov",
"pat",
"pse36",
"clflush",
"mmx",
"fxsr",
"sse",
"sse2",
"ht",
"syscall",
"nx",
"mmxext",
"fxsr_opt",
"pdpe1gb",
"rdtscp",
"lm",
"constant_tsc",
"rep_good",
"nopl",
"xtopology",
"nonstop_tsc",
"cpuid",
"extd_apicid",
"aperfmperf",
"rapl",
"pni",
"pclmulqdq",
"monitor",
"ssse3",
"fma",
"cx16",
"sse4_1",
"sse4_2",
"x2apic",
"movbe",
"popcnt",
"aes",
"xsave",
"avx",
"f16c",
"rdrand",
"lahf_lm",
"cmp_legacy",
"svm",
"extapic",
"cr8_legacy",
"abm",
"sse4a",
"misalignsse",
"3dnowprefetch",
"osvw",
"ibs",
"skinit",
"wdt",
"tce",
"topoext",
"perfctr_core",
"perfctr_nb",
"bpext",
"perfctr_llc",
"mwaitx",
"cpb",
"cat_l3",
"cdp_l3",
"hw_pstate",
"ssbd",
"mba",
"ibrs",
"ibpb",
"stibp",
"vmmcall",
"fsgsbase",
"bmi1",
"avx2",
"smep",
"bmi2",
"erms",
"invpcid",
"cqm",
"rdt_a",
"rdseed",
"adx",
"smap",
"clflushopt",
"clwb",
"sha_ni",
"xsaveopt",
"xsavec",
"xgetbv1",
"xsaves",
"cqm_llc",
"cqm_occup_llc",
"cqm_mbm_total",
"cqm_mbm_local",
"user_shstk",
"clzero",
"irperf",
"xsaveerptr",
"rdpru",
"wbnoinvd",
"arat",
"npt",
"lbrv",
"svm_lock",
"nrip_save",
"tsc_scale",
"vmcb_clean",
"flushbyasid",
"decodeassists",
"pausefilter",
"pfthreshold",
"avic",
"v_vmsave_vmload",
"vgif",
"v_spec_ctrl",
"umip",
"pku",
"ospke",
"vaes",
"vpclmulqdq",
"rdpid",
"overflow_recov",
"succor",
"smca",
"fsrm",
"debug_swap"
],
"microarchitecture": "Zen",
"tdp_w": null
},
"ram": {
"total_mb": 48096,
"used_mb": 17189,
"free_mb": 30907,
"shared_mb": 960,
"slots_total": 10,
"slots_used": 4,
"max_capacity_mb": 48096,
"ecc": false,
"layout": [
{
"slot": "DIMM 0",
"size_mb": 16384,
"type": "DDR4",
"speed_mhz": 3200,
"configured_speed_mhz": 3200,
"form_factor": "DIMM",
"type_detail": "Synchronous Unbuffered (Unregistered)",
"rank": "2",
"manufacturer": "Unknown",
"part_number": "CMW32GX4M2E3200C16 "
},
{
"slot": "DIMM 1",
"size_mb": 8192,
"type": "DDR4",
"speed_mhz": 3200,
"configured_speed_mhz": 3200,
"form_factor": "DIMM",
"type_detail": "Synchronous Unbuffered (Unregistered)",
"rank": "1",
"manufacturer": "Unknown",
"part_number": "BL8G32C16U4BL.M8FE"
},
{
"slot": "DIMM 0",
"size_mb": 16384,
"type": "DDR4",
"speed_mhz": 3200,
"configured_speed_mhz": 3200,
"form_factor": "DIMM",
"type_detail": "Synchronous Unbuffered (Unregistered)",
"rank": "2",
"manufacturer": "Unknown",
"part_number": "CMW32GX4M2E3200C16 "
},
{
"slot": "DIMM 1",
"size_mb": 8192,
"type": "DDR4",
"speed_mhz": 3200,
"configured_speed_mhz": 3200,
"form_factor": "DIMM",
"type_detail": "Synchronous Unbuffered (Unregistered)",
"rank": "1",
"manufacturer": "Unknown",
"part_number": "BL8G32C16U4BL.M8FE"
}
]
},
"gpu": {
"vendor": "NVIDIA",
"model": "NVIDIA GeForce RTX 3060",
"driver_version": "550.163.01",
"memory_dedicated_mb": 12288,
"memory_shared_mb": null,
"api_support": null
},
"storage": {
"devices": [
{
"name": "/dev/nvme0n1",
"type": "ssd",
"interface": "nvme",
"capacity_gb": 465.7617416381836,
"vendor": "CT500P2SSD8",
"model": "CT500P2SSD8",
"serial": "2138E5D60DD8",
"smart_health": "PASSED",
"temperature_c": 34
},
{
"name": "/dev/nvme1n1",
"type": "",
"interface": "nvme",
"capacity_gb": 465.7617416381836,
"vendor": "CT500P2SSD8",
"model": "CT500P2SSD8",
"serial": "2108E4FD258D",
"smart_health": "PASSED",
"temperature_c": 32
},
{
"name": "/dev/sda",
"type": "",
"interface": "sata",
"capacity_gb": 447.13167572021484,
"vendor": "ATA ",
"model": "KINGSTON SUV500480G",
"serial": "50026B768226A365",
"smart_health": "PASSED",
"temperature_c": 25
},
{
"name": "/dev/sdb",
"type": "",
"interface": "usb",
"capacity_gb": 0,
"vendor": "Generic-",
"model": "Compact Flash",
"serial": "058F63626479",
"smart_health": "UNAVAILABLE",
"temperature_c": 0
},
{
"name": "/dev/sdc",
"type": "",
"interface": "usb",
"capacity_gb": 0,
"vendor": "Generic-",
"model": "SD/MMC",
"serial": "058F63626479",
"smart_health": "UNAVAILABLE",
"temperature_c": 0
},
{
"name": "/dev/sdd",
"type": "",
"interface": "usb",
"capacity_gb": 0,
"vendor": "Generic-",
"model": "MS/MS-PRO",
"serial": "058F63626479",
"smart_health": "UNAVAILABLE",
"temperature_c": 0
},
{
"name": "/dev/sde",
"type": "",
"interface": "usb",
"capacity_gb": 0,
"vendor": "Generic-",
"model": "xD-Picture",
"serial": "058F63626479",
"smart_health": "UNAVAILABLE",
"temperature_c": 0
}
],
"partitions": [
{
"name": "/dev/nvme0n1p2",
"mount_point": "/",
"fs_type": "ext4",
"total_gb": 432.80120849609375,
"used_gb": 349.3389587402344,
"free_gb": 61.407073974609375
},
{
"name": "/dev/nvme0n1p1",
"mount_point": "/boot/efi",
"fs_type": "vfat",
"total_gb": 0.9512481689453125,
"used_gb": 0.008571624755859375,
"free_gb": 0.9426765441894531
}
]
},
"pci_devices": [
{
"slot": "00:00.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse Root Complex"
},
{
"slot": "00:00.2",
"class": "IOMMU",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse IOMMU"
},
{
"slot": "00:01.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:01.1",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse GPP Bridge"
},
{
"slot": "00:01.3",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse GPP Bridge"
},
{
"slot": "00:02.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:03.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:03.1",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse GPP Bridge"
},
{
"slot": "00:04.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:05.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:07.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:07.1",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]"
},
{
"slot": "00:08.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:08.1",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]"
},
{
"slot": "00:14.0",
"class": "SMBus",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "FCH SMBus Controller"
},
{
"slot": "00:14.3",
"class": "ISA bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "FCH LPC Bridge"
},
{
"slot": "00:18.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 0"
},
{
"slot": "00:18.1",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 1"
},
{
"slot": "00:18.2",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 2"
},
{
"slot": "00:18.3",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 3"
},
{
"slot": "00:18.4",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 4"
},
{
"slot": "00:18.5",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 5"
},
{
"slot": "00:18.6",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 6"
},
{
"slot": "00:18.7",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 7"
},
{
"slot": "01:00.0",
"class": "Non-Volatile memory controller",
"vendor": "Micron/Crucial Technology",
"device": "P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)"
},
{
"slot": "02:00.0",
"class": "USB controller",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset USB 3.1 xHCI Compliant Host Controller"
},
{
"slot": "02:00.1",
"class": "SATA controller",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset SATA Controller"
},
{
"slot": "02:00.2",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset PCIe Bridge"
},
{
"slot": "03:00.0",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset PCIe Port"
},
{
"slot": "03:01.0",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset PCIe Port"
},
{
"slot": "03:04.0",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset PCIe Port"
},
{
"slot": "03:08.0",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset PCIe Port"
},
{
"slot": "04:00.0",
"class": "Ethernet controller",
"vendor": "Realtek Semiconductor Co., Ltd.",
"device": "RTL8111/8168/8211/8411 PCI Express Gigabit Ethernet Controller"
},
{
"slot": "07:00.0",
"class": "Non-Volatile memory controller",
"vendor": "Micron/Crucial Technology",
"device": "P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)"
},
{
"slot": "08:00.0",
"class": "VGA compatible controller",
"vendor": "NVIDIA Corporation",
"device": "GA106 [GeForce RTX 3060 Lite Hash Rate]"
},
{
"slot": "08:00.1",
"class": "Audio device",
"vendor": "NVIDIA Corporation",
"device": "GA106 High Definition Audio Controller"
},
{
"slot": "09:00.0",
"class": "Non-Essential Instrumentation [1300]",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Function"
},
{
"slot": "0a:00.0",
"class": "Non-Essential Instrumentation [1300]",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse Reserved SPP"
},
{
"slot": "0a:00.1",
"class": "Encryption controller",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse Cryptographic Coprocessor PSPCPP"
},
{
"slot": "0a:00.3",
"class": "USB controller",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse USB 3.0 Host Controller"
},
{
"slot": "0a:00.4",
"class": "Audio device",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse HD Audio Controller"
}
],
"usb_devices": [
{
"bus": "001",
"device": "001",
"vendor_id": "1d6b",
"product_id": "0002",
"name": "Linux Foundation 2.0 root hub"
},
{
"bus": "001",
"device": "002",
"vendor_id": "058f",
"product_id": "6362",
"name": "Alcor Micro Corp. Flash Card Reader/Writer"
},
{
"bus": "002",
"device": "001",
"vendor_id": "1d6b",
"product_id": "0003",
"name": "Linux Foundation 3.0 root hub"
},
{
"bus": "003",
"device": "001",
"vendor_id": "1d6b",
"product_id": "0002",
"name": "Linux Foundation 2.0 root hub"
},
{
"bus": "003",
"device": "003",
"vendor_id": "046d",
"product_id": "c52b",
"name": "Logitech, Inc. Unifying Receiver"
},
{
"bus": "003",
"device": "004",
"vendor_id": "0bda",
"product_id": "b711",
"name": "Realtek Semiconductor Corp. RTL8188GU 802.11n WLAN Adapter (After Modeswitch)"
},
{
"bus": "004",
"device": "001",
"vendor_id": "1d6b",
"product_id": "0003",
"name": "Linux Foundation 3.0 root hub"
}
],
"network_shares": [],
"network": {
"interfaces": [
{
"name": "eno1",
"type": "ethernet",
"mac": "18:c0:4d:b5:65:74",
"ip": "10.0.1.109",
"speed_mbps": 1000,
"driver": "r8169",
"ssid": "",
"wake_on_lan": false
},
{
"name": "wlxe84e06a6c1fc",
"type": "wifi",
"mac": "ea:49:66:6c:18:ca",
"ip": "",
"speed_mbps": null,
"driver": "rtl8xxxu",
"ssid": "",
"wake_on_lan": false
}
]
},
"motherboard": {
"vendor": "Gigabyte Technology Co., Ltd.",
"model": "B450 AORUS ELITE",
"bios_vendor": "American Megatrends International, LLC.",
"bios_version": "F65e",
"bios_date": "09/20/2023"
},
"os": {
"name": "Debian GNU/Linux",
"version": "13 (trixie)",
"kernel_version": "6.12.57+deb13-amd64",
"architecture": "x86_64",
"session_type": "",
"display_server": "",
"screen_resolution": "5560 x 1920",
"last_boot_time": "démarrage système 2026-01-11 09:11",
"uptime_seconds": 45297.12,
"battery_percentage": null,
"battery_status": "",
"battery_health": "",
"hostname": "aorus",
"virtualization_type": "kvm-host",
"desktop_environment": "GNOME"
},
"sensors": {
"cpu_temp_c": null,
"disk_temps_c": {
"nvme-pci-0100:Composite": 33.85,
"nvme-pci-0700:Composite": 31.85
},
"sensors": [
{
"chip": "k10temp-pci-00c3",
"name": "Tctl",
"type": "temperature",
"value": 40,
"unit": "°C",
"alarm": false
},
{
"chip": "k10temp-pci-00c3",
"name": "Tccd1",
"type": "temperature",
"value": 39.75,
"unit": "°C",
"alarm": false
},
{
"chip": "k10temp-pci-00c3",
"name": "Tccd2",
"type": "temperature",
"value": 31.75,
"unit": "°C",
"alarm": false
},
{
"chip": "nvme-pci-0100",
"name": "Composite",
"type": "temperature",
"value": 33.85,
"unit": "°C",
"alarm": false
},
{
"chip": "nvme-pci-0700",
"name": "Composite",
"type": "temperature",
"value": 31.85,
"unit": "°C",
"alarm": false
},
{
"chip": "acpitz-acpi-0",
"name": "temp1",
"type": "temperature",
"value": 16.8,
"unit": "°C",
"alarm": false
}
]
},
"audio": {
"hardware": {
"pci_audio_devices": [
"08:00.1 Audio device: NVIDIA Corporation GA106 High Definition Audio Controller (rev a1)",
"0a:00.4 Audio device: Advanced Micro Devices, Inc. [AMD] Starship/Matisse HD Audio Controller"
],
"alsa_playback": "**** Liste des périphériques matériels PLAYBACK ****\ncarte 0 : NVidia [HDA NVidia], périphérique 3 : HDMI 0 [LG ULTRAWIDE]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\ncarte 0 : NVidia [HDA NVidia], périphérique 7 : HDMI 1 [K243Y]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\ncarte 0 : NVidia [HDA NVidia], périphérique 8 : HDMI 2 [HDMI 2]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\ncarte 0 : NVidia [HDA NVidia], périphérique 9 : HDMI 3 [HDMI 3]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\ncarte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]\n Sous-périphériques : 0/1\n Sous-périphérique #0 : subdevice #0\ncarte 1 : Generic [HD-Audio Generic], périphérique 1 : ALC892 Digital [ALC892 Digital]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\n",
"alsa_capture": "**** Liste des périphériques matériels CAPTURE ****\ncarte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\ncarte 1 : Generic [HD-Audio Generic], périphérique 2 : ALC892 Alt Analog [ALC892 Alt Analog]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\n",
"pcm_devices": [
"null",
"Discard all samples (playback) or generate zero samples (capture)",
"pipewire",
"PipeWire Sound Server",
"default",
"Default ALSA Output (currently PipeWire Media Server)",
"hw:CARD=NVidia,DEV=3",
"HDA NVidia, LG ULTRAWIDE",
"Direct hardware device without any conversions",
"hw:CARD=NVidia,DEV=7",
"HDA NVidia, K243Y",
"Direct hardware device without any conversions",
"hw:CARD=NVidia,DEV=8",
"HDA NVidia, HDMI 2",
"Direct hardware device without any conversions",
"hw:CARD=NVidia,DEV=9",
"HDA NVidia, HDMI 3",
"Direct hardware device without any conversions",
"plughw:CARD=NVidia,DEV=3",
"HDA NVidia, LG ULTRAWIDE",
"Hardware device with all software conversions",
"plughw:CARD=NVidia,DEV=7",
"HDA NVidia, K243Y",
"Hardware device with all software conversions",
"plughw:CARD=NVidia,DEV=8",
"HDA NVidia, HDMI 2",
"Hardware device with all software conversions",
"plughw:CARD=NVidia,DEV=9",
"HDA NVidia, HDMI 3",
"Hardware device with all software conversions",
"hdmi:CARD=NVidia,DEV=0",
"HDA NVidia, LG ULTRAWIDE",
"HDMI Audio Output",
"hdmi:CARD=NVidia,DEV=1",
"HDA NVidia, K243Y",
"HDMI Audio Output",
"hdmi:CARD=NVidia,DEV=2",
"HDA NVidia, HDMI 2",
"HDMI Audio Output",
"hdmi:CARD=NVidia,DEV=3",
"HDA NVidia, HDMI 3",
"HDMI Audio Output",
"dmix:CARD=NVidia,DEV=3",
"HDA NVidia, LG ULTRAWIDE",
"Direct sample mixing device",
"dmix:CARD=NVidia,DEV=7",
"HDA NVidia, K243Y",
"Direct sample mixing device",
"dmix:CARD=NVidia,DEV=8",
"HDA NVidia, HDMI 2",
"Direct sample mixing device",
"dmix:CARD=NVidia,DEV=9",
"HDA NVidia, HDMI 3",
"Direct sample mixing device",
"hw:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"Direct hardware device without any conversions",
"hw:CARD=Generic,DEV=1",
"HD-Audio Generic, ALC892 Digital",
"Direct hardware device without any conversions",
"plughw:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"Hardware device with all software conversions",
"plughw:CARD=Generic,DEV=1",
"HD-Audio Generic, ALC892 Digital",
"Hardware device with all software conversions",
"sysdefault:CARD=Generic",
"HD-Audio Generic, ALC892 Analog",
"Default Audio Device",
"front:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"Front output / input",
"surround21:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"2.1 Surround output to Front and Subwoofer speakers",
"surround40:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"4.0 Surround output to Front and Rear speakers",
"surround41:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"4.1 Surround output to Front, Rear and Subwoofer speakers",
"surround50:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"5.0 Surround output to Front, Center and Rear speakers",
"surround51:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"5.1 Surround output to Front, Center, Rear and Subwoofer speakers",
"surround71:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"7.1 Surround output to Front, Center, Side, Rear and Woofer speakers",
"iec958:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Digital",
"IEC958 (S/PDIF) Digital Audio Output",
"dmix:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"Direct sample mixing device",
"dmix:CARD=Generic,DEV=1",
"HD-Audio Generic, ALC892 Digital",
"Direct sample mixing device"
]
},
"software": {
"backend": "",
"server_name": "",
"server_version": "",
"default_sink": null,
"default_source": null,
"sinks": null,
"sources": null
}
},
"raw_info": {
"debug": "active",
"dmidecode": "# dmidecode 3.6\nGetting SMBIOS data from sysfs.\nSMBIOS 3.3.0 present.\n\nHandle 0x0000, DMI type 0, 26 bytes\nBIOS Information\n\tVendor: American Megatrends International, LLC.\n\tVersion: F65e\n\tRelease Date: 09/20/2023\n\tAddress: 0xF0000\n\tRuntime Size: 64 kB\n\tROM Size: 16 MB\n\tCharacteristics:\n\t\tPCI is supported\n\t\tBIOS is upgradeable\n\t\tBIOS shadowing is allowed\n\t\tBoot from CD is supported\n\t\tSelectable boot is supported\n\t\tBIOS ROM is socketed\n\t\tEDD is supported\n\t\tJapanese floppy for NEC 9800 1.2 MB is supported (int 13h)\n\t\tJapanese floppy for Toshiba 1.2 MB is supported (int 13h)\n\t\t5.25\"/360 kB floppy services are supported (int 13h)\n\t\t5.25\"/1.2 MB floppy services are supported (int 13h)\n\t\t3.5\"/720 kB floppy services are supported (int 13h)\n\t\t3.5\"/2.88 MB floppy services are supported (int 13h)\n\t\tPrint screen service is supported (int 5h)\n\t\tSerial services are supported (int 14h)\n\t\tPrinter services are supported (int 17h)\n\t\tCGA/mono video services are supported (int 10h)\n\t\tUSB legacy is supported\n\t\tBIOS boot specification is supported\n\t\tTargeted content distribution is supported\n\t\tUEFI is supported\n\tBIOS Revision: 5.17\n\nHandle 0x0001, DMI type 1, 27 bytes\nSystem Information\n\tManufacturer: Gigabyte Technology Co., Ltd.\n\tProduct Name: B450 AORUS ELITE\n\tVersion: Default string\n\tSerial Number: Default string\n\tUUID: 03c00218-044d-05b5-6506-740700080009\n\tWake-up Type: Power Switch\n\tSKU Number: Default string\n\tFamily: B450 MB\n\nHandle 0x0002, DMI type 2, 15 bytes\nBase Board Information\n\tManufacturer: Gigabyte Technology Co., Ltd.\n\tProduct Name: B450 AORUS ELITE\n\tVersion: Default string\n\tSerial Number: Default string\n\tAsset Tag: Default string\n\tFeatures:\n\t\tBoard is a hosting board\n\t\tBoard is replaceable\n\tLocation In Chassis: Default string\n\tChassis Handle: 0x0003\n\tType: Motherboard\n\tContained Object Handles: 0\n\nHandle 0x000B, DMI type 16, 23 bytes\nPhysical Memory Array\n\tLocation: System Board Or Motherboard\n\tUse: System Memory\n\tError Correction Type: None\n\tMaximum Capacity: 128 GB\n\tError Information Handle: 0x000A\n\tNumber Of Devices: 4\n\nHandle 0x0013, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0012\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 16 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 0\n\tBank Locator: P0 CHANNEL A\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: 00000000\n\tAsset Tag: Not Specified\n\tPart Number: CMW32GX4M2E3200C16 \n\tRank: 2\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: Unknown\n\tMaximum Voltage: Unknown\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 3, Hex 0x9E\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 16 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x0016, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0015\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 8 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 1\n\tBank Locator: P0 CHANNEL A\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: E3C4408B\n\tAsset Tag: Not Specified\n\tPart Number: BL8G32C16U4BL.M8FE\n\tRank: 1\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: 1.2 V\n\tMaximum Voltage: 1.2 V\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 6, Hex 0x9B\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 8 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x0019, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0018\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 16 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 0\n\tBank Locator: P0 CHANNEL B\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: 00000000\n\tAsset Tag: Not Specified\n\tPart Number: CMW32GX4M2E3200C16 \n\tRank: 2\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: Unknown\n\tMaximum Voltage: Unknown\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 3, Hex 0x9E\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 16 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x001C, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x001B\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 8 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 1\n\tBank Locator: P0 CHANNEL B\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: E3C44087\n\tAsset Tag: Not Specified\n\tPart Number: BL8G32C16U4BL.M8FE\n\tRank: 1\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: 1.2 V\n\tMaximum Voltage: 1.2 V\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 6, Hex 0x9B\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 8 GB\n\tCache Size: None\n\tLogical Size: None\n\n",
"lsblk": "NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS\nloop0 7:0 0 118,5M 1 loop /snap/iptvnator/92\nloop1 7:1 0 48,1M 1 loop /snap/snapd/25935\nloop2 7:2 0 50,9M 1 loop /snap/snapd/25577\nloop3 7:3 0 4K 1 loop /snap/bare/5\nloop4 7:4 0 91,7M 1 loop /snap/gtk-common-themes/1535\nloop5 7:5 0 55,5M 1 loop /snap/core18/2976\nloop6 7:6 0 164,8M 1 loop /snap/gnome-3-28-1804/198\nloop7 7:7 0 0B 0 loop \nsda 8:0 0 447,1G 0 disk \n└─sda1 8:1 0 447,1G 0 part \nsdb 8:16 1 0B 0 disk \nsdc 8:32 1 0B 0 disk \nsdd 8:48 1 0B 0 disk \nsde 8:64 1 0B 0 disk \nnvme0n1 259:0 0 465,8G 0 disk \n├─nvme0n1p1 259:1 0 976M 0 part /boot/efi\n├─nvme0n1p2 259:2 0 440,8G 0 part /\n└─nvme0n1p3 259:3 0 24G 0 part [SWAP]\nnvme1n1 259:4 0 465,8G 0 disk \n├─nvme1n1p1 259:5 0 50M 0 part \n├─nvme1n1p2 259:6 0 464,3G 0 part \n├─nvme1n1p3 259:7 0 808M 0 part \n├─nvme1n1p4 259:8 0 100M 0 part \n└─nvme1n1p5 259:9 0 522M 0 part \n",
"lscpu": "Architecture : x86_64\nMode(s) opératoire(s) des processeurs : 32-bit, 64-bit\nTailles des adresses: 48 bits physical, 48 bits virtual\nBoutisme : Little Endian\nProcesseur(s) : 24\nListe de processeur(s) en ligne : 0-23\nIdentifiant constructeur : AuthenticAMD\nNom de modèle : AMD Ryzen 9 5900X 12-Core Processor\nFamille de processeur : 25\nModèle : 33\nThread(s) par cœur : 2\nCœur(s) par socket : 12\nSocket(s) : 1\nRévision : 2\nAccroissement de fréquence : activé\nmultiplication des MHz du/des CPU(s) : 78%\nVitesse maximale du processeur en MHz : 4951,0000\nVitesse minimale du processeur en MHz : 550,0000\nBogoMIPS : 7399,98\nDrapeaux : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local user_shstk clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm debug_swap\nVirtualisation : AMD-V\nCache L1d : 384 KiB (12 instances)\nCache L1i : 384 KiB (12 instances)\nCache L2 : 6 MiB (12 instances)\nCache L3 : 64 MiB (2 instances)\nNœud(s) NUMA : 1\nNœud NUMA 0 de processeur(s) : 0-23\nVulnérabilité Gather data sampling : Not affected\nVulnérabilité Indirect target selection : Not affected\nVulnérabilité Itlb multihit : Not affected\nVulnérabilité L1tf : Not affected\nVulnérabilité Mds : Not affected\nVulnérabilité Meltdown : Not affected\nVulnérabilité Mmio stale data : Not affected\nVulnérabilité Reg file data sampling : Not affected\nVulnérabilité Retbleed : Not affected\nVulnérabilité Spec rstack overflow : Mitigation; Safe RET\nVulnérabilité Spec store bypass : Mitigation; Speculative Store Bypass disabled via prctl\nVulnérabilité Spectre v1 : Mitigation; usercopy/swapgs barriers and __user pointer sanitization\nVulnérabilité Spectre v2 : Mitigation; Retpolines; IBPB conditional; IBRS_FW; STIBP always-on; RSB filling; PBRSB-eIBRS Not affected; BHI Not affected\nVulnérabilité Srbds : Not affected\nVulnérabilité Tsa : Vulnerable: Clear CPU buffers attempted, no microcode\nVulnérabilité Tsx async abort : Not affected\nVulnérabilité Vmscape : Mitigation; IBPB before exit to userspace\n"
}
},
"results": {
"cpu": {
"events_per_sec": 37325.17,
"events_per_sec_single": 5594.45,
"events_per_sec_multi": 69055.89,
"duration_s": 20.000500000000002,
"score": 37325.17,
"score_single": 5594.45,
"score_multi": 69055.89
},
"memory": {
"throughput_mib_s": 8659.01,
"score": 8659.01
},
"disk": {
"read_mb_s": 13437.980310148756,
"write_mb_s": 950.3320739207459,
"iops_read": 10311.322956,
"iops_write": 10305.189827,
"latency_ms": 0.074536597045,
"score": 7194.156192034751
},
"network": {
"upload_mbps": 941.2196123858542,
"download_mbps": 938.9757868072979,
"ping_ms": 0.292,
"jitter_ms": null,
"packet_loss_percent": null,
"score": 940.0976995965761
},
"gpu": {
"glmark2_score": null,
"score": null
},
"global_score": 91710.55208366609
},
"raw_info": {
"debug": "active",
"dmidecode": "# dmidecode 3.6\nGetting SMBIOS data from sysfs.\nSMBIOS 3.3.0 present.\n\nHandle 0x0000, DMI type 0, 26 bytes\nBIOS Information\n\tVendor: American Megatrends International, LLC.\n\tVersion: F65e\n\tRelease Date: 09/20/2023\n\tAddress: 0xF0000\n\tRuntime Size: 64 kB\n\tROM Size: 16 MB\n\tCharacteristics:\n\t\tPCI is supported\n\t\tBIOS is upgradeable\n\t\tBIOS shadowing is allowed\n\t\tBoot from CD is supported\n\t\tSelectable boot is supported\n\t\tBIOS ROM is socketed\n\t\tEDD is supported\n\t\tJapanese floppy for NEC 9800 1.2 MB is supported (int 13h)\n\t\tJapanese floppy for Toshiba 1.2 MB is supported (int 13h)\n\t\t5.25\"/360 kB floppy services are supported (int 13h)\n\t\t5.25\"/1.2 MB floppy services are supported (int 13h)\n\t\t3.5\"/720 kB floppy services are supported (int 13h)\n\t\t3.5\"/2.88 MB floppy services are supported (int 13h)\n\t\tPrint screen service is supported (int 5h)\n\t\tSerial services are supported (int 14h)\n\t\tPrinter services are supported (int 17h)\n\t\tCGA/mono video services are supported (int 10h)\n\t\tUSB legacy is supported\n\t\tBIOS boot specification is supported\n\t\tTargeted content distribution is supported\n\t\tUEFI is supported\n\tBIOS Revision: 5.17\n\nHandle 0x0001, DMI type 1, 27 bytes\nSystem Information\n\tManufacturer: Gigabyte Technology Co., Ltd.\n\tProduct Name: B450 AORUS ELITE\n\tVersion: Default string\n\tSerial Number: Default string\n\tUUID: 03c00218-044d-05b5-6506-740700080009\n\tWake-up Type: Power Switch\n\tSKU Number: Default string\n\tFamily: B450 MB\n\nHandle 0x0002, DMI type 2, 15 bytes\nBase Board Information\n\tManufacturer: Gigabyte Technology Co., Ltd.\n\tProduct Name: B450 AORUS ELITE\n\tVersion: Default string\n\tSerial Number: Default string\n\tAsset Tag: Default string\n\tFeatures:\n\t\tBoard is a hosting board\n\t\tBoard is replaceable\n\tLocation In Chassis: Default string\n\tChassis Handle: 0x0003\n\tType: Motherboard\n\tContained Object Handles: 0\n\nHandle 0x000B, DMI type 16, 23 bytes\nPhysical Memory Array\n\tLocation: System Board Or Motherboard\n\tUse: System Memory\n\tError Correction Type: None\n\tMaximum Capacity: 128 GB\n\tError Information Handle: 0x000A\n\tNumber Of Devices: 4\n\nHandle 0x0013, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0012\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 16 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 0\n\tBank Locator: P0 CHANNEL A\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: 00000000\n\tAsset Tag: Not Specified\n\tPart Number: CMW32GX4M2E3200C16 \n\tRank: 2\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: Unknown\n\tMaximum Voltage: Unknown\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 3, Hex 0x9E\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 16 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x0016, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0015\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 8 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 1\n\tBank Locator: P0 CHANNEL A\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: E3C4408B\n\tAsset Tag: Not Specified\n\tPart Number: BL8G32C16U4BL.M8FE\n\tRank: 1\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: 1.2 V\n\tMaximum Voltage: 1.2 V\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 6, Hex 0x9B\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 8 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x0019, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0018\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 16 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 0\n\tBank Locator: P0 CHANNEL B\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: 00000000\n\tAsset Tag: Not Specified\n\tPart Number: CMW32GX4M2E3200C16 \n\tRank: 2\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: Unknown\n\tMaximum Voltage: Unknown\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 3, Hex 0x9E\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 16 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x001C, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x001B\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 8 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 1\n\tBank Locator: P0 CHANNEL B\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: E3C44087\n\tAsset Tag: Not Specified\n\tPart Number: BL8G32C16U4BL.M8FE\n\tRank: 1\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: 1.2 V\n\tMaximum Voltage: 1.2 V\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 6, Hex 0x9B\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 8 GB\n\tCache Size: None\n\tLogical Size: None\n\n",
"lsblk": "NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS\nloop0 7:0 0 118,5M 1 loop /snap/iptvnator/92\nloop1 7:1 0 48,1M 1 loop /snap/snapd/25935\nloop2 7:2 0 50,9M 1 loop /snap/snapd/25577\nloop3 7:3 0 4K 1 loop /snap/bare/5\nloop4 7:4 0 91,7M 1 loop /snap/gtk-common-themes/1535\nloop5 7:5 0 55,5M 1 loop /snap/core18/2976\nloop6 7:6 0 164,8M 1 loop /snap/gnome-3-28-1804/198\nloop7 7:7 0 0B 0 loop \nsda 8:0 0 447,1G 0 disk \n└─sda1 8:1 0 447,1G 0 part \nsdb 8:16 1 0B 0 disk \nsdc 8:32 1 0B 0 disk \nsdd 8:48 1 0B 0 disk \nsde 8:64 1 0B 0 disk \nnvme0n1 259:0 0 465,8G 0 disk \n├─nvme0n1p1 259:1 0 976M 0 part /boot/efi\n├─nvme0n1p2 259:2 0 440,8G 0 part /\n└─nvme0n1p3 259:3 0 24G 0 part [SWAP]\nnvme1n1 259:4 0 465,8G 0 disk \n├─nvme1n1p1 259:5 0 50M 0 part \n├─nvme1n1p2 259:6 0 464,3G 0 part \n├─nvme1n1p3 259:7 0 808M 0 part \n├─nvme1n1p4 259:8 0 100M 0 part \n└─nvme1n1p5 259:9 0 522M 0 part \n",
"lscpu": "Architecture : x86_64\nMode(s) opératoire(s) des processeurs : 32-bit, 64-bit\nTailles des adresses: 48 bits physical, 48 bits virtual\nBoutisme : Little Endian\nProcesseur(s) : 24\nListe de processeur(s) en ligne : 0-23\nIdentifiant constructeur : AuthenticAMD\nNom de modèle : AMD Ryzen 9 5900X 12-Core Processor\nFamille de processeur : 25\nModèle : 33\nThread(s) par cœur : 2\nCœur(s) par socket : 12\nSocket(s) : 1\nRévision : 2\nAccroissement de fréquence : activé\nmultiplication des MHz du/des CPU(s) : 78%\nVitesse maximale du processeur en MHz : 4951,0000\nVitesse minimale du processeur en MHz : 550,0000\nBogoMIPS : 7399,98\nDrapeaux : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local user_shstk clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm debug_swap\nVirtualisation : AMD-V\nCache L1d : 384 KiB (12 instances)\nCache L1i : 384 KiB (12 instances)\nCache L2 : 6 MiB (12 instances)\nCache L3 : 64 MiB (2 instances)\nNœud(s) NUMA : 1\nNœud NUMA 0 de processeur(s) : 0-23\nVulnérabilité Gather data sampling : Not affected\nVulnérabilité Indirect target selection : Not affected\nVulnérabilité Itlb multihit : Not affected\nVulnérabilité L1tf : Not affected\nVulnérabilité Mds : Not affected\nVulnérabilité Meltdown : Not affected\nVulnérabilité Mmio stale data : Not affected\nVulnérabilité Reg file data sampling : Not affected\nVulnérabilité Retbleed : Not affected\nVulnérabilité Spec rstack overflow : Mitigation; Safe RET\nVulnérabilité Spec store bypass : Mitigation; Speculative Store Bypass disabled via prctl\nVulnérabilité Spectre v1 : Mitigation; usercopy/swapgs barriers and __user pointer sanitization\nVulnérabilité Spectre v2 : Mitigation; Retpolines; IBPB conditional; IBRS_FW; STIBP always-on; RSB filling; PBRSB-eIBRS Not affected; BHI Not affected\nVulnérabilité Srbds : Not affected\nVulnérabilité Tsa : Vulnerable: Clear CPU buffers attempted, no microcode\nVulnérabilité Tsx async abort : Not affected\nVulnérabilité Vmscape : Mitigation; IBPB before exit to userspace\n"
}
}
[DEBUG] Payload sauvegardé au format JSON dans bench_payload_last.json (49208 octets)
[DEBUG] Contenu de /home/gilles/Documents/vscode/bis/bench_go/config.yaml :
# bench-client config.yaml
# Objectif: décrire précisément
# - les outils à utiliser (et exigences d'installation)
# - les informations à collecter
# - les benchmarks à exécuter
# - les paramètres (timeouts, limites, endpoints, debug)
#
# Le binaire (Go/Rust) charge ce fichier depuis HTTP(S), valide les bornes, applique des defaults sûrs,
# et peut fallback sur une config locale si indisponible.
config_version: 1
profile: default
backend:
# URL finale du POST (le programme peut aussi accepter server_base_url + path)
url: "http://10.0.0.50:8007/api/benchmark"
# Auth: idéalement injecté par variable d'env sur le client; éviter de mettre le token dans la config distante.
auth:
mode: bearer_env
env_var: "test_hardware_perf"
http:
timeout_s: 15
retries: 2
retry_backoff_s: 2
tls:
verify: true
remote_config:
# Options de cache/ETag si le binaire gère le rafraîchissement
cache_path: "/var/cache/bench-client/config.yaml"
use_etag: true
refresh_max_age_s: 86400
runtime:
# Timeouts globaux de sécurité
max_total_runtime_s: 480
command_timeout_s: 30
command_timeout_overrides:
dmidecode_s: 20
smartctl_s: 10
lsblk_s: 10
sysbench_cpu_s: 120
sysbench_mem_s: 60
fio_s: 120
iperf3_s: 20
temp_dir: "/tmp"
locale: "C"
path_prepend:
- "/usr/sbin"
- "/sbin"
logging:
level: info # trace|debug|info|warn|error
progress: true # affichage étapes (1/N) + items
show_command_lines: false
capture_raw_output: true # remonte dans raw_info (attention taille)
raw_output_max_kb: 5120
save_payload_to_tmp: true
payload_tmp_dir: "/tmp"
payload_filename_prefix: "bench_payload_"
interactive_pause_on_debug: true
payload:
dir: "."
prefix: "bench_payload_"
always_save: true
device_identity:
# device_identifier envoyé au backend
prefer:
- hostname
- machine_id
hostname_command: "hostname"
machine_id_path: "/etc/machine-id"
dependencies:
# Liste des programmes externes (installés par le script shell)
# Le binaire doit pouvoir:
# - détecter présence/version (optionnel)
# - marquer chaque "feature" comme disponible ou non
required_base:
- name: "curl"
purpose: "Téléchargements/diagnostics (souvent côté script)"
- name: "jq"
purpose: "Optionnel: debug/validation (souvent côté script, pas nécessaire au binaire)"
- name: "lscpu"
purpose: "Infos CPU"
- name: "free"
purpose: "Infos mémoire"
- name: "lsblk"
purpose: "Infos stockage/partitions"
- name: "ip"
purpose: "Interfaces réseau, adresses IP"
- name: "bc"
purpose: "Optionnel: calculs (si pas fait en code)"
- name: "dmidecode"
purpose: "Infos BIOS/carte mère/RAM/DMI"
requires_root: true
- name: "smartctl"
package: "smartmontools"
purpose: "Infos disques SMART"
requires_root: true
- name: "ethtool"
purpose: "Vitesse réseau, Wake-on-LAN, driver"
requires_root: true
- name: "lspci"
package: "pciutils"
purpose: "Liste périphériques PCI (GPU/Audio/etc.)"
- name: "lsusb"
package: "usbutils"
purpose: "Liste périphériques USB"
- name: "aplay"
package: "alsa-utils"
purpose: "Inventaire audio ALSA"
- name: "arecord"
package: "alsa-utils"
purpose: "Inventaire capture ALSA"
- name: "pactl"
package: "pulseaudio-utils"
purpose: "Infos audio PulseAudio/PipeWire (si dispo)"
- name: "iw"
package: "iw"
purpose: "SSID + bitrate Wi-Fi"
- name: "loginctl"
package: "systemd"
purpose: "Type de session (x11/wayland/tty)"
- name: "xrandr"
package: "x11-xserver-utils"
purpose: "Résolution écran (X11)"
- name: "xdpyinfo"
package: "x11-utils"
purpose: "Résolution écran (fallback X11)"
- name: "swaymsg"
package: "sway"
purpose: "Résolution écran (Wayland/Sway)"
- name: "nvidia-smi"
package: "nvidia-utils"
purpose: "Infos GPU NVIDIA (si présent)"
- name: "systemd-detect-virt"
package: "systemd"
purpose: "Détection virtualisation/proxmox"
- name: "pveversion"
package: "pve-manager"
purpose: "Détection hôte Proxmox (si présent)"
benchmark_tools:
- name: "sysbench"
purpose: "Bench CPU et mémoire"
- name: "fio"
purpose: "Bench disque"
- name: "iperf3"
purpose: "Bench réseau"
- name: "ping"
package: "iputils-ping"
purpose: "Vérifier accessibilité iperf server"
- name: "nc"
package: "netcat-openbsd"
purpose: "Tester port 5201 iperf3"
collection:
# Liste des infos à récupérer, structurées comme dans ton script.
system:
enabled: true
items:
- hostname
- os_id
- os_version
- kernel_version
- architecture
- session_type # XDG_SESSION_TYPE / loginctl / DISPLAY / WAYLAND_DISPLAY
- screen_resolution # xrandr/xdpyinfo/swaymsg
- last_boot_time # who -b
- uptime_seconds # /proc/uptime
- battery_percentage # /sys/class/power_supply/BAT*/capacity
- battery_status # /sys/class/power_supply/BAT*/status
- battery_health # /sys/class/power_supply/BAT*/health ou uevent
- virtualization # systemd-detect-virt + proxmox hints
virtualization_detection:
enabled: true
proxmox:
detect_host_by:
- pveversion
- "/etc/pve"
detect_guest_by:
- systemd_detect_virt
- qemu_guest_agent
- dmidecode_manufacturer_product_matches: ["qemu", "proxmox"]
capture:
- is_proxmox_host
- is_proxmox_guest
- proxmox_version
- virtualization_type
cpu:
enabled: true
source:
primary: lscpu
supplement_dmidecode: true
items:
- vendor
- model
- cores_physical # cores_per_socket * sockets
- threads # nproc
- base_freq_ghz # lscpu CPU MHz -> GHz
- max_freq_ghz # lscpu CPU max MHz -> GHz
- cache_l1_kb
- cache_l2_kb
- cache_l3_kb
- flags # CPU flags list
- microarchitecture # depuis dmidecode type 4 (Family) si manquant
raw_capture:
- lscpu_output
ram:
enabled: true
sources:
- free
- dmidecode
items:
- total_mb
- used_mb
- free_mb
- shared_mb
- slots_total # dmidecode -t 16
- slots_used # dmidecode -t 17
- max_capacity_mb # dmidecode -t 16 Maximum Capacity
- ecc # dmidecode -t memory Error Correction Type
- layout # par slot: locator, size, type, speed, configured_speed, form_factor, type_detail, rank, manufacturer, part_number
raw_capture:
- dmidecode_full
gpu:
enabled: true
sources:
- lspci
- nvidia_smi_optional
items:
- vendor # NVIDIA/AMD/Intel/Unknown
- model # lspci vga/3d ou nvidia-smi name
- memory_dedicated_mb # nvidia-smi (si dispo)
- driver_version # nvidia-smi (si dispo)
motherboard_bios:
enabled: true
source: dmidecode
items:
- baseboard_manufacturer
- baseboard_product_name
- bios_vendor
- bios_version
- bios_release_date
pci_devices:
enabled: true
source: lspci
items:
- slot
- class
- vendor
- device
usb_devices:
enabled: true
source: lsusb
items:
- bus
- device
- vendor_id
- product_id
- name
audio:
enabled: true
sources:
- lspci
- alsa
- pactl_optional
items:
hardware:
- pci_audio_devices # lspci audio
- alsa_playback # aplay -l
- alsa_capture # arecord -l
- pcm_devices # aplay -L
software:
- backend # pipewire/pulseaudio/alsa
- server_name
- server_version
- default_sink
- default_source
- sinks
- sources
storage:
enabled: true
sources:
- lsblk
- smartctl
devices:
enumerate_by: "lsblk_disks" # lsblk -d -n -o NAME,TYPE
include_removable: false
items:
- device # /dev/sda
- model # smartctl -i
- serial # smartctl -i
- size # lsblk
- type # rota -> ssd/hdd
- interface # tran
- temperature_c # smartctl -A
- smart_health # smartctl -H
partitions:
enabled: true
source: lsblk_json
items:
- name
- mount_point
- fs_type
- total_gb
- used_gb
- free_gb
raw_capture:
- lsblk_output
network_shares:
enabled: true
source: "/proc/mounts"
detect_fs_types:
- nfs
- nfs4
- cifs
- smbfs
- fuse.cifs
- fuse.smbfs
- afp
- afpfs
- fuse.afpfs
- sshfs
- fuse.sshfs
- ftpfs
- curlftpfs
- fuse.ftpfs
- davfs
- davfs2
- fuse.webdavfs
items:
- protocol
- source
- mount_point
- fs_type
- options
- total_gb
- used_gb
- free_gb
network:
enabled: true
sources:
- ip
- ethtool
- iw_optional
interface_filter:
# reprise logique script: UP|UNKNOWN sauf interfaces virtuelles connues
include_states: ["UP", "UNKNOWN"]
exclude_name_prefixes: ["lo", "docker", "br-", "veth", "tap", "fw"]
items:
- name
- type # bridge|ethernet|wifi|unknown
- mac
- ip_address
- speed_mbps # ethtool speed ou iw tx bitrate
- driver # ethtool -i ou /sys/.../driver
- ssid # iw dev link
- wake_on_lan # ethtool Wake-on
raw_info:
enabled: true
include:
- lscpu
- lsblk
- dmidecode
max_size_kb: 5120
benchmarks:
enabled: true
# Pondérations identiques à ton script (si résultat dispo)
weights:
cpu: 0.40
memory: 0.20
disk: 0.20
network: 0.10
gpu: 0.10
cpu_sysbench:
enabled: true
tool: sysbench
params:
cpu_max_prime: 20000
single_thread: 1
multi_threads: "all" # all -> nproc
outputs:
- events_per_sec_single
- events_per_sec_multi
- duration_s
- score_single
- score_multi
- score_global
memory_sysbench:
enabled: true
tool: sysbench
params:
total_size: "1G"
outputs:
- throughput_mib_s
- score
disk_fio:
enabled: true
tool: fio
safety:
# Empêcher un bench destructif ou trop long
max_runtime_s: 60
max_size: "1G"
direct: 1
params:
name: "bench"
ioengine: "libaio"
rw: "randrw"
bs: "4k"
size: "500M"
numjobs: 1
runtime_s: 30
time_based: true
output_format: "json"
outputs:
- read_mb_s
- write_mb_s
- iops_read
- iops_write
- latency_ms
- score
network_iperf3:
enabled: true
tool: iperf3
server: "10.0.0.50"
port: 5201
prechecks:
ping:
enabled: true
count: 1
timeout_s: 1
port_check:
enabled: true
tool: nc
timeout_s: 2
params:
duration_s: 10
bidir: true
json: true
outputs:
- upload_mbps
- download_mbps
- ping_ms
- score
# placeholders (comme ton script)
- jitter_ms
- packet_loss_percent
gpu:
enabled: false
note: "GPU bench non implémenté dans le script d'origine (placeholder)."
payload_mapping:
# Le binaire peut mapper ses structures internes vers le schéma backend actuel.
# Utile si ton backend attend des champs précis.
device_identifier: "system.hostname"
bench_script_version_field: "bench_client_version"
include_sections:
- hardware
- results
- raw_info
limits:
# Bornes générales de sécurité (validation côté client)
max_payload_kb: 1024
max_raw_info_kb: 5120
max_fio_runtime_s: 60
max_fio_size_bytes: 1073741824 # 1 GiB
max_sysbench_cpu_prime: 50000
max_iperf_duration_s: 30
features:
# Permet d'activer/désactiver rapidement des blocs selon machines
enable_screen_resolution_detection: true
enable_battery_detection: true
enable_network_share_detection: true
enable_audio_detection: true
enable_proxmox_detection: true
[DEBUG] Config chargée : {ConfigVersion:1 Backend:{URL:http://10.0.0.50:8007/api/benchmark Auth:{Mode:bearer_env EnvVar:test_hardware_perf} HTTP:{TimeoutS:15 Retries:2 RetryBackoffS:2 TLSVerify:false}} Runtime:{MaxTotalRuntime:480 CommandTimeout:30 TempDir:/tmp Locale:C PathPrepend:[/usr/sbin /sbin]} Logging:{Level:info Progress:true ShowCommandLines:false CaptureRawOutput:true RawOutputMaxKB:5120 SavePayloadToTmp:true PayloadTmpDir:/tmp PayloadFilenamePrefix:bench_payload_ InteractiveDebugPause:true} Payload:{Dir:. Prefix:bench_payload_ Always:true} Benchmarks:{Enabled:true Weights:map[cpu:0.4 disk:0.2 gpu:0.1 memory:0.2 network:0.1] CPU:{Enabled:true Tool:sysbench Server: Port:0 Params:map[cpu_max_prime:20000 multi_threads:all single_thread:1] Safety:map[]} Memory:{Enabled:true Tool:sysbench Server: Port:0 Params:map[total_size:1G] Safety:map[]} Disk:{Enabled:true Tool:fio Server: Port:0 Params:map[bs:4k ioengine:libaio name:bench numjobs:1 output_format:json runtime_s:30 rw:randrw size:500M time_based:true] Safety:map[direct:1 max_runtime_s:60 max_size:1G]} Network:{Enabled:true Tool:iperf3 Server:10.0.0.50 Port:5201 Params:map[bidir:true duration_s:10 json:true] Safety:map[]}} Collection:{System:{Enabled:true} CPU:{Enabled:true} RAM:{Enabled:true} Storage:{Enabled:true} Network:{Enabled:true} GPU:{Enabled:true} Audio:{Enabled:true} PCI:{Enabled:true} USB:{Enabled:true}} RawInfo:{Enabled:true Include:[lscpu lsblk dmidecode] MaxSizeKB:5120}}
[DEBUG] Configuration complète : {ConfigVersion:1 Backend:{URL:http://10.0.0.50:8007/api/benchmark Auth:{Mode:bearer_env EnvVar:test_hardware_perf} HTTP:{TimeoutS:15 Retries:2 RetryBackoffS:2 TLSVerify:false}} Runtime:{MaxTotalRuntime:480 CommandTimeout:30 TempDir:/tmp Locale:C PathPrepend:[/usr/sbin /sbin]} Logging:{Level:info Progress:true ShowCommandLines:false CaptureRawOutput:true RawOutputMaxKB:5120 SavePayloadToTmp:true PayloadTmpDir:/tmp PayloadFilenamePrefix:bench_payload_ InteractiveDebugPause:true} Payload:{Dir:. Prefix:bench_payload_ Always:true} Benchmarks:{Enabled:true Weights:map[cpu:0.4 disk:0.2 gpu:0.1 memory:0.2 network:0.1] CPU:{Enabled:true Tool:sysbench Server: Port:0 Params:map[cpu_max_prime:20000 multi_threads:all single_thread:1] Safety:map[]} Memory:{Enabled:true Tool:sysbench Server: Port:0 Params:map[total_size:1G] Safety:map[]} Disk:{Enabled:true Tool:fio Server: Port:0 Params:map[bs:4k ioengine:libaio name:bench numjobs:1 output_format:json runtime_s:30 rw:randrw size:500M time_based:true] Safety:map[direct:1 max_runtime_s:60 max_size:1G]} Network:{Enabled:true Tool:iperf3 Server:10.0.0.50 Port:5201 Params:map[bidir:true duration_s:10 json:true] Safety:map[]}} Collection:{System:{Enabled:true} CPU:{Enabled:true} RAM:{Enabled:true} Storage:{Enabled:true} Network:{Enabled:true} GPU:{Enabled:true} Audio:{Enabled:true} PCI:{Enabled:true} USB:{Enabled:true}} RawInfo:{Enabled:true Include:[lscpu lsblk dmidecode] MaxSizeKB:5120}}
[DEBUG] [2/6] Début collecte CPU
[DEBUG] Exec: lscpu []
[DEBUG] Exec: dmidecode [-t 4]
[DEBUG] [2/6] Détails CPU: {Vendor:AuthenticAMD Model:AMD Ryzen 9 5900X 12-Core Processor Cores:12 Threads:24 BaseFreqGHz:4.951 MaxFreqGHz:4.951 CacheL1KB:64 CacheL2KB:512 CacheL3KB:32768 Flags:[fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local user_shstk clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm debug_swap] Microarchitecture:Zen TDPW:<nil>}
[DEBUG] [2/6] Début collecte RAM
[DEBUG] SMBIOS détecté : SMBIOS 3.3.0 (54 tables)
[DEBUG] Module SMBIOS détecté : DIMM 0 {Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 }
[DEBUG] Module SMBIOS détecté : DIMM 1 {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE}
[DEBUG] Module SMBIOS détecté : DIMM 0 {Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 }
[DEBUG] Module SMBIOS détecté : DIMM 1 {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE}
[DEBUG] Mémoire SMBIOS : slots_total=10 slots_used=4 ecc=false max=0MB
[DEBUG] [2/6] Détails RAM: {TotalMB:48096 UsedMB:17518 FreeMB:30577 SharedMB:976 SlotsTotal:10 SlotsUsed:4 MaxCapacityMB:48096 ECC:false Layout:[{Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 } {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE} {Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 } {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE}]}
[DEBUG] [2/6] Début collecte GPU
[DEBUG] Exec: lspci []
[DEBUG] Exec: nvidia-smi [--query-gpu=name,driver_version,memory.total --format=csv,noheader,nounits]
[DEBUG] [2/6] Détails GPU: {Vendor:NVIDIA Model:NVIDIA GeForce RTX 3060 DriverVersion:550.163.01 MemoryDedicatedMB:0xc000300040 MemorySharedMB:<nil> APISupport:[]}
[DEBUG] [2/6] Début collecte stockage
[DEBUG] Exec: lsblk [-J -b -o NAME,TYPE,TRAN,VENDOR,MODEL,SERIAL,SIZE]
[DEBUG] SMART open /dev/sdb impossible: unknown drive type
[DEBUG] SMART open /dev/sdc impossible: unknown drive type
[DEBUG] SMART open /dev/sdd impossible: unknown drive type
[DEBUG] SMART open /dev/sde impossible: unknown drive type
[DEBUG] [2/6] Détails stockage: {Devices:[{Name:/dev/nvme0n1 Type:ssd Interface:nvme CapacityGB:465.7617416381836 Vendor:CT500P2SSD8 Model:CT500P2SSD8 Serial:2138E5D60DD8 SmartHealth:PASSED Temperature:34} {Name:/dev/nvme1n1 Type: Interface:nvme CapacityGB:465.7617416381836 Vendor:CT500P2SSD8 Model:CT500P2SSD8 Serial:2108E4FD258D SmartHealth:PASSED Temperature:32} {Name:/dev/sda Type: Interface:sata CapacityGB:447.13167572021484 Vendor:ATA Model:KINGSTON SUV500480G Serial:50026B768226A365 SmartHealth:PASSED Temperature:25} {Name:/dev/sdb Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:Compact Flash Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sdc Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:SD/MMC Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sdd Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:MS/MS-PRO Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sde Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:xD-Picture Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0}] Partitions:[{Name:/dev/nvme0n1p2 MountPoint:/ FSType:ext4 TotalGB:432.80120849609375 UsedGB:0xc000300300 FreeGB:0xc000300308} {Name:/dev/nvme0n1p1 MountPoint:/boot/efi FSType:vfat TotalGB:0.9512481689453125 UsedGB:0xc000300340 FreeGB:0xc000300348}]}
[DEBUG] [2/6] Début collecte PCI devices
[DEBUG] Exec: lspci [-mm]
[DEBUG] [2/6] Détails PCI: [{Slot:00:00.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Root Complex} {Slot:00:00.2 Class:IOMMU Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse IOMMU} {Slot:00:01.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:01.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse GPP Bridge} {Slot:00:01.3 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse GPP Bridge} {Slot:00:02.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:03.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:03.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse GPP Bridge} {Slot:00:04.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:05.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:07.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:07.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]} {Slot:00:08.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:08.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]} {Slot:00:14.0 Class:SMBus Vendor:Advanced Micro Devices, Inc. [AMD] Device:FCH SMBus Controller} {Slot:00:14.3 Class:ISA bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:FCH LPC Bridge} {Slot:00:18.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 0} {Slot:00:18.1 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 1} {Slot:00:18.2 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 2} {Slot:00:18.3 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 3} {Slot:00:18.4 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 4} {Slot:00:18.5 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 5} {Slot:00:18.6 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 6} {Slot:00:18.7 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 7} {Slot:01:00.0 Class:Non-Volatile memory controller Vendor:Micron/Crucial Technology Device:P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)} {Slot:02:00.0 Class:USB controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset USB 3.1 xHCI Compliant Host Controller} {Slot:02:00.1 Class:SATA controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset SATA Controller} {Slot:02:00.2 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Bridge} {Slot:03:00.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:03:01.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:03:04.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:03:08.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:04:00.0 Class:Ethernet controller Vendor:Realtek Semiconductor Co., Ltd. Device:RTL8111/8168/8211/8411 PCI Express Gigabit Ethernet Controller} {Slot:07:00.0 Class:Non-Volatile memory controller Vendor:Micron/Crucial Technology Device:P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)} {Slot:08:00.0 Class:VGA compatible controller Vendor:NVIDIA Corporation Device:GA106 [GeForce RTX 3060 Lite Hash Rate]} {Slot:08:00.1 Class:Audio device Vendor:NVIDIA Corporation Device:GA106 High Definition Audio Controller} {Slot:09:00.0 Class:Non-Essential Instrumentation [1300] Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Function} {Slot:0a:00.0 Class:Non-Essential Instrumentation [1300] Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Reserved SPP} {Slot:0a:00.1 Class:Encryption controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Cryptographic Coprocessor PSPCPP} {Slot:0a:00.3 Class:USB controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse USB 3.0 Host Controller} {Slot:0a:00.4 Class:Audio device Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse HD Audio Controller}]
[DEBUG] [2/6] Début collecte USB devices
[DEBUG] Exec: lsusb []
[DEBUG] [2/6] Détails USB: [{Bus:001 Device:001 VendorID:1d6b ProductID:0002 Name:Linux Foundation 2.0 root hub} {Bus:001 Device:002 VendorID:058f ProductID:6362 Name:Alcor Micro Corp. Flash Card Reader/Writer} {Bus:002 Device:001 VendorID:1d6b ProductID:0003 Name:Linux Foundation 3.0 root hub} {Bus:003 Device:001 VendorID:1d6b ProductID:0002 Name:Linux Foundation 2.0 root hub} {Bus:003 Device:003 VendorID:046d ProductID:c52b Name:Logitech, Inc. Unifying Receiver} {Bus:003 Device:004 VendorID:0bda ProductID:b711 Name:Realtek Semiconductor Corp. RTL8188GU 802.11n WLAN Adapter (After Modeswitch)} {Bus:004 Device:001 VendorID:1d6b ProductID:0003 Name:Linux Foundation 3.0 root hub}]
[DEBUG] [2/6] Début collecte partages réseau
[DEBUG] [2/6] Détails partages réseau: []
[DEBUG] [2/6] Début collecte interfaces réseau
[DEBUG] Exec: ethtool [eno1]
[DEBUG] Exec: ethtool [-i eno1]
[DEBUG] Exec: ethtool [wlxe84e06a6c1fc]
[DEBUG] Exec: ethtool [-i wlxe84e06a6c1fc]
[DEBUG] Exec: iwgetid [wlxe84e06a6c1fc -r]
[DEBUG] Exec: iw [wlxe84e06a6c1fc link]
[DEBUG] [2/6] Détails réseau: {Interfaces:[{Name:eno1 Type:ethernet MAC:18:c0:4d:b5:65:74 IP:10.0.1.109 SpeedMbps:0xc000388588 Driver:r8169 SSID: WakeOnLAN:false} {Name:wlxe84e06a6c1fc Type:wifi MAC:12:07:f2:19:7a:9b IP: SpeedMbps:<nil> Driver:rtl8xxxu SSID: WakeOnLAN:false}]}
[DEBUG] [2/6] Début collecte carte mère
[DEBUG] Exec: dmidecode [-t 2]
[DEBUG] Exec: dmidecode [-t 0]
[DEBUG] [2/6] Détails carte mère: {Vendor:Gigabyte Technology Co., Ltd. Model:B450 AORUS ELITE BIOSVendor:American Megatrends International, LLC. BIOSVersion:F65e BIOSDate:09/20/2023}
[DEBUG] [2/6] Début collecte OS
[DEBUG] Exec: uname [-r]
[DEBUG] Exec: uname [-m]
[DEBUG] Exec: systemd-detect-virt []
[DEBUG] Exec: xrandr []
[DEBUG] Exec: xrandr [--current]
[DEBUG] Exec: who [-b]
[DEBUG] [2/6] Détails OS: {Name:Debian GNU/Linux Version:13 (trixie) KernelVersion:6.12.57+deb13-amd64 Architecture:x86_64 SessionType: DisplayServer: ScreenResolution:5560 x 1920 LastBootTime:démarrage système 2026-01-11 09:11 UptimeSeconds:45512 BatteryPercentage:<nil> BatteryStatus: BatteryHealth: Hostname:aorus VirtualizationType:kvm-host DesktopEnvironment:GNOME}
[DEBUG] [2/6] Début collecte capteurs
[DEBUG] [2/6] Détails capteurs: {CPUTempC:<nil> DiskTempsC:map[nvme-pci-0100:Composite:33.85 nvme-pci-0700:Composite:31.85] Sensors:[{Chip:nvme-pci-0700 Name:Composite Type:temperature Value:31.85 Unit:°C Alarm:false} {Chip:acpitz-acpi-0 Name:temp1 Type:temperature Value:16.8 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tctl Type:temperature Value:43.875 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tccd1 Type:temperature Value:40.25 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tccd2 Type:temperature Value:27.5 Unit:°C Alarm:false} {Chip:nvme-pci-0100 Name:Composite Type:temperature Value:33.85 Unit:°C Alarm:false}]}
[DEBUG] [2/6] Début collecte audio
[DEBUG] Exec: lspci []
[DEBUG] Exec: aplay [-l]
[DEBUG] Exec: arecord [-l]
[DEBUG] Exec: aplay [-L]
[DEBUG] Exec: pactl [info]
[DEBUG] [2/6] Détails audio: {Hardware:{PCIAudioDevices:[08:00.1 Audio device: NVIDIA Corporation GA106 High Definition Audio Controller (rev a1) 0a:00.4 Audio device: Advanced Micro Devices, Inc. [AMD] Starship/Matisse HD Audio Controller] AlsaPlayback:**** Liste des périphériques matériels PLAYBACK ****
carte 0 : NVidia [HDA NVidia], périphérique 3 : HDMI 0 [LG ULTRAWIDE]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 7 : HDMI 1 [K243Y]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 8 : HDMI 2 [HDMI 2]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 9 : HDMI 3 [HDMI 3]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]
Sous-périphériques : 0/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 1 : ALC892 Digital [ALC892 Digital]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
AlsaCapture:**** Liste des périphériques matériels CAPTURE ****
carte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 2 : ALC892 Alt Analog [ALC892 Alt Analog]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
PCMDevices:[null Discard all samples (playback) or generate zero samples (capture) pipewire PipeWire Sound Server default Default ALSA Output (currently PipeWire Media Server) hw:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Direct hardware device without any conversions hw:CARD=NVidia,DEV=7 HDA NVidia, K243Y Direct hardware device without any conversions hw:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Direct hardware device without any conversions hw:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Direct hardware device without any conversions plughw:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Hardware device with all software conversions plughw:CARD=NVidia,DEV=7 HDA NVidia, K243Y Hardware device with all software conversions plughw:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Hardware device with all software conversions plughw:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Hardware device with all software conversions hdmi:CARD=NVidia,DEV=0 HDA NVidia, LG ULTRAWIDE HDMI Audio Output hdmi:CARD=NVidia,DEV=1 HDA NVidia, K243Y HDMI Audio Output hdmi:CARD=NVidia,DEV=2 HDA NVidia, HDMI 2 HDMI Audio Output hdmi:CARD=NVidia,DEV=3 HDA NVidia, HDMI 3 HDMI Audio Output dmix:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Direct sample mixing device dmix:CARD=NVidia,DEV=7 HDA NVidia, K243Y Direct sample mixing device dmix:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Direct sample mixing device dmix:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Direct sample mixing device hw:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Direct hardware device without any conversions hw:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Direct hardware device without any conversions plughw:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Hardware device with all software conversions plughw:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Hardware device with all software conversions sysdefault:CARD=Generic HD-Audio Generic, ALC892 Analog Default Audio Device front:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Front output / input surround21:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 2.1 Surround output to Front and Subwoofer speakers surround40:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 4.0 Surround output to Front and Rear speakers surround41:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 4.1 Surround output to Front, Rear and Subwoofer speakers surround50:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 5.0 Surround output to Front, Center and Rear speakers surround51:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 5.1 Surround output to Front, Center, Rear and Subwoofer speakers surround71:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 7.1 Surround output to Front, Center, Side, Rear and Woofer speakers iec958:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Digital IEC958 (S/PDIF) Digital Audio Output dmix:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Direct sample mixing device dmix:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Direct sample mixing device]} Software:{Backend: ServerName: ServerVersion: DefaultSink:<nil> DefaultSource:<nil> Sinks:[] Sources:[]}}
[DEBUG] Exec: lscpu []
[DEBUG] Exec: lsblk [-a]
[DEBUG] Exec: dmidecode [-t 0,1,2,16,17]
[DEBUG] Matériel collecté : {CPU:{Vendor:AuthenticAMD Model:AMD Ryzen 9 5900X 12-Core Processor Cores:12 Threads:24 BaseFreqGHz:4.951 MaxFreqGHz:4.951 CacheL1KB:64 CacheL2KB:512 CacheL3KB:32768 Flags:[fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local user_shstk clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm debug_swap] Microarchitecture:Zen TDPW:<nil>} RAM:{TotalMB:48096 UsedMB:17518 FreeMB:30577 SharedMB:976 SlotsTotal:10 SlotsUsed:4 MaxCapacityMB:48096 ECC:false Layout:[{Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 } {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE} {Slot:DIMM 0 SizeMB:16384 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:2 Manufacturer:Unknown PartNumber:CMW32GX4M2E3200C16 } {Slot:DIMM 1 SizeMB:8192 Type:DDR4 SpeedMHz:3200 ConfiguredMHz:3200 FormFactor:DIMM TypeDetail:Synchronous Unbuffered (Unregistered) Rank:1 Manufacturer:Unknown PartNumber:BL8G32C16U4BL.M8FE}]} GPU:{Vendor:NVIDIA Model:NVIDIA GeForce RTX 3060 DriverVersion:550.163.01 MemoryDedicatedMB:0xc000300040 MemorySharedMB:<nil> APISupport:[]} Storage:{Devices:[{Name:/dev/nvme0n1 Type:ssd Interface:nvme CapacityGB:465.7617416381836 Vendor:CT500P2SSD8 Model:CT500P2SSD8 Serial:2138E5D60DD8 SmartHealth:PASSED Temperature:34} {Name:/dev/nvme1n1 Type: Interface:nvme CapacityGB:465.7617416381836 Vendor:CT500P2SSD8 Model:CT500P2SSD8 Serial:2108E4FD258D SmartHealth:PASSED Temperature:32} {Name:/dev/sda Type: Interface:sata CapacityGB:447.13167572021484 Vendor:ATA Model:KINGSTON SUV500480G Serial:50026B768226A365 SmartHealth:PASSED Temperature:25} {Name:/dev/sdb Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:Compact Flash Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sdc Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:SD/MMC Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sdd Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:MS/MS-PRO Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0} {Name:/dev/sde Type: Interface:usb CapacityGB:0 Vendor:Generic- Model:xD-Picture Serial:058F63626479 SmartHealth:UNAVAILABLE Temperature:0}] Partitions:[{Name:/dev/nvme0n1p2 MountPoint:/ FSType:ext4 TotalGB:432.80120849609375 UsedGB:0xc000300300 FreeGB:0xc000300308} {Name:/dev/nvme0n1p1 MountPoint:/boot/efi FSType:vfat TotalGB:0.9512481689453125 UsedGB:0xc000300340 FreeGB:0xc000300348}]} PCIDevices:[{Slot:00:00.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Root Complex} {Slot:00:00.2 Class:IOMMU Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse IOMMU} {Slot:00:01.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:01.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse GPP Bridge} {Slot:00:01.3 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse GPP Bridge} {Slot:00:02.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:03.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:03.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse GPP Bridge} {Slot:00:04.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:05.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:07.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:07.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]} {Slot:00:08.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Host Bridge} {Slot:00:08.1 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]} {Slot:00:14.0 Class:SMBus Vendor:Advanced Micro Devices, Inc. [AMD] Device:FCH SMBus Controller} {Slot:00:14.3 Class:ISA bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:FCH LPC Bridge} {Slot:00:18.0 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 0} {Slot:00:18.1 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 1} {Slot:00:18.2 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 2} {Slot:00:18.3 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 3} {Slot:00:18.4 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 4} {Slot:00:18.5 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 5} {Slot:00:18.6 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 6} {Slot:00:18.7 Class:Host bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse/Vermeer Data Fabric: Device 18h; Function 7} {Slot:01:00.0 Class:Non-Volatile memory controller Vendor:Micron/Crucial Technology Device:P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)} {Slot:02:00.0 Class:USB controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset USB 3.1 xHCI Compliant Host Controller} {Slot:02:00.1 Class:SATA controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset SATA Controller} {Slot:02:00.2 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Bridge} {Slot:03:00.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:03:01.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:03:04.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:03:08.0 Class:PCI bridge Vendor:Advanced Micro Devices, Inc. [AMD] Device:400 Series Chipset PCIe Port} {Slot:04:00.0 Class:Ethernet controller Vendor:Realtek Semiconductor Co., Ltd. Device:RTL8111/8168/8211/8411 PCI Express Gigabit Ethernet Controller} {Slot:07:00.0 Class:Non-Volatile memory controller Vendor:Micron/Crucial Technology Device:P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)} {Slot:08:00.0 Class:VGA compatible controller Vendor:NVIDIA Corporation Device:GA106 [GeForce RTX 3060 Lite Hash Rate]} {Slot:08:00.1 Class:Audio device Vendor:NVIDIA Corporation Device:GA106 High Definition Audio Controller} {Slot:09:00.0 Class:Non-Essential Instrumentation [1300] Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse PCIe Dummy Function} {Slot:0a:00.0 Class:Non-Essential Instrumentation [1300] Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Reserved SPP} {Slot:0a:00.1 Class:Encryption controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse Cryptographic Coprocessor PSPCPP} {Slot:0a:00.3 Class:USB controller Vendor:Advanced Micro Devices, Inc. [AMD] Device:Matisse USB 3.0 Host Controller} {Slot:0a:00.4 Class:Audio device Vendor:Advanced Micro Devices, Inc. [AMD] Device:Starship/Matisse HD Audio Controller}] USBDevices:[{Bus:001 Device:001 VendorID:1d6b ProductID:0002 Name:Linux Foundation 2.0 root hub} {Bus:001 Device:002 VendorID:058f ProductID:6362 Name:Alcor Micro Corp. Flash Card Reader/Writer} {Bus:002 Device:001 VendorID:1d6b ProductID:0003 Name:Linux Foundation 3.0 root hub} {Bus:003 Device:001 VendorID:1d6b ProductID:0002 Name:Linux Foundation 2.0 root hub} {Bus:003 Device:003 VendorID:046d ProductID:c52b Name:Logitech, Inc. Unifying Receiver} {Bus:003 Device:004 VendorID:0bda ProductID:b711 Name:Realtek Semiconductor Corp. RTL8188GU 802.11n WLAN Adapter (After Modeswitch)} {Bus:004 Device:001 VendorID:1d6b ProductID:0003 Name:Linux Foundation 3.0 root hub}] NetworkShares:[] Network:{Interfaces:[{Name:eno1 Type:ethernet MAC:18:c0:4d:b5:65:74 IP:10.0.1.109 SpeedMbps:0xc000388588 Driver:r8169 SSID: WakeOnLAN:false} {Name:wlxe84e06a6c1fc Type:wifi MAC:12:07:f2:19:7a:9b IP: SpeedMbps:<nil> Driver:rtl8xxxu SSID: WakeOnLAN:false}]} Motherboard:{Vendor:Gigabyte Technology Co., Ltd. Model:B450 AORUS ELITE BIOSVendor:American Megatrends International, LLC. BIOSVersion:F65e BIOSDate:09/20/2023} OS:{Name:Debian GNU/Linux Version:13 (trixie) KernelVersion:6.12.57+deb13-amd64 Architecture:x86_64 SessionType: DisplayServer: ScreenResolution:5560 x 1920 LastBootTime:démarrage système 2026-01-11 09:11 UptimeSeconds:45512 BatteryPercentage:<nil> BatteryStatus: BatteryHealth: Hostname:aorus VirtualizationType:kvm-host DesktopEnvironment:GNOME} Sensors:{CPUTempC:<nil> DiskTempsC:map[nvme-pci-0100:Composite:33.85 nvme-pci-0700:Composite:31.85] Sensors:[{Chip:nvme-pci-0700 Name:Composite Type:temperature Value:31.85 Unit:°C Alarm:false} {Chip:acpitz-acpi-0 Name:temp1 Type:temperature Value:16.8 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tctl Type:temperature Value:43.875 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tccd1 Type:temperature Value:40.25 Unit:°C Alarm:false} {Chip:k10temp-pci-00c3 Name:Tccd2 Type:temperature Value:27.5 Unit:°C Alarm:false} {Chip:nvme-pci-0100 Name:Composite Type:temperature Value:33.85 Unit:°C Alarm:false}]} Audio:{Hardware:{PCIAudioDevices:[08:00.1 Audio device: NVIDIA Corporation GA106 High Definition Audio Controller (rev a1) 0a:00.4 Audio device: Advanced Micro Devices, Inc. [AMD] Starship/Matisse HD Audio Controller] AlsaPlayback:**** Liste des périphériques matériels PLAYBACK ****
carte 0 : NVidia [HDA NVidia], périphérique 3 : HDMI 0 [LG ULTRAWIDE]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 7 : HDMI 1 [K243Y]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 8 : HDMI 2 [HDMI 2]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 0 : NVidia [HDA NVidia], périphérique 9 : HDMI 3 [HDMI 3]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]
Sous-périphériques : 0/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 1 : ALC892 Digital [ALC892 Digital]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
AlsaCapture:**** Liste des périphériques matériels CAPTURE ****
carte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
carte 1 : Generic [HD-Audio Generic], périphérique 2 : ALC892 Alt Analog [ALC892 Alt Analog]
Sous-périphériques : 1/1
Sous-périphérique #0 : subdevice #0
PCMDevices:[null Discard all samples (playback) or generate zero samples (capture) pipewire PipeWire Sound Server default Default ALSA Output (currently PipeWire Media Server) hw:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Direct hardware device without any conversions hw:CARD=NVidia,DEV=7 HDA NVidia, K243Y Direct hardware device without any conversions hw:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Direct hardware device without any conversions hw:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Direct hardware device without any conversions plughw:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Hardware device with all software conversions plughw:CARD=NVidia,DEV=7 HDA NVidia, K243Y Hardware device with all software conversions plughw:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Hardware device with all software conversions plughw:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Hardware device with all software conversions hdmi:CARD=NVidia,DEV=0 HDA NVidia, LG ULTRAWIDE HDMI Audio Output hdmi:CARD=NVidia,DEV=1 HDA NVidia, K243Y HDMI Audio Output hdmi:CARD=NVidia,DEV=2 HDA NVidia, HDMI 2 HDMI Audio Output hdmi:CARD=NVidia,DEV=3 HDA NVidia, HDMI 3 HDMI Audio Output dmix:CARD=NVidia,DEV=3 HDA NVidia, LG ULTRAWIDE Direct sample mixing device dmix:CARD=NVidia,DEV=7 HDA NVidia, K243Y Direct sample mixing device dmix:CARD=NVidia,DEV=8 HDA NVidia, HDMI 2 Direct sample mixing device dmix:CARD=NVidia,DEV=9 HDA NVidia, HDMI 3 Direct sample mixing device hw:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Direct hardware device without any conversions hw:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Direct hardware device without any conversions plughw:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Hardware device with all software conversions plughw:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Hardware device with all software conversions sysdefault:CARD=Generic HD-Audio Generic, ALC892 Analog Default Audio Device front:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Front output / input surround21:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 2.1 Surround output to Front and Subwoofer speakers surround40:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 4.0 Surround output to Front and Rear speakers surround41:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 4.1 Surround output to Front, Rear and Subwoofer speakers surround50:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 5.0 Surround output to Front, Center and Rear speakers surround51:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 5.1 Surround output to Front, Center, Rear and Subwoofer speakers surround71:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog 7.1 Surround output to Front, Center, Side, Rear and Woofer speakers iec958:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Digital IEC958 (S/PDIF) Digital Audio Output dmix:CARD=Generic,DEV=0 HD-Audio Generic, ALC892 Analog Direct sample mixing device dmix:CARD=Generic,DEV=1 HD-Audio Generic, ALC892 Digital Direct sample mixing device]} Software:{Backend: ServerName: ServerVersion: DefaultSink:<nil> DefaultSource:<nil> Sinks:[] Sources:[]}} RawInfo:map[dmidecode:# dmidecode 3.6
Getting SMBIOS data from sysfs.
SMBIOS 3.3.0 present.
Handle 0x0000, DMI type 0, 26 bytes
BIOS Information
Vendor: American Megatrends International, LLC.
Version: F65e
Release Date: 09/20/2023
Address: 0xF0000
Runtime Size: 64 kB
ROM Size: 16 MB
Characteristics:
PCI is supported
BIOS is upgradeable
BIOS shadowing is allowed
Boot from CD is supported
Selectable boot is supported
BIOS ROM is socketed
EDD is supported
Japanese floppy for NEC 9800 1.2 MB is supported (int 13h)
Japanese floppy for Toshiba 1.2 MB is supported (int 13h)
5.25"/360 kB floppy services are supported (int 13h)
5.25"/1.2 MB floppy services are supported (int 13h)
3.5"/720 kB floppy services are supported (int 13h)
3.5"/2.88 MB floppy services are supported (int 13h)
Print screen service is supported (int 5h)
Serial services are supported (int 14h)
Printer services are supported (int 17h)
CGA/mono video services are supported (int 10h)
USB legacy is supported
BIOS boot specification is supported
Targeted content distribution is supported
UEFI is supported
BIOS Revision: 5.17
Handle 0x0001, DMI type 1, 27 bytes
System Information
Manufacturer: Gigabyte Technology Co., Ltd.
Product Name: B450 AORUS ELITE
Version: Default string
Serial Number: Default string
UUID: 03c00218-044d-05b5-6506-740700080009
Wake-up Type: Power Switch
SKU Number: Default string
Family: B450 MB
Handle 0x0002, DMI type 2, 15 bytes
Base Board Information
Manufacturer: Gigabyte Technology Co., Ltd.
Product Name: B450 AORUS ELITE
Version: Default string
Serial Number: Default string
Asset Tag: Default string
Features:
Board is a hosting board
Board is replaceable
Location In Chassis: Default string
Chassis Handle: 0x0003
Type: Motherboard
Contained Object Handles: 0
Handle 0x000B, DMI type 16, 23 bytes
Physical Memory Array
Location: System Board Or Motherboard
Use: System Memory
Error Correction Type: None
Maximum Capacity: 128 GB
Error Information Handle: 0x000A
Number Of Devices: 4
Handle 0x0013, DMI type 17, 92 bytes
Memory Device
Array Handle: 0x000B
Error Information Handle: 0x0012
Total Width: 64 bits
Data Width: 64 bits
Size: 16 GB
Form Factor: DIMM
Set: None
Locator: DIMM 0
Bank Locator: P0 CHANNEL A
Type: DDR4
Type Detail: Synchronous Unbuffered (Unregistered)
Speed: 3200 MT/s
Manufacturer: Unknown
Serial Number: 00000000
Asset Tag: Not Specified
Part Number: CMW32GX4M2E3200C16
Rank: 2
Configured Memory Speed: 3200 MT/s
Minimum Voltage: Unknown
Maximum Voltage: Unknown
Configured Voltage: 1.2 V
Memory Technology: DRAM
Memory Operating Mode Capability: Volatile memory
Firmware Version: Unknown
Module Manufacturer ID: Bank 3, Hex 0x9E
Module Product ID: Unknown
Memory Subsystem Controller Manufacturer ID: Unknown
Memory Subsystem Controller Product ID: Unknown
Non-Volatile Size: None
Volatile Size: 16 GB
Cache Size: None
Logical Size: None
Handle 0x0016, DMI type 17, 92 bytes
Memory Device
Array Handle: 0x000B
Error Information Handle: 0x0015
Total Width: 64 bits
Data Width: 64 bits
Size: 8 GB
Form Factor: DIMM
Set: None
Locator: DIMM 1
Bank Locator: P0 CHANNEL A
Type: DDR4
Type Detail: Synchronous Unbuffered (Unregistered)
Speed: 3200 MT/s
Manufacturer: Unknown
Serial Number: E3C4408B
Asset Tag: Not Specified
Part Number: BL8G32C16U4BL.M8FE
Rank: 1
Configured Memory Speed: 3200 MT/s
Minimum Voltage: 1.2 V
Maximum Voltage: 1.2 V
Configured Voltage: 1.2 V
Memory Technology: DRAM
Memory Operating Mode Capability: Volatile memory
Firmware Version: Unknown
Module Manufacturer ID: Bank 6, Hex 0x9B
Module Product ID: Unknown
Memory Subsystem Controller Manufacturer ID: Unknown
Memory Subsystem Controller Product ID: Unknown
Non-Volatile Size: None
Volatile Size: 8 GB
Cache Size: None
Logical Size: None
Handle 0x0019, DMI type 17, 92 bytes
Memory Device
Array Handle: 0x000B
Error Information Handle: 0x0018
Total Width: 64 bits
Data Width: 64 bits
Size: 16 GB
Form Factor: DIMM
Set: None
Locator: DIMM 0
Bank Locator: P0 CHANNEL B
Type: DDR4
Type Detail: Synchronous Unbuffered (Unregistered)
Speed: 3200 MT/s
Manufacturer: Unknown
Serial Number: 00000000
Asset Tag: Not Specified
Part Number: CMW32GX4M2E3200C16
Rank: 2
Configured Memory Speed: 3200 MT/s
Minimum Voltage: Unknown
Maximum Voltage: Unknown
Configured Voltage: 1.2 V
Memory Technology: DRAM
Memory Operating Mode Capability: Volatile memory
Firmware Version: Unknown
Module Manufacturer ID: Bank 3, Hex 0x9E
Module Product ID: Unknown
Memory Subsystem Controller Manufacturer ID: Unknown
Memory Subsystem Controller Product ID: Unknown
Non-Volatile Size: None
Volatile Size: 16 GB
Cache Size: None
Logical Size: None
Handle 0x001C, DMI type 17, 92 bytes
Memory Device
Array Handle: 0x000B
Error Information Handle: 0x001B
Total Width: 64 bits
Data Width: 64 bits
Size: 8 GB
Form Factor: DIMM
Set: None
Locator: DIMM 1
Bank Locator: P0 CHANNEL B
Type: DDR4
Type Detail: Synchronous Unbuffered (Unregistered)
Speed: 3200 MT/s
Manufacturer: Unknown
Serial Number: E3C44087
Asset Tag: Not Specified
Part Number: BL8G32C16U4BL.M8FE
Rank: 1
Configured Memory Speed: 3200 MT/s
Minimum Voltage: 1.2 V
Maximum Voltage: 1.2 V
Configured Voltage: 1.2 V
Memory Technology: DRAM
Memory Operating Mode Capability: Volatile memory
Firmware Version: Unknown
Module Manufacturer ID: Bank 6, Hex 0x9B
Module Product ID: Unknown
Memory Subsystem Controller Manufacturer ID: Unknown
Memory Subsystem Controller Product ID: Unknown
Non-Volatile Size: None
Volatile Size: 8 GB
Cache Size: None
Logical Size: None
lsblk:NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS
loop0 7:0 0 118,5M 1 loop /snap/iptvnator/92
loop1 7:1 0 48,1M 1 loop /snap/snapd/25935
loop2 7:2 0 50,9M 1 loop /snap/snapd/25577
loop3 7:3 0 4K 1 loop /snap/bare/5
loop4 7:4 0 91,7M 1 loop /snap/gtk-common-themes/1535
loop5 7:5 0 55,5M 1 loop /snap/core18/2976
loop6 7:6 0 164,8M 1 loop /snap/gnome-3-28-1804/198
loop7 7:7 0 0B 0 loop
sda 8:0 0 447,1G 0 disk
└─sda1 8:1 0 447,1G 0 part
sdb 8:16 1 0B 0 disk
sdc 8:32 1 0B 0 disk
sdd 8:48 1 0B 0 disk
sde 8:64 1 0B 0 disk
nvme0n1 259:0 0 465,8G 0 disk
├─nvme0n1p1 259:1 0 976M 0 part /boot/efi
├─nvme0n1p2 259:2 0 440,8G 0 part /
└─nvme0n1p3 259:3 0 24G 0 part [SWAP]
nvme1n1 259:4 0 465,8G 0 disk
├─nvme1n1p1 259:5 0 50M 0 part
├─nvme1n1p2 259:6 0 464,3G 0 part
├─nvme1n1p3 259:7 0 808M 0 part
├─nvme1n1p4 259:8 0 100M 0 part
└─nvme1n1p5 259:9 0 522M 0 part
lscpu:Architecture : x86_64
Mode(s) opératoire(s) des processeurs : 32-bit, 64-bit
Tailles des adresses: 48 bits physical, 48 bits virtual
Boutisme : Little Endian
Processeur(s) : 24
Liste de processeur(s) en ligne : 0-23
Identifiant constructeur : AuthenticAMD
Nom de modèle : AMD Ryzen 9 5900X 12-Core Processor
Famille de processeur : 25
Modèle : 33
Thread(s) par cœur : 2
Cœur(s) par socket : 12
Socket(s) : 1
Révision : 2
Accroissement de fréquence : activé
multiplication des MHz du/des CPU(s) : 79%
Vitesse maximale du processeur en MHz : 4951,0000
Vitesse minimale du processeur en MHz : 550,0000
BogoMIPS : 7399,98
Drapeaux : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local user_shstk clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm debug_swap
Virtualisation : AMD-V
Cache L1d : 384 KiB (12 instances)
Cache L1i : 384 KiB (12 instances)
Cache L2 : 6 MiB (12 instances)
Cache L3 : 64 MiB (2 instances)
Nœud(s) NUMA : 1
Nœud NUMA 0 de processeur(s) : 0-23
Vulnérabilité Gather data sampling : Not affected
Vulnérabilité Indirect target selection : Not affected
Vulnérabilité Itlb multihit : Not affected
Vulnérabilité L1tf : Not affected
Vulnérabilité Mds : Not affected
Vulnérabilité Meltdown : Not affected
Vulnérabilité Mmio stale data : Not affected
Vulnérabilité Reg file data sampling : Not affected
Vulnérabilité Retbleed : Not affected
Vulnérabilité Spec rstack overflow : Mitigation; Safe RET
Vulnérabilité Spec store bypass : Mitigation; Speculative Store Bypass disabled via prctl
Vulnérabilité Spectre v1 : Mitigation; usercopy/swapgs barriers and __user pointer sanitization
Vulnérabilité Spectre v2 : Mitigation; Retpolines; IBPB conditional; IBRS_FW; STIBP always-on; RSB filling; PBRSB-eIBRS Not affected; BHI Not affected
Vulnérabilité Srbds : Not affected
Vulnérabilité Tsa : Vulnerable: Clear CPU buffers attempted, no microcode
Vulnérabilité Tsx async abort : Not affected
Vulnérabilité Vmscape : Mitigation; IBPB before exit to userspace
]}
[DEBUG] [3/6] Benchmark CPU démarré
[DEBUG] Exec: sysbench [cpu --threads=1 --time=10 run]
[DEBUG] Exec: nproc []
[DEBUG] Exec: sysbench [cpu --threads=24 --time=10 run]
[DEBUG] [3/6] Résultat CPU: {EventsPerSec:37264.19 EventsPerSecSingle:5598.14 EventsPerSecMulti:68930.24 DurationSec:20.0004 Score:37264.19 ScoreSingle:5598.14 ScoreMulti:68930.24}
[DEBUG] [3/6] Benchmark mémoire démarré
[DEBUG] Exec: sysbench [memory --memory-block-size=1K --memory-total-size=1G run]
[DEBUG] [3/6] Résultat mémoire: {Throughput:8887.18 Score:8887.18}
[DEBUG] [3/6] Benchmark disque démarré
[DEBUG] [3/6] Bench disque cible : /var/tmp/bench-client (mount=/ fstype=ext4 source=/dev/nvme0n1p2)
[DEBUG] [3/6] Bench disque direct sur /dev/nvme0n1p2 (mnt=/ fs=ext4)
[DEBUG] [3/6] Bench direct : écriture+lecture /var/tmp/bench-client/direct-500mb.bin (500 MB)
[DEBUG] [3/6] Bench direct : écriture+lecture /var/tmp/bench-client/direct-1gb.bin (1024 MB)
[DEBUG] [3/6] Bench direct chunk 1/50 (/var/tmp/bench-client/direct-chunk-01.bin)
[DEBUG] [3/6] Bench direct chunk 2/50 (/var/tmp/bench-client/direct-chunk-02.bin)
[DEBUG] [3/6] Bench direct chunk 3/50 (/var/tmp/bench-client/direct-chunk-03.bin)
[DEBUG] [3/6] Bench direct chunk 4/50 (/var/tmp/bench-client/direct-chunk-04.bin)
[DEBUG] [3/6] Bench direct chunk 5/50 (/var/tmp/bench-client/direct-chunk-05.bin)
[DEBUG] [3/6] Bench direct chunk 6/50 (/var/tmp/bench-client/direct-chunk-06.bin)
[DEBUG] [3/6] Bench direct chunk 7/50 (/var/tmp/bench-client/direct-chunk-07.bin)
[DEBUG] [3/6] Bench direct chunk 8/50 (/var/tmp/bench-client/direct-chunk-08.bin)
[DEBUG] [3/6] Bench direct chunk 9/50 (/var/tmp/bench-client/direct-chunk-09.bin)
[DEBUG] [3/6] Bench direct chunk 10/50 (/var/tmp/bench-client/direct-chunk-10.bin)
[DEBUG] [3/6] Bench direct chunk 11/50 (/var/tmp/bench-client/direct-chunk-11.bin)
[DEBUG] [3/6] Bench direct chunk 12/50 (/var/tmp/bench-client/direct-chunk-12.bin)
[DEBUG] [3/6] Bench direct chunk 13/50 (/var/tmp/bench-client/direct-chunk-13.bin)
[DEBUG] [3/6] Bench direct chunk 14/50 (/var/tmp/bench-client/direct-chunk-14.bin)
[DEBUG] [3/6] Bench direct chunk 15/50 (/var/tmp/bench-client/direct-chunk-15.bin)
[DEBUG] [3/6] Bench direct chunk 16/50 (/var/tmp/bench-client/direct-chunk-16.bin)
[DEBUG] [3/6] Bench direct chunk 17/50 (/var/tmp/bench-client/direct-chunk-17.bin)
[DEBUG] [3/6] Bench direct chunk 18/50 (/var/tmp/bench-client/direct-chunk-18.bin)
[DEBUG] [3/6] Bench direct chunk 19/50 (/var/tmp/bench-client/direct-chunk-19.bin)
[DEBUG] [3/6] Bench direct chunk 20/50 (/var/tmp/bench-client/direct-chunk-20.bin)
[DEBUG] [3/6] Bench direct chunk 21/50 (/var/tmp/bench-client/direct-chunk-21.bin)
[DEBUG] [3/6] Bench direct chunk 22/50 (/var/tmp/bench-client/direct-chunk-22.bin)
[DEBUG] [3/6] Bench direct chunk 23/50 (/var/tmp/bench-client/direct-chunk-23.bin)
[DEBUG] [3/6] Bench direct chunk 24/50 (/var/tmp/bench-client/direct-chunk-24.bin)
[DEBUG] [3/6] Bench direct chunk 25/50 (/var/tmp/bench-client/direct-chunk-25.bin)
[DEBUG] [3/6] Bench direct chunk 26/50 (/var/tmp/bench-client/direct-chunk-26.bin)
[DEBUG] [3/6] Bench direct chunk 27/50 (/var/tmp/bench-client/direct-chunk-27.bin)
[DEBUG] [3/6] Bench direct chunk 28/50 (/var/tmp/bench-client/direct-chunk-28.bin)
[DEBUG] [3/6] Bench direct chunk 29/50 (/var/tmp/bench-client/direct-chunk-29.bin)
[DEBUG] [3/6] Bench direct chunk 30/50 (/var/tmp/bench-client/direct-chunk-30.bin)
[DEBUG] [3/6] Bench direct chunk 31/50 (/var/tmp/bench-client/direct-chunk-31.bin)
[DEBUG] [3/6] Bench direct chunk 32/50 (/var/tmp/bench-client/direct-chunk-32.bin)
[DEBUG] [3/6] Bench direct chunk 33/50 (/var/tmp/bench-client/direct-chunk-33.bin)
[DEBUG] [3/6] Bench direct chunk 34/50 (/var/tmp/bench-client/direct-chunk-34.bin)
[DEBUG] [3/6] Bench direct chunk 35/50 (/var/tmp/bench-client/direct-chunk-35.bin)
[DEBUG] [3/6] Bench direct chunk 36/50 (/var/tmp/bench-client/direct-chunk-36.bin)
[DEBUG] [3/6] Bench direct chunk 37/50 (/var/tmp/bench-client/direct-chunk-37.bin)
[DEBUG] [3/6] Bench direct chunk 38/50 (/var/tmp/bench-client/direct-chunk-38.bin)
[DEBUG] [3/6] Bench direct chunk 39/50 (/var/tmp/bench-client/direct-chunk-39.bin)
[DEBUG] [3/6] Bench direct chunk 40/50 (/var/tmp/bench-client/direct-chunk-40.bin)
[DEBUG] [3/6] Bench direct chunk 41/50 (/var/tmp/bench-client/direct-chunk-41.bin)
[DEBUG] [3/6] Bench direct chunk 42/50 (/var/tmp/bench-client/direct-chunk-42.bin)
[DEBUG] [3/6] Bench direct chunk 43/50 (/var/tmp/bench-client/direct-chunk-43.bin)
[DEBUG] [3/6] Bench direct chunk 44/50 (/var/tmp/bench-client/direct-chunk-44.bin)
[DEBUG] [3/6] Bench direct chunk 45/50 (/var/tmp/bench-client/direct-chunk-45.bin)
[DEBUG] [3/6] Bench direct chunk 46/50 (/var/tmp/bench-client/direct-chunk-46.bin)
[DEBUG] [3/6] Bench direct chunk 47/50 (/var/tmp/bench-client/direct-chunk-47.bin)
[DEBUG] [3/6] Bench direct chunk 48/50 (/var/tmp/bench-client/direct-chunk-48.bin)
[DEBUG] [3/6] Bench direct chunk 49/50 (/var/tmp/bench-client/direct-chunk-49.bin)
[DEBUG] [3/6] Bench direct chunk 50/50 (/var/tmp/bench-client/direct-chunk-50.bin)
[DEBUG] [3/6] Bench disque direct résumé -> write=1178.86 MB/s read=14347.29 MB/s
[DEBUG] Exec: fio [--name=bench --ioengine=libaio --rw=randrw --bs=4k --direct=1 --size=500M --numjobs=1 --runtime=30 --time_based --output-format=json --filename=/var/tmp/bench-client/bench-1768164646019783118.fio]
[DEBUG] [3/6] Bench disque final -> read=14347.29 MB/s write=1178.86 MB/s score=7763.07
[DEBUG] [3/6] Résultat disque: {ReadMBs:14347.2909625685 WriteMBs:1178.8572485725415 IOPSRead:10446.718443 IOPSWrite:10437.418753 LatencyMs:0.073467395336 Score:7763.074105570521}
[DEBUG] [3/6] Benchmark réseau démarré
[DEBUG] Exec: iperf3 [-c 10.0.0.50 -p 5201 -J -t 10]
[DEBUG] Exec: ping [-c 1 -W 1 10.0.0.50]
[DEBUG] [3/6] Résultat réseau: {Upload:940.664427880744 Download:937.5859443181403 PingMs:0.414 JitterMs:<nil> PacketLossPct:<nil> Score:939.1251860994421}
[DEBUG] Résultats des benchmarks : {CPU:{EventsPerSec:37264.19 EventsPerSecSingle:5598.14 EventsPerSecMulti:68930.24 DurationSec:20.0004 Score:37264.19 ScoreSingle:5598.14 ScoreMulti:68930.24} Memory:{Throughput:8887.18 Score:8887.18} Disk:{ReadMBs:14347.2909625685 WriteMBs:1178.8572485725415 IOPSRead:10446.718443 IOPSWrite:10437.418753 LatencyMs:0.073467395336 Score:7763.074105570521} Network:{Upload:940.664427880744 Download:937.5859443181403 PingMs:0.414 JitterMs:<nil> PacketLossPct:<nil> Score:939.1251860994421} GPU:{GLMark2Score:<nil> Score:<nil>} GlobalScore:0}
[DEBUG] Poids benchmarks : map[cpu:0.4 disk:0.2 gpu:0.1 memory:0.2 network:0.1]
[DEBUG] Scores normalisés : cpu=1863.21 mem=88.87 disk=776.31 net=93.91
[DEBUG] Score global calculé : 92771.09
[DEBUG] Payload JSON (49195 octets) : {
"device_identifier": "aorus",
"bench_script_version": "1.6.6",
"bench_client_version": "1.0.2",
"hardware": {
"cpu": {
"vendor": "AuthenticAMD",
"model": "AMD Ryzen 9 5900X 12-Core Processor",
"cores": 12,
"threads": 24,
"base_freq_ghz": 4.951,
"max_freq_ghz": 4.951,
"cache_l1_kb": 64,
"cache_l2_kb": 512,
"cache_l3_kb": 32768,
"flags": [
"fpu",
"vme",
"de",
"pse",
"tsc",
"msr",
"pae",
"mce",
"cx8",
"apic",
"sep",
"mtrr",
"pge",
"mca",
"cmov",
"pat",
"pse36",
"clflush",
"mmx",
"fxsr",
"sse",
"sse2",
"ht",
"syscall",
"nx",
"mmxext",
"fxsr_opt",
"pdpe1gb",
"rdtscp",
"lm",
"constant_tsc",
"rep_good",
"nopl",
"xtopology",
"nonstop_tsc",
"cpuid",
"extd_apicid",
"aperfmperf",
"rapl",
"pni",
"pclmulqdq",
"monitor",
"ssse3",
"fma",
"cx16",
"sse4_1",
"sse4_2",
"x2apic",
"movbe",
"popcnt",
"aes",
"xsave",
"avx",
"f16c",
"rdrand",
"lahf_lm",
"cmp_legacy",
"svm",
"extapic",
"cr8_legacy",
"abm",
"sse4a",
"misalignsse",
"3dnowprefetch",
"osvw",
"ibs",
"skinit",
"wdt",
"tce",
"topoext",
"perfctr_core",
"perfctr_nb",
"bpext",
"perfctr_llc",
"mwaitx",
"cpb",
"cat_l3",
"cdp_l3",
"hw_pstate",
"ssbd",
"mba",
"ibrs",
"ibpb",
"stibp",
"vmmcall",
"fsgsbase",
"bmi1",
"avx2",
"smep",
"bmi2",
"erms",
"invpcid",
"cqm",
"rdt_a",
"rdseed",
"adx",
"smap",
"clflushopt",
"clwb",
"sha_ni",
"xsaveopt",
"xsavec",
"xgetbv1",
"xsaves",
"cqm_llc",
"cqm_occup_llc",
"cqm_mbm_total",
"cqm_mbm_local",
"user_shstk",
"clzero",
"irperf",
"xsaveerptr",
"rdpru",
"wbnoinvd",
"arat",
"npt",
"lbrv",
"svm_lock",
"nrip_save",
"tsc_scale",
"vmcb_clean",
"flushbyasid",
"decodeassists",
"pausefilter",
"pfthreshold",
"avic",
"v_vmsave_vmload",
"vgif",
"v_spec_ctrl",
"umip",
"pku",
"ospke",
"vaes",
"vpclmulqdq",
"rdpid",
"overflow_recov",
"succor",
"smca",
"fsrm",
"debug_swap"
],
"microarchitecture": "Zen",
"tdp_w": null
},
"ram": {
"total_mb": 48096,
"used_mb": 17518,
"free_mb": 30577,
"shared_mb": 976,
"slots_total": 10,
"slots_used": 4,
"max_capacity_mb": 48096,
"ecc": false,
"layout": [
{
"slot": "DIMM 0",
"size_mb": 16384,
"type": "DDR4",
"speed_mhz": 3200,
"configured_speed_mhz": 3200,
"form_factor": "DIMM",
"type_detail": "Synchronous Unbuffered (Unregistered)",
"rank": "2",
"manufacturer": "Unknown",
"part_number": "CMW32GX4M2E3200C16 "
},
{
"slot": "DIMM 1",
"size_mb": 8192,
"type": "DDR4",
"speed_mhz": 3200,
"configured_speed_mhz": 3200,
"form_factor": "DIMM",
"type_detail": "Synchronous Unbuffered (Unregistered)",
"rank": "1",
"manufacturer": "Unknown",
"part_number": "BL8G32C16U4BL.M8FE"
},
{
"slot": "DIMM 0",
"size_mb": 16384,
"type": "DDR4",
"speed_mhz": 3200,
"configured_speed_mhz": 3200,
"form_factor": "DIMM",
"type_detail": "Synchronous Unbuffered (Unregistered)",
"rank": "2",
"manufacturer": "Unknown",
"part_number": "CMW32GX4M2E3200C16 "
},
{
"slot": "DIMM 1",
"size_mb": 8192,
"type": "DDR4",
"speed_mhz": 3200,
"configured_speed_mhz": 3200,
"form_factor": "DIMM",
"type_detail": "Synchronous Unbuffered (Unregistered)",
"rank": "1",
"manufacturer": "Unknown",
"part_number": "BL8G32C16U4BL.M8FE"
}
]
},
"gpu": {
"vendor": "NVIDIA",
"model": "NVIDIA GeForce RTX 3060",
"driver_version": "550.163.01",
"memory_dedicated_mb": 12288,
"memory_shared_mb": null,
"api_support": null
},
"storage": {
"devices": [
{
"name": "/dev/nvme0n1",
"type": "ssd",
"interface": "nvme",
"capacity_gb": 465.7617416381836,
"vendor": "CT500P2SSD8",
"model": "CT500P2SSD8",
"serial": "2138E5D60DD8",
"smart_health": "PASSED",
"temperature_c": 34
},
{
"name": "/dev/nvme1n1",
"type": "",
"interface": "nvme",
"capacity_gb": 465.7617416381836,
"vendor": "CT500P2SSD8",
"model": "CT500P2SSD8",
"serial": "2108E4FD258D",
"smart_health": "PASSED",
"temperature_c": 32
},
{
"name": "/dev/sda",
"type": "",
"interface": "sata",
"capacity_gb": 447.13167572021484,
"vendor": "ATA ",
"model": "KINGSTON SUV500480G",
"serial": "50026B768226A365",
"smart_health": "PASSED",
"temperature_c": 25
},
{
"name": "/dev/sdb",
"type": "",
"interface": "usb",
"capacity_gb": 0,
"vendor": "Generic-",
"model": "Compact Flash",
"serial": "058F63626479",
"smart_health": "UNAVAILABLE",
"temperature_c": 0
},
{
"name": "/dev/sdc",
"type": "",
"interface": "usb",
"capacity_gb": 0,
"vendor": "Generic-",
"model": "SD/MMC",
"serial": "058F63626479",
"smart_health": "UNAVAILABLE",
"temperature_c": 0
},
{
"name": "/dev/sdd",
"type": "",
"interface": "usb",
"capacity_gb": 0,
"vendor": "Generic-",
"model": "MS/MS-PRO",
"serial": "058F63626479",
"smart_health": "UNAVAILABLE",
"temperature_c": 0
},
{
"name": "/dev/sde",
"type": "",
"interface": "usb",
"capacity_gb": 0,
"vendor": "Generic-",
"model": "xD-Picture",
"serial": "058F63626479",
"smart_health": "UNAVAILABLE",
"temperature_c": 0
}
],
"partitions": [
{
"name": "/dev/nvme0n1p2",
"mount_point": "/",
"fs_type": "ext4",
"total_gb": 432.80120849609375,
"used_gb": 349.35082626342773,
"free_gb": 61.395206451416016
},
{
"name": "/dev/nvme0n1p1",
"mount_point": "/boot/efi",
"fs_type": "vfat",
"total_gb": 0.9512481689453125,
"used_gb": 0.008571624755859375,
"free_gb": 0.9426765441894531
}
]
},
"pci_devices": [
{
"slot": "00:00.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse Root Complex"
},
{
"slot": "00:00.2",
"class": "IOMMU",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse IOMMU"
},
{
"slot": "00:01.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:01.1",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse GPP Bridge"
},
{
"slot": "00:01.3",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse GPP Bridge"
},
{
"slot": "00:02.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:03.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:03.1",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse GPP Bridge"
},
{
"slot": "00:04.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:05.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:07.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:07.1",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]"
},
{
"slot": "00:08.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Host Bridge"
},
{
"slot": "00:08.1",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse Internal PCIe GPP Bridge 0 to bus[E:B]"
},
{
"slot": "00:14.0",
"class": "SMBus",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "FCH SMBus Controller"
},
{
"slot": "00:14.3",
"class": "ISA bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "FCH LPC Bridge"
},
{
"slot": "00:18.0",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 0"
},
{
"slot": "00:18.1",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 1"
},
{
"slot": "00:18.2",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 2"
},
{
"slot": "00:18.3",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 3"
},
{
"slot": "00:18.4",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 4"
},
{
"slot": "00:18.5",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 5"
},
{
"slot": "00:18.6",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 6"
},
{
"slot": "00:18.7",
"class": "Host bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse/Vermeer Data Fabric: Device 18h; Function 7"
},
{
"slot": "01:00.0",
"class": "Non-Volatile memory controller",
"vendor": "Micron/Crucial Technology",
"device": "P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)"
},
{
"slot": "02:00.0",
"class": "USB controller",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset USB 3.1 xHCI Compliant Host Controller"
},
{
"slot": "02:00.1",
"class": "SATA controller",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset SATA Controller"
},
{
"slot": "02:00.2",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset PCIe Bridge"
},
{
"slot": "03:00.0",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset PCIe Port"
},
{
"slot": "03:01.0",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset PCIe Port"
},
{
"slot": "03:04.0",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset PCIe Port"
},
{
"slot": "03:08.0",
"class": "PCI bridge",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "400 Series Chipset PCIe Port"
},
{
"slot": "04:00.0",
"class": "Ethernet controller",
"vendor": "Realtek Semiconductor Co., Ltd.",
"device": "RTL8111/8168/8211/8411 PCI Express Gigabit Ethernet Controller"
},
{
"slot": "07:00.0",
"class": "Non-Volatile memory controller",
"vendor": "Micron/Crucial Technology",
"device": "P2 [Nick P2] / P3 / P3 Plus NVMe PCIe SSD (DRAM-less)"
},
{
"slot": "08:00.0",
"class": "VGA compatible controller",
"vendor": "NVIDIA Corporation",
"device": "GA106 [GeForce RTX 3060 Lite Hash Rate]"
},
{
"slot": "08:00.1",
"class": "Audio device",
"vendor": "NVIDIA Corporation",
"device": "GA106 High Definition Audio Controller"
},
{
"slot": "09:00.0",
"class": "Non-Essential Instrumentation [1300]",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse PCIe Dummy Function"
},
{
"slot": "0a:00.0",
"class": "Non-Essential Instrumentation [1300]",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse Reserved SPP"
},
{
"slot": "0a:00.1",
"class": "Encryption controller",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse Cryptographic Coprocessor PSPCPP"
},
{
"slot": "0a:00.3",
"class": "USB controller",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Matisse USB 3.0 Host Controller"
},
{
"slot": "0a:00.4",
"class": "Audio device",
"vendor": "Advanced Micro Devices, Inc. [AMD]",
"device": "Starship/Matisse HD Audio Controller"
}
],
"usb_devices": [
{
"bus": "001",
"device": "001",
"vendor_id": "1d6b",
"product_id": "0002",
"name": "Linux Foundation 2.0 root hub"
},
{
"bus": "001",
"device": "002",
"vendor_id": "058f",
"product_id": "6362",
"name": "Alcor Micro Corp. Flash Card Reader/Writer"
},
{
"bus": "002",
"device": "001",
"vendor_id": "1d6b",
"product_id": "0003",
"name": "Linux Foundation 3.0 root hub"
},
{
"bus": "003",
"device": "001",
"vendor_id": "1d6b",
"product_id": "0002",
"name": "Linux Foundation 2.0 root hub"
},
{
"bus": "003",
"device": "003",
"vendor_id": "046d",
"product_id": "c52b",
"name": "Logitech, Inc. Unifying Receiver"
},
{
"bus": "003",
"device": "004",
"vendor_id": "0bda",
"product_id": "b711",
"name": "Realtek Semiconductor Corp. RTL8188GU 802.11n WLAN Adapter (After Modeswitch)"
},
{
"bus": "004",
"device": "001",
"vendor_id": "1d6b",
"product_id": "0003",
"name": "Linux Foundation 3.0 root hub"
}
],
"network_shares": [],
"network": {
"interfaces": [
{
"name": "eno1",
"type": "ethernet",
"mac": "18:c0:4d:b5:65:74",
"ip": "10.0.1.109",
"speed_mbps": 1000,
"driver": "r8169",
"ssid": "",
"wake_on_lan": false
},
{
"name": "wlxe84e06a6c1fc",
"type": "wifi",
"mac": "12:07:f2:19:7a:9b",
"ip": "",
"speed_mbps": null,
"driver": "rtl8xxxu",
"ssid": "",
"wake_on_lan": false
}
]
},
"motherboard": {
"vendor": "Gigabyte Technology Co., Ltd.",
"model": "B450 AORUS ELITE",
"bios_vendor": "American Megatrends International, LLC.",
"bios_version": "F65e",
"bios_date": "09/20/2023"
},
"os": {
"name": "Debian GNU/Linux",
"version": "13 (trixie)",
"kernel_version": "6.12.57+deb13-amd64",
"architecture": "x86_64",
"session_type": "",
"display_server": "",
"screen_resolution": "5560 x 1920",
"last_boot_time": "démarrage système 2026-01-11 09:11",
"uptime_seconds": 45512,
"battery_percentage": null,
"battery_status": "",
"battery_health": "",
"hostname": "aorus",
"virtualization_type": "kvm-host",
"desktop_environment": "GNOME"
},
"sensors": {
"cpu_temp_c": null,
"disk_temps_c": {
"nvme-pci-0100:Composite": 33.85,
"nvme-pci-0700:Composite": 31.85
},
"sensors": [
{
"chip": "nvme-pci-0700",
"name": "Composite",
"type": "temperature",
"value": 31.85,
"unit": "°C",
"alarm": false
},
{
"chip": "acpitz-acpi-0",
"name": "temp1",
"type": "temperature",
"value": 16.8,
"unit": "°C",
"alarm": false
},
{
"chip": "k10temp-pci-00c3",
"name": "Tctl",
"type": "temperature",
"value": 43.875,
"unit": "°C",
"alarm": false
},
{
"chip": "k10temp-pci-00c3",
"name": "Tccd1",
"type": "temperature",
"value": 40.25,
"unit": "°C",
"alarm": false
},
{
"chip": "k10temp-pci-00c3",
"name": "Tccd2",
"type": "temperature",
"value": 27.5,
"unit": "°C",
"alarm": false
},
{
"chip": "nvme-pci-0100",
"name": "Composite",
"type": "temperature",
"value": 33.85,
"unit": "°C",
"alarm": false
}
]
},
"audio": {
"hardware": {
"pci_audio_devices": [
"08:00.1 Audio device: NVIDIA Corporation GA106 High Definition Audio Controller (rev a1)",
"0a:00.4 Audio device: Advanced Micro Devices, Inc. [AMD] Starship/Matisse HD Audio Controller"
],
"alsa_playback": "**** Liste des périphériques matériels PLAYBACK ****\ncarte 0 : NVidia [HDA NVidia], périphérique 3 : HDMI 0 [LG ULTRAWIDE]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\ncarte 0 : NVidia [HDA NVidia], périphérique 7 : HDMI 1 [K243Y]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\ncarte 0 : NVidia [HDA NVidia], périphérique 8 : HDMI 2 [HDMI 2]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\ncarte 0 : NVidia [HDA NVidia], périphérique 9 : HDMI 3 [HDMI 3]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\ncarte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]\n Sous-périphériques : 0/1\n Sous-périphérique #0 : subdevice #0\ncarte 1 : Generic [HD-Audio Generic], périphérique 1 : ALC892 Digital [ALC892 Digital]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\n",
"alsa_capture": "**** Liste des périphériques matériels CAPTURE ****\ncarte 1 : Generic [HD-Audio Generic], périphérique 0 : ALC892 Analog [ALC892 Analog]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\ncarte 1 : Generic [HD-Audio Generic], périphérique 2 : ALC892 Alt Analog [ALC892 Alt Analog]\n Sous-périphériques : 1/1\n Sous-périphérique #0 : subdevice #0\n",
"pcm_devices": [
"null",
"Discard all samples (playback) or generate zero samples (capture)",
"pipewire",
"PipeWire Sound Server",
"default",
"Default ALSA Output (currently PipeWire Media Server)",
"hw:CARD=NVidia,DEV=3",
"HDA NVidia, LG ULTRAWIDE",
"Direct hardware device without any conversions",
"hw:CARD=NVidia,DEV=7",
"HDA NVidia, K243Y",
"Direct hardware device without any conversions",
"hw:CARD=NVidia,DEV=8",
"HDA NVidia, HDMI 2",
"Direct hardware device without any conversions",
"hw:CARD=NVidia,DEV=9",
"HDA NVidia, HDMI 3",
"Direct hardware device without any conversions",
"plughw:CARD=NVidia,DEV=3",
"HDA NVidia, LG ULTRAWIDE",
"Hardware device with all software conversions",
"plughw:CARD=NVidia,DEV=7",
"HDA NVidia, K243Y",
"Hardware device with all software conversions",
"plughw:CARD=NVidia,DEV=8",
"HDA NVidia, HDMI 2",
"Hardware device with all software conversions",
"plughw:CARD=NVidia,DEV=9",
"HDA NVidia, HDMI 3",
"Hardware device with all software conversions",
"hdmi:CARD=NVidia,DEV=0",
"HDA NVidia, LG ULTRAWIDE",
"HDMI Audio Output",
"hdmi:CARD=NVidia,DEV=1",
"HDA NVidia, K243Y",
"HDMI Audio Output",
"hdmi:CARD=NVidia,DEV=2",
"HDA NVidia, HDMI 2",
"HDMI Audio Output",
"hdmi:CARD=NVidia,DEV=3",
"HDA NVidia, HDMI 3",
"HDMI Audio Output",
"dmix:CARD=NVidia,DEV=3",
"HDA NVidia, LG ULTRAWIDE",
"Direct sample mixing device",
"dmix:CARD=NVidia,DEV=7",
"HDA NVidia, K243Y",
"Direct sample mixing device",
"dmix:CARD=NVidia,DEV=8",
"HDA NVidia, HDMI 2",
"Direct sample mixing device",
"dmix:CARD=NVidia,DEV=9",
"HDA NVidia, HDMI 3",
"Direct sample mixing device",
"hw:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"Direct hardware device without any conversions",
"hw:CARD=Generic,DEV=1",
"HD-Audio Generic, ALC892 Digital",
"Direct hardware device without any conversions",
"plughw:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"Hardware device with all software conversions",
"plughw:CARD=Generic,DEV=1",
"HD-Audio Generic, ALC892 Digital",
"Hardware device with all software conversions",
"sysdefault:CARD=Generic",
"HD-Audio Generic, ALC892 Analog",
"Default Audio Device",
"front:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"Front output / input",
"surround21:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"2.1 Surround output to Front and Subwoofer speakers",
"surround40:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"4.0 Surround output to Front and Rear speakers",
"surround41:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"4.1 Surround output to Front, Rear and Subwoofer speakers",
"surround50:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"5.0 Surround output to Front, Center and Rear speakers",
"surround51:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"5.1 Surround output to Front, Center, Rear and Subwoofer speakers",
"surround71:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"7.1 Surround output to Front, Center, Side, Rear and Woofer speakers",
"iec958:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Digital",
"IEC958 (S/PDIF) Digital Audio Output",
"dmix:CARD=Generic,DEV=0",
"HD-Audio Generic, ALC892 Analog",
"Direct sample mixing device",
"dmix:CARD=Generic,DEV=1",
"HD-Audio Generic, ALC892 Digital",
"Direct sample mixing device"
]
},
"software": {
"backend": "",
"server_name": "",
"server_version": "",
"default_sink": null,
"default_source": null,
"sinks": null,
"sources": null
}
},
"raw_info": {
"debug": "active",
"dmidecode": "# dmidecode 3.6\nGetting SMBIOS data from sysfs.\nSMBIOS 3.3.0 present.\n\nHandle 0x0000, DMI type 0, 26 bytes\nBIOS Information\n\tVendor: American Megatrends International, LLC.\n\tVersion: F65e\n\tRelease Date: 09/20/2023\n\tAddress: 0xF0000\n\tRuntime Size: 64 kB\n\tROM Size: 16 MB\n\tCharacteristics:\n\t\tPCI is supported\n\t\tBIOS is upgradeable\n\t\tBIOS shadowing is allowed\n\t\tBoot from CD is supported\n\t\tSelectable boot is supported\n\t\tBIOS ROM is socketed\n\t\tEDD is supported\n\t\tJapanese floppy for NEC 9800 1.2 MB is supported (int 13h)\n\t\tJapanese floppy for Toshiba 1.2 MB is supported (int 13h)\n\t\t5.25\"/360 kB floppy services are supported (int 13h)\n\t\t5.25\"/1.2 MB floppy services are supported (int 13h)\n\t\t3.5\"/720 kB floppy services are supported (int 13h)\n\t\t3.5\"/2.88 MB floppy services are supported (int 13h)\n\t\tPrint screen service is supported (int 5h)\n\t\tSerial services are supported (int 14h)\n\t\tPrinter services are supported (int 17h)\n\t\tCGA/mono video services are supported (int 10h)\n\t\tUSB legacy is supported\n\t\tBIOS boot specification is supported\n\t\tTargeted content distribution is supported\n\t\tUEFI is supported\n\tBIOS Revision: 5.17\n\nHandle 0x0001, DMI type 1, 27 bytes\nSystem Information\n\tManufacturer: Gigabyte Technology Co., Ltd.\n\tProduct Name: B450 AORUS ELITE\n\tVersion: Default string\n\tSerial Number: Default string\n\tUUID: 03c00218-044d-05b5-6506-740700080009\n\tWake-up Type: Power Switch\n\tSKU Number: Default string\n\tFamily: B450 MB\n\nHandle 0x0002, DMI type 2, 15 bytes\nBase Board Information\n\tManufacturer: Gigabyte Technology Co., Ltd.\n\tProduct Name: B450 AORUS ELITE\n\tVersion: Default string\n\tSerial Number: Default string\n\tAsset Tag: Default string\n\tFeatures:\n\t\tBoard is a hosting board\n\t\tBoard is replaceable\n\tLocation In Chassis: Default string\n\tChassis Handle: 0x0003\n\tType: Motherboard\n\tContained Object Handles: 0\n\nHandle 0x000B, DMI type 16, 23 bytes\nPhysical Memory Array\n\tLocation: System Board Or Motherboard\n\tUse: System Memory\n\tError Correction Type: None\n\tMaximum Capacity: 128 GB\n\tError Information Handle: 0x000A\n\tNumber Of Devices: 4\n\nHandle 0x0013, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0012\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 16 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 0\n\tBank Locator: P0 CHANNEL A\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: 00000000\n\tAsset Tag: Not Specified\n\tPart Number: CMW32GX4M2E3200C16 \n\tRank: 2\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: Unknown\n\tMaximum Voltage: Unknown\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 3, Hex 0x9E\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 16 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x0016, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0015\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 8 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 1\n\tBank Locator: P0 CHANNEL A\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: E3C4408B\n\tAsset Tag: Not Specified\n\tPart Number: BL8G32C16U4BL.M8FE\n\tRank: 1\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: 1.2 V\n\tMaximum Voltage: 1.2 V\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 6, Hex 0x9B\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 8 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x0019, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0018\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 16 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 0\n\tBank Locator: P0 CHANNEL B\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: 00000000\n\tAsset Tag: Not Specified\n\tPart Number: CMW32GX4M2E3200C16 \n\tRank: 2\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: Unknown\n\tMaximum Voltage: Unknown\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 3, Hex 0x9E\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 16 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x001C, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x001B\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 8 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 1\n\tBank Locator: P0 CHANNEL B\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: E3C44087\n\tAsset Tag: Not Specified\n\tPart Number: BL8G32C16U4BL.M8FE\n\tRank: 1\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: 1.2 V\n\tMaximum Voltage: 1.2 V\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 6, Hex 0x9B\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 8 GB\n\tCache Size: None\n\tLogical Size: None\n\n",
"lsblk": "NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS\nloop0 7:0 0 118,5M 1 loop /snap/iptvnator/92\nloop1 7:1 0 48,1M 1 loop /snap/snapd/25935\nloop2 7:2 0 50,9M 1 loop /snap/snapd/25577\nloop3 7:3 0 4K 1 loop /snap/bare/5\nloop4 7:4 0 91,7M 1 loop /snap/gtk-common-themes/1535\nloop5 7:5 0 55,5M 1 loop /snap/core18/2976\nloop6 7:6 0 164,8M 1 loop /snap/gnome-3-28-1804/198\nloop7 7:7 0 0B 0 loop \nsda 8:0 0 447,1G 0 disk \n└─sda1 8:1 0 447,1G 0 part \nsdb 8:16 1 0B 0 disk \nsdc 8:32 1 0B 0 disk \nsdd 8:48 1 0B 0 disk \nsde 8:64 1 0B 0 disk \nnvme0n1 259:0 0 465,8G 0 disk \n├─nvme0n1p1 259:1 0 976M 0 part /boot/efi\n├─nvme0n1p2 259:2 0 440,8G 0 part /\n└─nvme0n1p3 259:3 0 24G 0 part [SWAP]\nnvme1n1 259:4 0 465,8G 0 disk \n├─nvme1n1p1 259:5 0 50M 0 part \n├─nvme1n1p2 259:6 0 464,3G 0 part \n├─nvme1n1p3 259:7 0 808M 0 part \n├─nvme1n1p4 259:8 0 100M 0 part \n└─nvme1n1p5 259:9 0 522M 0 part \n",
"lscpu": "Architecture : x86_64\nMode(s) opératoire(s) des processeurs : 32-bit, 64-bit\nTailles des adresses: 48 bits physical, 48 bits virtual\nBoutisme : Little Endian\nProcesseur(s) : 24\nListe de processeur(s) en ligne : 0-23\nIdentifiant constructeur : AuthenticAMD\nNom de modèle : AMD Ryzen 9 5900X 12-Core Processor\nFamille de processeur : 25\nModèle : 33\nThread(s) par cœur : 2\nCœur(s) par socket : 12\nSocket(s) : 1\nRévision : 2\nAccroissement de fréquence : activé\nmultiplication des MHz du/des CPU(s) : 79%\nVitesse maximale du processeur en MHz : 4951,0000\nVitesse minimale du processeur en MHz : 550,0000\nBogoMIPS : 7399,98\nDrapeaux : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local user_shstk clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm debug_swap\nVirtualisation : AMD-V\nCache L1d : 384 KiB (12 instances)\nCache L1i : 384 KiB (12 instances)\nCache L2 : 6 MiB (12 instances)\nCache L3 : 64 MiB (2 instances)\nNœud(s) NUMA : 1\nNœud NUMA 0 de processeur(s) : 0-23\nVulnérabilité Gather data sampling : Not affected\nVulnérabilité Indirect target selection : Not affected\nVulnérabilité Itlb multihit : Not affected\nVulnérabilité L1tf : Not affected\nVulnérabilité Mds : Not affected\nVulnérabilité Meltdown : Not affected\nVulnérabilité Mmio stale data : Not affected\nVulnérabilité Reg file data sampling : Not affected\nVulnérabilité Retbleed : Not affected\nVulnérabilité Spec rstack overflow : Mitigation; Safe RET\nVulnérabilité Spec store bypass : Mitigation; Speculative Store Bypass disabled via prctl\nVulnérabilité Spectre v1 : Mitigation; usercopy/swapgs barriers and __user pointer sanitization\nVulnérabilité Spectre v2 : Mitigation; Retpolines; IBPB conditional; IBRS_FW; STIBP always-on; RSB filling; PBRSB-eIBRS Not affected; BHI Not affected\nVulnérabilité Srbds : Not affected\nVulnérabilité Tsa : Vulnerable: Clear CPU buffers attempted, no microcode\nVulnérabilité Tsx async abort : Not affected\nVulnérabilité Vmscape : Mitigation; IBPB before exit to userspace\n"
}
},
"results": {
"cpu": {
"events_per_sec": 37264.19,
"events_per_sec_single": 5598.14,
"events_per_sec_multi": 68930.24,
"duration_s": 20.0004,
"score": 37264.19,
"score_single": 5598.14,
"score_multi": 68930.24
},
"memory": {
"throughput_mib_s": 8887.18,
"score": 8887.18
},
"disk": {
"read_mb_s": 14347.2909625685,
"write_mb_s": 1178.8572485725415,
"iops_read": 10446.718443,
"iops_write": 10437.418753,
"latency_ms": 0.073467395336,
"score": 7763.074105570521
},
"network": {
"upload_mbps": 940.664427880744,
"download_mbps": 937.5859443181403,
"ping_ms": 0.414,
"jitter_ms": null,
"packet_loss_percent": null,
"score": 939.1251860994421
},
"gpu": {
"glmark2_score": null,
"score": null
},
"global_score": 92771.0893972405
},
"raw_info": {
"debug": "active",
"dmidecode": "# dmidecode 3.6\nGetting SMBIOS data from sysfs.\nSMBIOS 3.3.0 present.\n\nHandle 0x0000, DMI type 0, 26 bytes\nBIOS Information\n\tVendor: American Megatrends International, LLC.\n\tVersion: F65e\n\tRelease Date: 09/20/2023\n\tAddress: 0xF0000\n\tRuntime Size: 64 kB\n\tROM Size: 16 MB\n\tCharacteristics:\n\t\tPCI is supported\n\t\tBIOS is upgradeable\n\t\tBIOS shadowing is allowed\n\t\tBoot from CD is supported\n\t\tSelectable boot is supported\n\t\tBIOS ROM is socketed\n\t\tEDD is supported\n\t\tJapanese floppy for NEC 9800 1.2 MB is supported (int 13h)\n\t\tJapanese floppy for Toshiba 1.2 MB is supported (int 13h)\n\t\t5.25\"/360 kB floppy services are supported (int 13h)\n\t\t5.25\"/1.2 MB floppy services are supported (int 13h)\n\t\t3.5\"/720 kB floppy services are supported (int 13h)\n\t\t3.5\"/2.88 MB floppy services are supported (int 13h)\n\t\tPrint screen service is supported (int 5h)\n\t\tSerial services are supported (int 14h)\n\t\tPrinter services are supported (int 17h)\n\t\tCGA/mono video services are supported (int 10h)\n\t\tUSB legacy is supported\n\t\tBIOS boot specification is supported\n\t\tTargeted content distribution is supported\n\t\tUEFI is supported\n\tBIOS Revision: 5.17\n\nHandle 0x0001, DMI type 1, 27 bytes\nSystem Information\n\tManufacturer: Gigabyte Technology Co., Ltd.\n\tProduct Name: B450 AORUS ELITE\n\tVersion: Default string\n\tSerial Number: Default string\n\tUUID: 03c00218-044d-05b5-6506-740700080009\n\tWake-up Type: Power Switch\n\tSKU Number: Default string\n\tFamily: B450 MB\n\nHandle 0x0002, DMI type 2, 15 bytes\nBase Board Information\n\tManufacturer: Gigabyte Technology Co., Ltd.\n\tProduct Name: B450 AORUS ELITE\n\tVersion: Default string\n\tSerial Number: Default string\n\tAsset Tag: Default string\n\tFeatures:\n\t\tBoard is a hosting board\n\t\tBoard is replaceable\n\tLocation In Chassis: Default string\n\tChassis Handle: 0x0003\n\tType: Motherboard\n\tContained Object Handles: 0\n\nHandle 0x000B, DMI type 16, 23 bytes\nPhysical Memory Array\n\tLocation: System Board Or Motherboard\n\tUse: System Memory\n\tError Correction Type: None\n\tMaximum Capacity: 128 GB\n\tError Information Handle: 0x000A\n\tNumber Of Devices: 4\n\nHandle 0x0013, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0012\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 16 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 0\n\tBank Locator: P0 CHANNEL A\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: 00000000\n\tAsset Tag: Not Specified\n\tPart Number: CMW32GX4M2E3200C16 \n\tRank: 2\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: Unknown\n\tMaximum Voltage: Unknown\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 3, Hex 0x9E\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 16 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x0016, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0015\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 8 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 1\n\tBank Locator: P0 CHANNEL A\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: E3C4408B\n\tAsset Tag: Not Specified\n\tPart Number: BL8G32C16U4BL.M8FE\n\tRank: 1\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: 1.2 V\n\tMaximum Voltage: 1.2 V\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 6, Hex 0x9B\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 8 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x0019, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x0018\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 16 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 0\n\tBank Locator: P0 CHANNEL B\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: 00000000\n\tAsset Tag: Not Specified\n\tPart Number: CMW32GX4M2E3200C16 \n\tRank: 2\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: Unknown\n\tMaximum Voltage: Unknown\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 3, Hex 0x9E\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 16 GB\n\tCache Size: None\n\tLogical Size: None\n\nHandle 0x001C, DMI type 17, 92 bytes\nMemory Device\n\tArray Handle: 0x000B\n\tError Information Handle: 0x001B\n\tTotal Width: 64 bits\n\tData Width: 64 bits\n\tSize: 8 GB\n\tForm Factor: DIMM\n\tSet: None\n\tLocator: DIMM 1\n\tBank Locator: P0 CHANNEL B\n\tType: DDR4\n\tType Detail: Synchronous Unbuffered (Unregistered)\n\tSpeed: 3200 MT/s\n\tManufacturer: Unknown\n\tSerial Number: E3C44087\n\tAsset Tag: Not Specified\n\tPart Number: BL8G32C16U4BL.M8FE\n\tRank: 1\n\tConfigured Memory Speed: 3200 MT/s\n\tMinimum Voltage: 1.2 V\n\tMaximum Voltage: 1.2 V\n\tConfigured Voltage: 1.2 V\n\tMemory Technology: DRAM\n\tMemory Operating Mode Capability: Volatile memory\n\tFirmware Version: Unknown\n\tModule Manufacturer ID: Bank 6, Hex 0x9B\n\tModule Product ID: Unknown\n\tMemory Subsystem Controller Manufacturer ID: Unknown\n\tMemory Subsystem Controller Product ID: Unknown\n\tNon-Volatile Size: None\n\tVolatile Size: 8 GB\n\tCache Size: None\n\tLogical Size: None\n\n",
"lsblk": "NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS\nloop0 7:0 0 118,5M 1 loop /snap/iptvnator/92\nloop1 7:1 0 48,1M 1 loop /snap/snapd/25935\nloop2 7:2 0 50,9M 1 loop /snap/snapd/25577\nloop3 7:3 0 4K 1 loop /snap/bare/5\nloop4 7:4 0 91,7M 1 loop /snap/gtk-common-themes/1535\nloop5 7:5 0 55,5M 1 loop /snap/core18/2976\nloop6 7:6 0 164,8M 1 loop /snap/gnome-3-28-1804/198\nloop7 7:7 0 0B 0 loop \nsda 8:0 0 447,1G 0 disk \n└─sda1 8:1 0 447,1G 0 part \nsdb 8:16 1 0B 0 disk \nsdc 8:32 1 0B 0 disk \nsdd 8:48 1 0B 0 disk \nsde 8:64 1 0B 0 disk \nnvme0n1 259:0 0 465,8G 0 disk \n├─nvme0n1p1 259:1 0 976M 0 part /boot/efi\n├─nvme0n1p2 259:2 0 440,8G 0 part /\n└─nvme0n1p3 259:3 0 24G 0 part [SWAP]\nnvme1n1 259:4 0 465,8G 0 disk \n├─nvme1n1p1 259:5 0 50M 0 part \n├─nvme1n1p2 259:6 0 464,3G 0 part \n├─nvme1n1p3 259:7 0 808M 0 part \n├─nvme1n1p4 259:8 0 100M 0 part \n└─nvme1n1p5 259:9 0 522M 0 part \n",
"lscpu": "Architecture : x86_64\nMode(s) opératoire(s) des processeurs : 32-bit, 64-bit\nTailles des adresses: 48 bits physical, 48 bits virtual\nBoutisme : Little Endian\nProcesseur(s) : 24\nListe de processeur(s) en ligne : 0-23\nIdentifiant constructeur : AuthenticAMD\nNom de modèle : AMD Ryzen 9 5900X 12-Core Processor\nFamille de processeur : 25\nModèle : 33\nThread(s) par cœur : 2\nCœur(s) par socket : 12\nSocket(s) : 1\nRévision : 2\nAccroissement de fréquence : activé\nmultiplication des MHz du/des CPU(s) : 79%\nVitesse maximale du processeur en MHz : 4951,0000\nVitesse minimale du processeur en MHz : 550,0000\nBogoMIPS : 7399,98\nDrapeaux : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl xtopology nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibrs ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 erms invpcid cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 xsaves cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local user_shstk clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip pku ospke vaes vpclmulqdq rdpid overflow_recov succor smca fsrm debug_swap\nVirtualisation : AMD-V\nCache L1d : 384 KiB (12 instances)\nCache L1i : 384 KiB (12 instances)\nCache L2 : 6 MiB (12 instances)\nCache L3 : 64 MiB (2 instances)\nNœud(s) NUMA : 1\nNœud NUMA 0 de processeur(s) : 0-23\nVulnérabilité Gather data sampling : Not affected\nVulnérabilité Indirect target selection : Not affected\nVulnérabilité Itlb multihit : Not affected\nVulnérabilité L1tf : Not affected\nVulnérabilité Mds : Not affected\nVulnérabilité Meltdown : Not affected\nVulnérabilité Mmio stale data : Not affected\nVulnérabilité Reg file data sampling : Not affected\nVulnérabilité Retbleed : Not affected\nVulnérabilité Spec rstack overflow : Mitigation; Safe RET\nVulnérabilité Spec store bypass : Mitigation; Speculative Store Bypass disabled via prctl\nVulnérabilité Spectre v1 : Mitigation; usercopy/swapgs barriers and __user pointer sanitization\nVulnérabilité Spectre v2 : Mitigation; Retpolines; IBPB conditional; IBRS_FW; STIBP always-on; RSB filling; PBRSB-eIBRS Not affected; BHI Not affected\nVulnérabilité Srbds : Not affected\nVulnérabilité Tsa : Vulnerable: Clear CPU buffers attempted, no microcode\nVulnérabilité Tsx async abort : Not affected\nVulnérabilité Vmscape : Mitigation; IBPB before exit to userspace\n"
}
}
[DEBUG] Payload sauvegardé au format JSON dans bench_payload_last.json (49195 octets)