Skip to content

Instantly share code, notes, and snippets.

@cdleon
Last active February 15, 2024 10:24
Show Gist options
  • Star 89 You must be signed in to star a gist
  • Fork 20 You must be signed in to fork a gist
  • Save cdleon/ae1542279598fe80f527400cc354a956 to your computer and use it in GitHub Desktop.
Save cdleon/ae1542279598fe80f527400cc354a956 to your computer and use it in GitHub Desktop.
Macbook Pro 2011 GPU Defect fix macOS Sierra and High Sierra

Works for macOS Sierra and High Sierra

Taken from 2011 Macbook Pro Graphics Card FIX 100% WORKING!!!

EDIT This method works! But there is an improved version for better thermal management and brightness keys functionality. See improved version -> https://gist.github.com/cdleon/d1eff7246a25193304284ecec40445b0

Enter Recovery Mode (text mode)

if you are on high sierra 10.13.6+ you might need to use Command + r instead

Boot up holding down Command + r + s

Disable SIP

SIP locks System folder so cannot move kexts to another folder. SIP (csrutil) only enabled or disabled on Recovery Mode.

csrutil disable

Restart the system

reboot

Enter Single User mode

boot up holding down the CMD and S keys

Check a disk

use /sbin/fsck if you get fsck command not found

fsck -fy

Mount a root filesystem with read/write permissions

use /sbin/mount if you get mount command not found

mount -uw /

Make a directory to store the AMD drivers in case you'll need them in future

sudo mkdir /AMD_Kexts/

Move the AMD drivers

sudo mv /System/Library/Extensions/AMD*.* /AMD_Kexts/

Remove the AMD drivers cache

sudo rm -rf /System/Library/Caches/com.apple.kext.caches/

Just in case OS X will be dumb and will not recreate this directory, we create it again

sudo mkdir /System/Library/Caches/com.apple.kext.caches/

Update the timestamps so that new driver caches - without AMD drivers - will be rebuilt

sudo touch /System/Library/Extensions/

Unmount a partition to guarantee that your changes are flushed to it. Use /sbin/umount if you get umount command not found. It might say resource busy, ignore that and proceed to next step)

sudo umount /

Reboot

sudo reboot

Before enabling SIP again, try the normal boot without pressing any key. The Mac OS will rebuild the kernel cache and restart. See if the system starts normally. If it does, still keep going through the remaining steps.

