From 0138d961ee46c9bf997260765ab219531ed782ce Mon Sep 17 00:00:00 2001 From: Khushal P Bharadwaj Date: Mon, 6 Jul 2026 23:52:33 +0530 Subject: [PATCH] sensors: add examples (#23082) Co-authored-by: Managor <42655600+Managor@users.noreply.github.com> --- pages/linux/sensors.md | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/pages/linux/sensors.md b/pages/linux/sensors.md index fc45ff4d97..462aef0524 100644 --- a/pages/linux/sensors.md +++ b/pages/linux/sensors.md @@ -10,4 +10,24 @@ - Show temperatures in degrees Fahrenheit: -`sensors --fahrenheit` +`sensors {{[-f|--fahrenheit]}}` + +- Show the readings of a specific sensor chip (run `sensors` to find chip name, e.g. coretemp-isa-0000): + +`sensors {{chip_name}}` + +- Output sensor data in JSON format: + +`sensors -j` + +- Show raw sensor output for scripting or debugging purposes: + +`sensors -u` + +- Show sensor readings using a specific configuration file: + +`sensors {{[-c|--config-file]}} {{path/to/sensors.conf}}` + +- List all detected hardware communication buses (like I2C or ISA): + +`sensors --bus-list`