this post was submitted on 30 May 2026
7 points (100.0% liked)

techsupport

3142 readers
9 users here now

The Lemmy community will help you with your tech problems and questions about anything here. Do not be shy, we will try to help you.

If something works or if you find a solution to your problem let us know it will be greatly apreciated.

Rules: instance rules + stay on topic

Partnered communities:

You Should Know

Reddit

Software gore

Recommendations

founded 3 years ago
MODERATORS
 

EDIT3: this is NOT an overclock! Manually setting a scaling governor does not forcibly increase the intended frequency range of the CPU clock! Setting the scaling governor has more to do with performance management. In my case, setting it to “performance”, it simply forces the cpu to always run at the maximum frequency as designed by the manufacturer. Further reading here and here. Thank you @nocteb@feddit.org for the reminder!

EDIT2: the tablet is rooted with Magisk ( https://topjohnwu.github.io/Magisk/install.html ) and Termux is running with superuser privileges granted through Magisk. The below command was issued after su - ing into a root shell. "performance" was echo ed into all available /sys/devices/system/cpu/cpufreq/.../scaling_governors, meaning, there are several subdirectories called policy[0...] in which the scaling_governor files reside.

EDIT: echo ing “performance” to /sys/devices/system/cpu/cpufreq/policy0/scaling_governor seems to have maxed out the cpu clockspeed! Now the tablet is snappy as hell! It’ll be interesting to see how battery drain and heat are affected by this. Thank you @tal@lemmy.today !

Say, by sending some value to something inside /sys/.../cpu or the likes. I have already aggressively debloated the tablet, but I like to experiment and I am not afraid to destroy the tablet since I bought it for 150 bucks at sale. Or pehaps there is some Magisk module that can do this?

you are viewing a single comment's thread
view the rest of the comments
[–] tal@lemmy.today 3 points 1 day ago (1 children)

I have no idea if the Termux environment has the ability to fiddle with the hardware at that level, but from a generic Linux standpoint:

https://docs.kernel.org/admin-guide/pm/cpufreq.html

See the "Policy Interface in sysfs" section.

[–] akunohana@piefed.blahaj.zone 2 points 1 day ago (1 children)

Thanks! This worked! echo ing "performance" to the scaling_governor maxed out the cpu clockspeed! Now the tablet is snappy as hell! It'll be interesting to see how battery drain and heat are affected.

[–] tal@lemmy.today 2 points 1 day ago* (last edited 1 day ago) (1 children)

Glad to hear it. Just out of curiosity, and for anyone who might run across this in the future trying to accomplish something similar, is your copy of Termux running rooted? I wouldn't have thought that it'd be possible without root privilege. You did mention Magisk above.

[–] akunohana@piefed.blahaj.zone 2 points 1 day ago

Thanks for pointing that out! I will add it to the post, that my tablet is indeed rooted and that termux is running with superuser privileges, granted through Magisk.