Advertisement
Guest User

/etc/auto-cpufreq.conf

a guest
May 23rd, 2022
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.69 KB | None | 0 0
  1. # settings for when connected to a power source
  2. [charger]
  3. # see available governors by running: cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_available_governors
  4. # preferred governor.
  5. governor = performance
  6.  
  7. # minimum cpu frequency (in kHz)
  8. # example: for 800 MHz = 800000 kHz --> scaling_min_freq = 800000
  9. # see conversion info: https://www.rapidtables.com/convert/frequency/mhz-to-hz.html
  10. # to use this feature, uncomment the following line and set the value accordingly
  11. # scaling_min_freq = 800000
  12.  
  13. # maximum cpu frequency (in kHz)
  14. # example: for 1GHz = 1000 MHz = 1000000 kHz -> scaling_max_freq = 1000000
  15. # see conversion info: https://www.rapidtables.com/convert/frequency/mhz-to-hz.html
  16. # to use this feature, uncomment the following line and set the value accordingly
  17. # scaling_max_freq = 1000000
  18.  
  19. # turbo boost setting. possible values: always, auto, never
  20. turbo = auto
  21.  
  22. # settings for when using battery power
  23. [battery]
  24. # see available governors by running: cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_available_governors
  25. # preferred governor
  26. governor = ondemand  
  27.  
  28. # minimum cpu frequency (in kHz)
  29. # example: for 800 MHz = 800000 kHz --> scaling_min_freq = 800000
  30. # see conversion info: https://www.rapidtables.com/convert/frequency/mhz-to-hz.html
  31. # to use this feature, uncomment the following line and set the value accordingly
  32. # scaling_min_freq = 800000
  33.  
  34. # maximum cpu frequency (in kHz)
  35. # see conversion info: https://www.rapidtables.com/convert/frequency/mhz-to-hz.html
  36. # example: for 1GHz = 1000 MHz = 1000000 kHz -> scaling_max_freq = 1000000
  37. # to use this feature, uncomment the following line and set the value accordingly
  38. # scaling_max_freq = 1000000
  39. turbo = auto
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement