Linux sensor display: Difference between revisions
(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 ((...") |
|||
| Line 11: | Line 11: | ||
[[category:portable]] | [[category:portable]] | ||
[[category:index]] | [[category:index]] | ||
[[category:live boot]] | |||
[[category:public]] | |||
Revision as of 10:21, 20 August 2025
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