Linux sensor display

From regional-training
Revision as of 10:21, 20 August 2025 by Ralph (talk | contribs) (Created page with "You can scan and display temperature and voltage sensors for AMD and OPCI devices, e.g. within a Laptop or NUC by following these instructions. The software suite is written in PhP and easily temporarily installable from a Live Boot image - which will not persist on the computer you are testing. See Repurposing computer equipment for live boot testing. * install the lm-sensors package apt install lm-sensors * detect the sensors sensors-detect * now display for ((...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

You can scan and display temperature and voltage sensors for AMD and OPCI devices, e.g. within a Laptop or NUC by following these instructions. The software suite is written in PhP and easily temporarily installable from a Live Boot image - which will not persist on the computer you are testing. See Repurposing computer equipment for live boot testing.

  • install the lm-sensors package
apt install lm-sensors
  • detect the sensors
sensors-detect
  • now display
for (( ; ; )) do sensors; sleep 30; done

categories