This is useful for people who experience throttled graphics card (discrete gpu) or various heat issues due to high temps caused by intel's cpu turbo boost; and don’t have the $$ to upgrade to newer macbooks, or buy turbo boost switcher pro (i am using a macbook pro mid 2010 2.66GHz models, on macOS Sierra 10.12.3)... the following steps will auto launch “DisableTurboBoost.64bits.kext” at every system boot startup.
Step 1: Paste the downloaded “DisableTurboBoost.64bits.kext” into “/Library/Extensions”
Step 2: To enable super user, open terminal and type:
Step 3: ⌘C and ⌘V the following into terminal, exactly:
Code:
cd /Library/Extensions
chmod -R 755 DisableTurboBoost.64bits.kext
chown -R root:wheel DisableTurboBoost.64bits.kext
kextload DisableTurboBoost.64bits.kext
Step 4: To
create a plist script in launchdaemons (auto launch at every boot), type:
Code:
nano /Library/LaunchDaemons/com.rugarciap.KextLoadDisableTurboBoost.plist
Step 5: Then, ⌘C and ⌘V the following into nano editor, exactly:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.rugarciap.KextLoadDisableTurboBoost</string>
<key>ProgramArguments</key>
<array>
<string>sh</string>
<string>-c</string>
<string>kextload /Library/Extensions/DisableTurboBoost.64bits.kext</string>
</array>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>
step 6: “ctrl+O” — to save the script
step 7: “enter” — to confirm save
step 8: “ctrl+x” — to exit nano editor
step 9: to launch the plist, ⌘C and ⌘V:
Code:
launchctl load -w /Library/LaunchDaemons/com.rugarciap.KextLoadDisableTurboBoost.plist
thats it.
Other commands:
verify the kext is loaded, ⌘C and ⌘V:
temporary enable turbo boost, ⌘C and ⌘V:
Code:
sudo kextunload /Library/Extensions/DisableTurboBoost.64bits.kext
re-enable disable turbo boost, ⌘C and ⌘V
Code:
sudo kextload /Library/Extensions/DisableTurboBoost.64bits.kext
Clean uninstall/ undo the entire process:
use finder window and delete both of these files:
/Library/Extensions/DisableTurboBoost.64bits.kext
/Library/LaunchDaemons/com.rugarciap.KextLoadDisableTurboBoost.plist
guide is based on Shiki Suen’s article, “Suppress Turbo Boost to let your MacBook stop overheating.”