Rsetup missing on armbian

Just installed Armbian Debian 12 Cinnamon on a Rock 5A.
It does not have the utility rsetup.
How can I install it ?

You can’t, it’s only available on Radxa distros.

Oohh…so, where can I put the command
set_thermal_governor step_wise ?

What do you want to achieve?

I would like to set the working mode of the small fan on top of the Rock CPU.
Normally this is done with rsetup, but lacking this there should be a way to do it manually…

Please try follow command:

sudo su
set_thermal_governor() {
    local new_policy="$1" i
    for i in /sys/class/thermal/thermal_zone*/policy
    do
        echo "$new_policy" > "$i"
    done
}
set_thermal_governor step_wise

Thanks @ChenJaly. Exactly what I needed.

1 Like