root@nuc3:~# ls /var/lib/incus-lxcfs/sys/devices/system/cpu/
cpu0 cpu2 cpufreq crash_hotplug intel_pstate kernel_max modalias offline online power smt umwait_control
cpu1 cpu3 cpuidle hotplug isolated microcode nohz_full online possible present uevent vulnerabilities
root@nuc3:~# python3
Python 3.10.12 (main, Mar 3 2026, 11:56:32) [GCC 11.4.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import os
>>> [f for f in os.listdir("/var/lib/incus-lxcfs/sys/devices/system/cpu") if f == "online"]
['online', 'online']
>>>