System Monitoring Capabilities with lm-sensors
Unlock the potential of system monitoring with lm-sensors, a powerful tool for retrieving temperature and voltage data from sensors on your hardware components.
Detect sensors automatically
Dump Temperature in Celsius
Print Temperatures in Fahrenheit
Print Sensors with JSON Output
Setting Up Sensor Detection
Print Critical Alarms Only
Display Adapter for Each Chip
Display cpu temperatures for a specifik chip
sensors -u coretemp-isa-0000
Monitor cpu temps in realtime
while :; do sensors|grep ^Core|while read x; do printf '% .23s\n' "$x"; done; sleep 1 && clear; done;