How do I remove the EFI Partition on my USB using Mac OS X 10.11?

77,778

Solution 1

Apple automatically and transparently creates an EFI partition on any GPT formatted disk (which is the default format). To get rid of it, you must reformat the flash drive with the MBR partition scheme.

In Disk Utility, choose the flash drive itself (not the volume under it) and choose Erase from the toolbar. In the window that comes up, make sure you have MS-DOS (FAT) selected as the format type (not shown in the screenshot below) and Master Boot Record selected as the scheme type.

enter image description here

NOTE: Make sure you select MS-DOS (FAT) as the format type. I grabbed and posted the screenshot before I realized I had the wrong format showing.

Solution 2

It sounds like your USB disk is formatted using a GUID partition table (GPT); the EFI partition a standard part of how OS X formats disks with GPT, so it probably shouldn't be removed. What I suspect you really want, though, is to replace the GPT with a master boot record (MBR) partition table instead.

To change this on OS X, you need to reformat (erase) the disk using Disk Utility. In its sidebar, select the disk. Make sure you select the disk device entry, not the volume; the volume will be indented below the disk's entry in the sidebar. Info about the selected disk will be listed at the bottom of the Disk Utility window, including the partition scheme. If it GUID Partition Table (or GUID Partition Map), you need to erase the disk. If it says Master Boot Record, something weird is going on because the EFI partition shouldn't exist under that. If it says something about MS-DOS or Windows, you have the volume selected instead of the disk; try again.

Assuming this is the problem, you can erase the disk (again, make sure you have the disk, not the volume selected; also that it's the right disk!). There'll be a "Format" pop-up menu: choose "MS-DOS (FAT)". If you're using El Capitan, there'll also be a "Scheme" pop-up menu: choose "Master Boot Record" (older versions assume this automatically based on the MS-DOS choice). That should get you a disk with a single FAT32 volume, with no EFI partition.

Note that if you erase just the volume, not the entire disk device, it'll leave the partition scheme alone, and the hidden EFI partition will still be there. You must erase the entire disk!

Solution 3

Not to bump an old post, but I had this precise issue today and this page was the best explanation I found online to the problem - namely the need to remove a hidden EFI partition on a USB drive in High Sierra -

Per the Apple Dev Pages "while the ESP looks like a FAT32 volume, it is actually an EFI file system", so the PS4 is mounting it as the first "readable" partition it sees. Hidden partitions are now inaccessible through Disk Utility, but I felt pretty comfortable erasing it on my USB drive using

diskutil list

to identify the partition (shown as partition s1 on disk 2), and

diskutil eraseVolume "Free Space" ExEFI disk2s1

to wipe that partition (as free space because the partition was too small to rewrite, but also too small to worry about). I can't guarantee I haven't compromised the drive somehow or destroyed its future-proofing - Leeroy Jenkins? - but it works beautifully so far, let me avoid a reformat to MBR, and allowed me to delete the hidden partition in mac OS without the old Disk Utility debug menu they've removed.

Following this, running "diskutil list" shows me only the partitions on disk 2 that I wanted, and the PS4 skips right past anything Apple for my exFAT media partition. Thanks to the answers above for their help these years later and I hope this does somebody some good down the line!

Solution 4

The solutions offered by Wes Sayeed and Gordon Davisson are perfectly reasonable, providing you don't have data on the disk you want to keep. If you do need to keep data on the disk's main partition, you can safely delete the ESP -- just not with Apple's Disk Utility. The command-line gpt tool should be able to do it, but I'm not an expert in its use, so I recommend you read its man page for information on how to use it. Another tool you could use is my own GPT fdisk (gdisk). See its documentation for an overview of how to use it. To delete a partition, you would:

  1. Launch gdisk on your disk.
  2. Type p to view the partition table.
  3. Verify, based on the disk's size and the available partitions, that you're working on the right disk. If not, type q to exit.
  4. Identify the ESP; it's the partition with a type code of EF00, as shown in the previous step.
  5. Type d to delete a partition. You'll be prompted for which one to delete. Enter this information. (Normally, the ESP is the first partition on the disk.)
  6. Type p to view the partition table again and verify that you deleted the correct partition.
  7. Type w to save your changes. You'll be asked to confirm this action. Do so.

If you dual-boot with another OS, or if you can move the disk to another OS, you could use its tools for this job, too. Something like GParted or parted in Linux can delete an unwanted partition, for instance.

Note that deleting a partition as I've just described will leave the space unused. The ESP is small enough that this may not be a big deal, even on your 16GB USB flash drive. If you need the space, backing it up and re-creating the disk with MBR (or using GPT but without an ESP) is a better way to proceed.

Share:
77,778

Related videos on Youtube

Patrick Miller
Author by

Patrick Miller

Updated on September 18, 2022

Comments

  • Patrick Miller
    Patrick Miller almost 2 years

    I need to remove the EFI partition on my USB because when trying to copy files from my PS4, the PS4 chooses this partition and ultimately runs out of space, instead of using the much larger space.

    The EFI is about 200MB big and the USB storage is 16GB, apparently the only way to get the PS4 to write onto the large partition is to get rid of the EFI Partition.

    Please help.

    Patrick

    • Ramhound
      Ramhound over 8 years
      It should be as simple as formatting the disk then creating a single partition on the disk.
  • Rod Smith
    Rod Smith over 8 years
    The EFI System Partition (ESP) is NOT required by the GPT specification. It's perfectly legal to create a GPT disk that lacks an ESP, and many partitioning tools enable you to do this. That said, Apple's Disk Utility creates an ESP, and then hides it from view, on all GPT disks (or at least on all GPT disks over some size). Thus, your solution is a valid one.
  • Gordon Davisson
    Gordon Davisson over 8 years
    @RodSmith I could swear that I'd read it's part of the spec, but apparently I imagined that. Thanks for the note, I've corrected my answer.
  • Pherrymason
    Pherrymason about 6 years
    I was having the very same problem with PS4. This solved my issue
  • Mokkun
    Mokkun about 4 years
    Note: on macOS Catalina, the Disk Utility will show only volumes by default. Select the View dropdown item (the first item at the window top left) and choose "Show All Devices".