Guest User

Untitled

a guest
Feb 21st, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. Anthropos : create the file /etc/default/cpufrequtils
  2.  
  3. Inside it, place the following, obviously, change the governor and/or speeds you wish to use. When you reboot, cpufreq will read this file to determine your chosen settings. FYI: Setting speeds to 0 will set max and min to whatever your CPU supports, respectively.
  4.  
  5. ENABLED=”true”
  6. GOVERNOR=”performance”
  7. MAX_SPEED=”0″
  8. MIN_SPEED=”0″
  9.  
  10. My Settings, since I have a POS Asus board that frequently thermal throttles my 6000+ 90W cpu at 42C core temp
  11.  
  12. ENABLED=”true”
  13. GOVERNOR=”ondemand”
  14. MAX_SPEED=”2.8Ghz”
  15. MIN_SPEED=”2Ghz”
  16.  
  17. Now, these settings mean my two cores will always be running at -LEAST- 2ghz each, and, under load, will ramp to 2.8Ghz each.. this helps my CPU from hitting 42C
Add Comment
Please, Sign In to add comment