Skip to content

Instantly share code, notes, and snippets.

@curiousercreative
Last active February 27, 2023 15:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save curiousercreative/51c25d007dd7bbd156e4205f7d4768e6 to your computer and use it in GitHub Desktop.
Save curiousercreative/51c25d007dd7bbd156e4205f7d4768e6 to your computer and use it in GitHub Desktop.
Make a 2011 MacBook Pro with failing AMD dGPU run Pop!_OS 22.04
#! /usr/bin/env bash
# If the Pop! installer won't boot due to dGPU failure, remove the SATA SSD/HDD from the MacBook and install Pop! to it using a computer that will boot the installer
sudo su
# With Pop! installed and running as root
# disable AMD gpu drivers
cat << EOF > /etc/modprobe.d/blacklist-amd-dgpu.conf
blacklist radeon
blacklist amdgpu
EOF
# install package updates
apt update
apt upgrade
# install Wi-Fi drivers
apt install firmware-b43-installer
# install fan controls to keep them from running max speed
apt install mbpfan
# if kernel ramdisk wasn't updated, update that now
update-initramfs -c -k all
# if you need to reinstall the SATA disk, do that and boot up.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment