I finally got it to work using image:
Armbian_20.11.6_Rockpro64_buster_current_5.9.14.img
I write the process here for future reference.
Installed the image into the eMMC module booted it up and had to issue the command:
in order to stop the fan as it would run at full speed.
I then edited /etc/rc.local with nano ---->
and added at the end of the file and before exit:
Now the fan runs constantly but at very low speed which I believe is the best compromise between cooling and silence.
After that I run armbian-config and navigated > System > 3rd party software and installed OMV.
All good. Thanks for your help!
Armbian_20.11.6_Rockpro64_buster_current_5.9.14.img
I write the process here for future reference.
Installed the image into the eMMC module booted it up and had to issue the command:
Code:
echo 0 > /sys/devices/platform/pwm-fan/hwmon/hwmon3/pwm1
I then edited /etc/rc.local with nano ---->
Code:
nano /etc/rc.local
Code:
rmmod pwm-fan
echo 0 > /sys/class/pwm/pwmchip1/export
echo 110 > /sys/class/pwm/pwmchip1/pwm0/duty_cycle
echo 500 > /sys/class/pwm/pwmchip1/pwm0/period
echo 1 > /sys/class/pwm/pwmchip1/pwm0/enable
Now the fan runs constantly but at very low speed which I believe is the best compromise between cooling and silence.
After that I run armbian-config and navigated > System > 3rd party software and installed OMV.
All good. Thanks for your help!