Advertisement
kotvalera83

Turbo Boost linux

Jun 2nd, 2015
303
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. To read the current state of the Turbo Boost, we need to install the msr-tools
  2.  
  3. sudo apt-get install msr-tools
  4. To know if the Turbo Boost feature is disabled, run:
  5.  
  6. rdmsr -pi 0x1a0 -f 38:38
  7.  
  8. 1=disabled
  9. 0=enabled
  10. Replace i with your cores number
  11.  
  12. NOte: If you get the following error:
  13.  
  14. rdmsr:open: No such file or directory
  15. then load the “msr” module by the following command:
  16.  
  17. sudo modprobe msr
  18. To disable the Turbo Boost feature, one can set the entire 0x1a0 MSR register to 0x4000850089, as in here:
  19.  
  20. wrmsr -pC 0x1a0 0x4000850089
  21. Where C refers to a particular core number
  22.  
  23. ou can get those number by running
  24.  
  25. cat /proc/cpuinfo | grep processor
  26. then once you know your numbers you have to run the command above for each core. in your case numbers would be 0 & 1 so you have to do
  27.  
  28. wrmsr -p0 0x1a0 0x4000850089
  29.  
  30. wrmsr -p1 0x1a0 0x400085008
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement