How to read LSI SAS 2308 HBA temperature in SCALE?

Install LSIUtil from here:

Use this to get the temperature:

#!/bin/sh
lsiutil="/path/to/lsiutil"
"$lsiutil" -p1 -a 25,2,0,0 | awk '/IOCTemperature: /{print strtonum($2)" C"}'

Explanation here:

https://old.reddit.com/r/homelab/comments/cqvxeb/monitoring_the_status_of_a_92118i_hba_in_itmode/kj5mgg4/

If you’re hesitant to use the binaries, create a jlmkr container and compile from source.

1 Like