我的服务器支持 IPMI,因此我可以运行如下脚本:
fanspeed() {
# 0 C => 10, 55 C => 10, 65 C => 100
sensors -j |
jq '[.[]["temp1"]["temp1_input"]] |
(max-55)*(100/(65-55)) |
if . < 10 then 10 else if . > 100 then 100 else .|floor end end';
}
autofan() {
setspeed() {
ipmitool -I lanplus -H drac -U root -P password raw 0x30 0x30 0x02 0xff $@
}
while true; do
fanspeed=`fanspeed`
printf "$fanspeed "$(setspeed $fanspeed)
sleep 1
done
}
当 CPU 温度 > 55 C 时,通过增加风扇速度来保持 CPU 温度 < 65 C。
但这听起来像是一份工作fancontrol
。可以fancontrol
用IPMI来控制风扇吗?
答案1
我每分钟在 crontab 中的 ash 脚本如下:(TODO 在某处记录)
#!/bin/ash
t='ipmitool -I lanplus -H drac -U root -P password '
f=' raw 0x30 0x30 0x02 0xff '
$t raw 0x30 0x30 0x01 0x00 # stop auto fan
TEMP=$(${t} sdr type temperature |tee /dev/tty |awk '{print $(NF-2)}' |sort -n |tail -1)
echo max TEMP=$TEMP
[ $TEMP -gt 65 ] && $t $f 0x2a || ( [ $TEMP -gt 55 ] && $t $f 0x1f ) || $t $f 0x0f
即65台以上风扇0x2a,55台以上风扇0x1f,否则0x0f