mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-09 05:44:23 +00:00
Added KB page about sensors and temperature checking
This commit is contained in:
19
knowledge base/check the temperature of components.md
Normal file
19
knowledge base/check the temperature of components.md
Normal file
@@ -0,0 +1,19 @@
|
||||
# Check the temperature of components
|
||||
|
||||
See [lm-sensors], [hddtemp] or [nvme-cli].
|
||||
|
||||
## Further readings
|
||||
|
||||
- [LM sensors]
|
||||
- [Hddtemp]
|
||||
- [nvme-cli]
|
||||
|
||||
## Sources
|
||||
|
||||
- [How to check CPU temperature on Ubuntu Linux]
|
||||
|
||||
[hddtemp]: hddtemp.md
|
||||
[lm-sensors]: lm-sensors.md
|
||||
[nvme-cli]: nvme-cli.md
|
||||
|
||||
[how to check cpu temperature on ubuntu linux]: https://www.cyberciti.biz/faq/how-to-check-cpu-temperature-on-ubuntu-linux/
|
||||
33
knowledge base/lm-sensors.md
Normal file
33
knowledge base/lm-sensors.md
Normal file
@@ -0,0 +1,33 @@
|
||||
# LM-sensors
|
||||
|
||||
## TL;DR
|
||||
|
||||
```sh
|
||||
# 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
|
||||
|
||||
- [cheat.sh]
|
||||
- [archlinux wiki]
|
||||
- [How to Install lm Sensors on Linux]
|
||||
|
||||
[archlinux wiki]: https://wiki.archlinux.org/title/lm_sensors
|
||||
[cheat.sh]: https://cheat.sh/sensors
|
||||
[how to install lm sensors on linux]: https://linoxide.com/install-lm-sensors-linux/
|
||||
20
knowledge base/nvme-cli.md
Normal file
20
knowledge base/nvme-cli.md
Normal file
@@ -0,0 +1,20 @@
|
||||
# Nvme-cli
|
||||
|
||||
## TL;DR
|
||||
|
||||
```sh
|
||||
# Installation.
|
||||
sudo apt install nvme-cli
|
||||
|
||||
# List available devices.
|
||||
sudo nvme list
|
||||
|
||||
# Show data about devices.
|
||||
sudo nvme smart-log /dev/nvme0
|
||||
```
|
||||
|
||||
## Sources
|
||||
|
||||
- [How to check CPU temperature on Ubuntu Linux]
|
||||
|
||||
[how to check cpu temperature on ubuntu linux]: https://www.cyberciti.biz/faq/how-to-check-cpu-temperature-on-ubuntu-linux/
|
||||
Reference in New Issue
Block a user