- Plug in your Hackintosh USB installer.
- At the OpenCore/Clover boot picker, choose “Install macOS …” (the installer).
- Wait until you reach the macOS Utilities screen.
- In the top menu bar, click Utilities → Terminal.
(This gives you a terminal even if your system disk can’t boot.)
In Terminal, type:
diskutil list- This shows all disks and partitions.
- Look for your macOS drive (usually disk0).
- The EFI partition is typically disk0s1, 200 MB, formatted as EFI.
Example:
diskutil mount disk0s1After this, the EFI partition will appear in Finder as EFI.
- Also mount your macOS main partition (APFS or HFS+). Example:
diskutil mount disk0s2- Now you can browse to your Desktop/Documents folder where your backup EFI is stored:
Path will be something like/Volumes/Macintosh HD/Users/YourName/Desktop/EFI.
Use Terminal cp -R to copy:
cp -R "/Volumes/Macintosh HD/Users/YourName/Desktop/EFI" /Volumes/EFI/rm -rf /Volumes/EFI/EFIThen copy:
cp -R "/Volumes/Macintosh HD/Users/YourName/Desktop/EFI" /Volumes/EFI/rebootRemove the USB → system should boot from your restored EFI.
If you renamed your macOS volume to masOS, replace Macintosh HD with masOS in all commands.
For example, to copy your EFI backup:
cp -R "/Volumes/masOS/Users/YourName/Desktop/EFI" /Volumes/EFI/- Mount the macOS partition:
diskutil mount disk0s2- Go to your Desktop folder:
cd "/Volumes/masOS/Users/YourUserName/Desktop"-
Replace
YourUserNamewith your macOS account name. -
To check usernames:
ls "/Volumes/masOS/Users"- List files/folders on Desktop:
ls