May 27, 20242 yr Hi Community, on my mini PC is the system fan not working in unraid. I need to set the fan speed to a fix level, but without System Temp Plugin it wouldn't work at all. What I try to archive is that the fan communicates with the thermal sensor my system is not running hot, and the fan is not running 24/7. Could someone help me with that? jericho-diagnostics-20240527-2205.zip
May 30, 20242 yr Community Expert This is not a stock function, it's a plugin, and it doesn't work with all hardware, you can try reposting in the existing plugin support thread, someone may be able to help you there.
May 30, 20242 yr Author Solution Thank you for your response. With the power of AI I found a solution for me. Used pwmconfig to create a fancontrol configuration file. That is now injected with a userscript that runs on array start. #!/bin/bash cat <<EOF | sudo tee /etc/fancontrol # Configuration file generated by pwmconfig, changes will be lost INTERVAL=10 DEVPATH=hwmon1=devices/pci0000:00/0000:00:06.0/0000:01:00.0/nvme/nvme0 hwmon3=devices/platform/it87.2608 DEVNAME=hwmon1=nvme hwmon3=it8613 FCTEMPS=hwmon3/pwm2=hwmon1/temp1_input FCFANS=hwmon3/pwm2=hwmon3/fan2_input MINTEMP=hwmon3/pwm2=45 MAXTEMP=hwmon3/pwm2=65 MINSTART=hwmon3/pwm2=22 MINSTOP=hwmon3/pwm2=20 MINPWM=hwmon3/pwm2=0 MAXPWM=hwmon3/pwm2=255 EOF echo "Starting fancontrol" /usr/sbin/fancontrol & exit 0
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.