Files
oam/knowledge base/lm-sensors.md
2023-07-09 20:48:18 +02:00

797 B

LM-sensors

Table of contents

  1. TL;DR
  2. Sources

TL;DR

# Install.
sudo dnf install lm_sensors

# Detect and generate a list of kernel modules.
# Needs to be executed prior of the next commands.
sudo sensors-detect

# Show the current readings of all sensors.
sensors

# Display sensor information in raw output.
# Suitable for parsing.
sensors -u

# Show temperatures in degrees Fahrenheit.
sensors -f
sensors --fahrenheit

Sources