You might encounter that you are still using discrete GPU but computer works (if you are using gfx it might say can't change to discrete while external display is connected), keep going until last step and this will be resolved

Enable SIP again by restarting the system and entering Recovery Mode (text mode)

if you are on high sierra 10.13.6+ you might need to use Command + r instead

Command + r + s

Enable SIP

csrutil enable

Restart the system

reboot

Open Terminal (Finder -> Applications -> Utilities -> Terminal (copy and paste):

sudo nvram fa4ce28d-b62f-4c99-9cc3-6815686e30f9:gpu-power-prefs=%01%00%00%00

Restart the system

sudo shutdown -r now

You might need to do this again after macOS system updates Brightness keys might not work use app like brightness-slider to handle that

@dhos4094
Copy link

dhos4094 commented Jun 5, 2021

How do I fix this?
20210605_112932
20210605_112955
20210605_113035
20210605_113044

@MegatronNX123
Copy link

MacBook Pro 15¨mid 2011 High Sierra. Did everything with no errors but envidia Graphics card still enable and crashing my computer, any thoughts?

I did this a few minutes ago. So far so good, nothing has crashed yet.
BUT! A warning to everyone. If you do this you'll lose the ability to adjust your display's brightness.

I'm going to attempt to reverse this process because my screen was dimmed to ~50% before I started. Now it's stuck like that :-/

Hello there! I had the exact same problem and my solution would be to restart the whole procedure here's what i do.
Start by resetting all hardware settings i.e your speakers, brightness, audio, everything. press

leftshift+control_(NOT COMMAND)_option+power

release at the same time. than press

Cmd+Option+p+r wait for two chimes.

Now everything is reset (Dont worry you wont lose any files)
Now force shutdown by holding power and restart into single user mode (Cmd+s)*
Now mount root portion writable.

Mount -uw / (or /sbin/mount -uw /)

Than type the long.

nvram fa4ce28d-b62f-4c99-9cc3-6815686e30f9:gpu-power-prefs=%01%00%00%00

After this to be safe temporarily disable Verbose boot

nvram boot-args=""

^^really important step.

Now type reboot and when you see the white screen hold command+r
You might have to hold it for 5+ minutes it depends how badly your GPU is damaged.

So after you get into recover mode your going to have to select language and than procede. At the top you will see a tab called _Utilities._from that click terminal

into terminal type the following

csrutil disable

Than once more disable dGPU on boot

nvram fa4ce28d-b62f-4c99-9cc3-6815686e30f9:gpu-power-prefs=%01%00%00%00

Into terminal type.
reboot
That restarts your whole computer.

On startup as soon as you see a white screen hold (Command+S)
You should see white text on black screen.

Now mount the root portion writable.

Mount -uw / or (/sbin/mount -uw /)

And make a kext-backup directory.

mkdir -p /System/Library/Extensions-off

Next we are going to move only One offending kext out of the way.

mv /System/Library/Extensions/AMDRadeonX3000.kext /System/Library/Extensions/

Force the system to update its kextcache

Touch /System/Library/Extensions/

Wait for the kext cache to update.
For the final time type

nvram fa4ce28d-b62f-4c99-9cc3-6815686e30f9:gpu-power-prefs=%01%00%00%00

Enable verbose boot mode

nvram boot-args="-v"

Simply type reboot
And wait for it to start up. Brightness keys should be working!

HOW TO PREVENT FOR THE FUTURE

Press Cmd + spacebar
type terminal
in terminal.

sudo nano /iGPU-boot.sh

DONT FREAK OUT if you see a black box around it ITS TOTALLY NORMAL it should look like the picture attatched below
Screen Shot 2021-06-15 at 11 37 19 AM
In your terminal you want to type

#/bin/sh

sudo nvram boot-args="-v"

sudo nvram fa4ce28d-b62f-4c99-9cc3-6815686e30f9:gpu-power-prefs=%01%00%00%00

exit 0

sudo chmod a+x /iGPU-boot.sh

Or copy this picture
Screen Shot 2021-06-15 at 11 41 26 AM
(The name is blacked out for privacy reasons)
Now any time you have any problem with booting up simply reboot into single user mode type mount -uw / or /sbin/mount -uw /
sh /iGPU-boot.sh

@joegonza
Copy link

MacBook Pro 15¨mid 2011 High Sierra. Did everything with no errors but envidia Graphics card still enable and crashing my computer, any thoughts?

I did this a few minutes ago. So far so good, nothing has crashed yet.
BUT! A warning to everyone. If you do this you'll lose the ability to adjust your display's brightness.
I'm going to attempt to reverse this process because my screen was dimmed to ~50% before I started. Now it's stuck like that :-/

Hello there! I had the exact same problem and my solution would be to restart the whole procedure here's what i do.
Start by resetting all hardware settings i.e your speakers, brightness, audio, everything. press

leftshift+control_(NOT COMMAND)_option+power

release at the same time. than press

Cmd+Option+p+r wait for two chimes.

Now everything is reset (Dont worry you wont lose any files)
Now force shutdown by holding power and restart into single user mode (Cmd+s)*
Now mount root portion writable.

Mount -uw / (or /sbin/mount -uw /)

Than type the long.

nvram fa4ce28d-b62f-4c99-9cc3-6815686e30f9:gpu-power-prefs=%01%00%00%00

After this to be safe temporarily disable Verbose boot

nvram boot-args=""

^^really important step.

Now type reboot and when you see the white screen hold command+r
You might have to hold it for 5+ minutes it depends how badly your GPU is damaged.

So after you get into recover mode your going to have to select language and than procede. At the top you will see a tab called _Utilities._from that click terminal

into terminal type the following

csrutil disable

Than once more disable dGPU on boot

nvram fa4ce28d-b62f-4c99-9cc3-6815686e30f9:gpu-power-prefs=%01%00%00%00

Into terminal type.
reboot
That restarts your whole computer.

On startup as soon as you see a white screen hold (Command+S)
You should see white text on black screen.

Now mount the root portion writable.

Mount -uw / or (/sbin/mount -uw /)

And make a kext-backup directory.

mkdir -p /System/Library/Extensions-off

Next we are going to move only One offending kext out of the way.

mv /System/Library/Extensions/AMDRadeonX3000.kext /System/Library/Extensions/

Force the system to update its kextcache

Touch /System/Library/Extensions/

Wait for the kext cache to update.
For the final time type

nvram fa4ce28d-b62f-4c99-9cc3-6815686e30f9:gpu-power-prefs=%01%00%00%00

Enable verbose boot mode

nvram boot-args="-v"

Simply type reboot
And wait for it to start up. Brightness keys should be working!

HOW TO PREVENT FOR THE FUTURE

Press Cmd + spacebar
type terminal
in terminal.

sudo nano /iGPU-boot.sh

DONT FREAK OUT if you see a black box around it ITS TOTALLY NORMAL it should look like the picture attatched below
Screen Shot 2021-06-15 at 11 37 19 AM
In your terminal you want to type

#/bin/sh

sudo nvram boot-args="-v"

sudo nvram fa4ce28d-b62f-4c99-9cc3-6815686e30f9:gpu-power-prefs=%01%00%00%00

exit 0

sudo chmod a+x /iGPU-boot.sh

Or copy this picture
Screen Shot 2021-06-15 at 11 41 26 AM
(The name is blacked out for privacy reasons)
Now any time you have any problem with booting up simply reboot into single user mode type mount -uw / or /sbin/mount -uw /
sh /iGPU-boot.sh

For the command to move the kext file, you are moving the that file to the folder you previously created, aren't you?

@gabojkz
Copy link

gabojkz commented Jul 19, 2021

Hey there I am getting

fsck -fy
warning: option -f is not implemented, ignoring
error: container /dev/rdisk1 is mounted. repairs in a mounted container is not supported yet

@MegatronNX123
Copy link

The
fsck -fy
isn't necessarily a crucial step. I know that some people have this problem as well so i simply would ignore it. Your computer might be a little bit different with the version.
All that command does is force the mac to do a system checkup. Not necessary in that command line

@catullum
Copy link

So i hav repaired the GPu i will revert this how can i do?

@MegatronNX123
Copy link

Im not to sure what you mean by repair the gpu. could you possibly explain a little bit more about what you mean?

@catullum
Copy link

Im not to sure what you mean by repair the gpu. could you possibly explain a little bit more about what you mean?

I had the laptop repaired so the graphics card was replaced and now I want to undo this process.

@gabojkz
Copy link

gabojkz commented Jul 26, 2021

Sorry my update on this:
My macbook is another version early 2015 it only has the intel GPU so this fix will not work for me

@ronaldium
Copy link

Thanks a bunch!
Fixed my MBP early 2011 with this, but I think I missed some part. Everytime I bootup and shutdown there's always command texts showing up. Any fix for this? Thanks.

@Cyrilost
Copy link

Hello,
Now Apple give the name "ATI" for theirs video drivers Kexts.
So, when you do : sudo mv /System/Library/Extensions/AMD*.* /AMD_Kexts/
Think well = sudo mv /System/Library/Extensions/ATI*.* /AMD_Kexts/, too.
Yours sincerely,

@johnwtt
Copy link

johnwtt commented Oct 28, 2021

Will this method works with a mid 2010 macbook pro with nvidia gpu ?

@Cyrilost
Copy link

Hello @johnwtt,
Certainly, I just watched in repertory System/Library/Extensions/,
there are files GeForce and NVDA,
Yours sincerely,

@agents2121
Copy link

My mbp 2011 has been out of action almost a year with boot up loop.
I have been trying desperately to understand the details so can attempt to get it going but I am professional making music but novice when it is about computers especially this issue.
I already suffered with almost identical problem with my first macbook pro 2007 gpu issue Nvidia GeForce. The 2011 mbp was a long awaited replacement purchased 2019 used.
So ultimately i want to just make music logic pro x high sierra with no updates or changes.
Is there a fix for this nightmare or is it not worth the time or money as £200 to £300 will get me either mac mini or imac with the same spec and 24months warranty but then the issue of getting my software and files from the mbp 2011 with no boot up.
Serious whats the best for a man that only wants to use logic pro x to be honest its logic that forces me to use these rotton apples expensive toys.

@agents2121
Copy link

Basically is there a fix that will allow me to use this mbp as it was just for music production no more osx updates or online activity purely for logic pro use.
Or get replacement mac similar spec

@pominglam
Copy link

pominglam commented Oct 29, 2021 via email

@johnwtt
Copy link

johnwtt commented Oct 31, 2021

Since the Tiresias (the GPUkiller) is using the same method of patching the nvram variables, is it possible to use this on a 2010 macbook pro. Also, Is there anyway to completely cut power to the gpu

@agents2121
Copy link

I am a tech guy and it took me a bit of digging to get it working. The basic concept is to switch from your MBP's graphics chipset to the integrate chipset. I'd recommend you asking à tech friend to help you out. Here are the steps from what I remember: - boot in single user mode (hold apple key + s then start the MBP) - run a command to switch the graphics chipset - reboot (not shutdown and start again, run the "reboot" command on CLI) And you should be good to go.

On Fri., Oct. 29, 2021, 6:00 a.m. agents2121, @.> wrote: @.* commented on this gist. ------------------------------ Basically is there a fix that will allow me to use this mbp as it was just for music production no more osx updates or online activity purely for logic pro use. Or get replacement mac similar spec — You are receiving this because you commented. Reply to this email directly, view it on GitHub https://gist.github.com/ae1542279598fe80f527400cc354a956#gistcomment-3944302, or unsubscribe https://github.com/notifications/unsubscribe-auth/ACLFCKSMMNJUHBJZY36OQZLUJJ5D3ANCNFSM4HSCNPTQ . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

So no need for any physical work or removal of components.

@pominglam
Copy link

pominglam commented Nov 1, 2021 via email

@Airbum88
Copy link

The fix worked for me but now, when I close my lid , my MBP doesn't go to sleep and the Apple logo backlight is still on.
Is there a fix for this?

@agents2121
Copy link

16months since my macbook pro 2011 went into boot loop.
I purchased it refurbished £500 and have been really struggling to understand the tech related to fixing this issue and researching almost a decade of details and varied methods including the bogus tech repair scams (Apple included) # replace logic board £££$.
Having already b4 this MBP in 2007 i suffered same issue with my first MBP (Nvidia GeForce gpu failure).

THIS FIX REF TO MBP 2011 IS IT WORTH IT??
I am not knowledgeable enough or confident to follow the method.
SO DO I JUST GET MAC MINI 2012 i7 £200 to £300 all i need is to be back on logic pro for my music.

@televisi
Copy link

Yea, I had the same issue with @Airbum88 whereby after closing the lid, the MBP doesn't go to sleep automatically and the Apple logo backlight is still on.

When I put it to sleep, it then unable to wake up (I can see the mouse but blank screen).
The only way to bring it back is to force restart

I wish there is a way to fix this...

@Vorshim92
Copy link

Yea, I had the same issue with @Airbum88 whereby after closing the lid, the MBP doesn't go to sleep automatically and the Apple logo backlight is still on.

When I put it to sleep, it then unable to wake up (I can see the mouse but blank screen). The only way to bring it back is to force restart

I wish there is a way to fix this...

hi! did you find a solution for this? @Airbum88

@Ale337-s
Copy link

Please, can anyone kindly help me?
I had successfully gone through these steps for the disabling of the defective card and everything was fine until yesterday I gave in to one of those insisting messages for updates from Apple, without realizing the consequences it could bring. Now my computer is no longer getting past the boot. I ran all the commands again but the fix seems to not be working anymore. The computer enters a boot hang loop and I can't find the way to work around it.
After trying to understand what it could be, I stumbled upon this, which is clearly my case, but have no idea on how to proceed.
"After any system update the folder /System/Library/Extensions has to be checked for the offending kext. Its presence there will lead to e.g. a boot hang on Yosemite and Sierra, an overheating boot-loop in High Sierra."

Can anyone help me on this?
Thanks in advance!

@jeepeegit
Copy link

Please, can anyone kindly help me? I had successfully gone through these steps for the disabling of the defective card and everything was fine until yesterday I gave in to one of those insisting messages for updates from Apple, without realizing the consequences it could bring. Now my computer is no longer getting past the boot. I ran all the commands again but the fix seems to not be working anymore. The computer enters a boot hang loop and I can't find the way to work around it. After trying to understand what it could be, I stumbled upon this, which is clearly my case, but have no idea on how to proceed. "After any system update the folder /System/Library/Extensions has to be checked for the offending kext. Its presence there will lead to e.g. a boot hang on Yosemite and Sierra, an overheating boot-loop in High Sierra."

Can anyone help me on this? Thanks in advance!

jup. Look @ OpenCore Legacy Patcher You can evan run montery on a 2011. It's not fast but it runs :-) https://dortania.github.io/OpenCore-Legacy-Patcher/MODELS.html

@MoldyOldie
Copy link

MoldyOldie commented Feb 14, 2024

Strongly recommend against upgrading past your model’s maximum Apple recommended OS. While it can sometimes be done, it’s fraught with potential issues. Given you need help with your current problem, I wouldn’t even consider it. Besides, you want to resolve your current issue, not add additional problems.

Try following the instructions on Apple’s webpage:
https://support.apple.com/en-us/HT204904#:~:text=Command%2DR%3A%20When%20you%20press,is%20compatible%20with%20your%20Mac.

If you’re able to enter recovery mode, that’s your best option. You want to first try reinstalling your OS without wiping your drive. If you can’t get into recovery, try the options for reloading your OS. If given the choice, don’t wipe your disk. If you’re unable to resolve your problem without first wiping the disk, that’s your final option. Hopefully you have backups to restore your user data. But if you have no backups, and desperately need the data on your computer, all of this is potentially risky. Instead, remove the drive and put it into a USB case. Try to extract the data from the drive that way, using a second Mac, rather than trying to fix your boot issue.

P.S. It’s possible you might be able to extract your user data using a second Mac via Target Disc Mode, if you have access to one. If you borrow/buy a newer Mac, and target disc mode won’t work, remove the hard drive from the old one, and put it into a USB case. Then extract the data you need that way. Note: Using target disc mode requires cables and pricey adapters you likely don’t own, and probably won’t use again.

Good Luck!

@jeepeegit
Copy link

jeepeegit commented Feb 14, 2024

You can use OpenCore Legacy Patcher also for installing the latest yosemite for MB 2011 and it will solve the GDI problem by switching it off. so there is no fraught. And it would behoove Apple if they provided a program so that turning that GID on and off would be simple for everyone.

@MoldyOldie
Copy link

You can use OpenCore Legacy Patcher also for installing the latest yosemite for MB 2011 and it will solve the GDI problem by switching it off. so there is no fraught. And it would behoove Apple if they provided a program so that turning that GID on and off would be simple for everyone.

Unless you have tested this procedure on the specific hardware in question, and are willing to support any issues encountered by the user, you shouldn’t be suggesting it. Especially to someone who isn’t technically advanced, as is the case here. You yourself stated it didn’t run well when you did this. For basic users who aren’t highly technical, it’s irresponsible to suggest going beyond the OS version Apple officially supports, or recommending other technical modifications to the OS. I doubt the user here has any idea what “OpenCore Legacy Patcher” is, let alone what to do with it.

I could try doing this myself, but I also have almost 50 years of experience working with computer systems. I know what precautions to take, so that if anything goes wrong, I have the knowledge and tools to get my system working again.

(I won’t be making any further replies to subsequent comments regarding this. So, if your ego insists you “put me in my place”, feel free to do so. I couldn’t care less.)

@jeepeegit
Copy link

Everyone is allowed to have an opinion of course :-) I think Ale337-s can decide for himself what he wants and can do.
Have a nice day.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment