LinuxCommandLibrary

sensors

TLDR

Show current readings of all sensor chips

$ sensors
copy
Show temperatures in Fahrenheit
$ sensors --fahrenheit
copy
Show output in raw format
$ sensors -u
copy
Show only a specific chip
$ sensors [chip_name]
copy

SYNOPSIS

sensors [options] [chip...]

DESCRIPTION

sensors displays the current readings of all sensor chips supported by libsensors. This includes CPU temperatures, fan speeds, voltages, and other hardware monitoring data.
The output is organized by chip, showing adapter type and individual sensor readings with current values, limits, and alarm status.

PARAMETERS

-f, --fahrenheit

Show temperatures in Fahrenheit
-u
Raw output format
-A
Do not show chip adapters
-j
Output in JSON format
--no-adapter
Do not show adapter information

CAVEATS

Requires the lm-sensors package. Run sensors-detect first to detect and configure available sensors. Some sensors may require kernel modules to be loaded. Part of the lm-sensors package.

SEE ALSO

Copied to clipboard