Skip to content

Latest commit

 

History

History
35 lines (31 loc) · 1.28 KB

Install-Fedora.md

File metadata and controls

35 lines (31 loc) · 1.28 KB

Installing Fedora

  1. Download Fedora aarch64 Workstation or Server image

    Fedora Main: https://getfedora.org/
    Fedora ARM: https://arm.fedoraproject.org/
    
  2. Flash the ISO to a USB drive

    dd if=~/Downloads/Fedora-*edition*-aarch64-*version*.iso of=/dev/sdX
    

    Alternatively, you can use Gnome Disks, balenaEtcher, or an imaging tool of your choice.

  3. Insert and boot from the USB drive

    [ESC at Boot] > Boot Maintenance Manager > Boot From File > (USB Device ID) > EFI > AARCH64.EFI; [ENTER]
    
  4. Press "e" at Install Fedora GRUB menu and add the following to the linux line:

    iommu.passthrough=1 arm-smmu.disable_bypass=0 amdgpu.pcie_gen_cap=0x4
    
  5. Install Fedora and restart when prompted

  6. Once logged in, complete the following steps to prevent crashing [AMD GPU's]

    nano /etc/default/grub
    
    GRUB_CMDLINE_LINUX_DEFAULT="iommu.passthrough=1 arm-smmu.disable_bypass=0 amdgpu.pcie_gen_cap=0x4 amdgpu.noretry=0"
    
    sudo grub2-mkconfig -o /etc/grub2-efi.cfg
    
  7. Reboot, and the install is now complete!