Skip to content

Installing alongside Windows

If you already have Bootcamp installed, you might notice that the boot option for Bootcamp instead boots you into Fedora. This is because GRUB automatically shares with a Windows installation. Follow this guide on triple booting to get Windows working again.

My boot hangs before getting to the installer

This may be due to differences between USB-C to USB-A adapters. Try a different one if it is not working.

My touchbar is blank

Follow the instructions in the post-install guide. If it still is not working, try updating your macOS instalation.

I get an error about the bootloader when installing

Download the latest ISO, then try again. Make sure you are using the T2 Fedora iso.

Major version upgrades are not working

If you try to upgrade to a new stable release (ex: f42 -> f43), and you reboot into the same version as before, run sudo touch /usr/lib/clock-epoch, then try to upgrade again.

My Wi-Fi stops working after suspending

Add this to /etc/systemd/system-sleep/unload-wifi.sh:

#!/usr/bin/env bash
if [ "${1}" = "pre" ]; then
    systemctl stop NetworkManager
    modprobe -r brcmfmac_wcc
    modprobe -r brcmfmac
elif [ "${1}" = "post" ]; then
    modprobe brcmfmac
    systemctl start NetworkManager
fi