APFS on external drive missing from Disk Utility
When I use Disk Utility app in macOS Mojave to format an external drive, I do not see the new Apple File System (APFS) offered as a choice of format.
Does it matter that my external drive is a Toshiba Canvio® Advance Portable External Hard Drive plugged into a MacBook Pro Retina (late 2013) via USB-3 cable? I know APFS is optimized for solid-state storage, so does Disk Utility not offer it for a spinning-metal disk drive?
➥ Why is APFS not offered by Disk Utility?
Solution 1:
Edit:
The problem is, that DiskUtil
only shows you the Volumes on already partitioned disks. Just select View
-> Show all devices
. Now instead of the Volume select the device you want to partition and APFS
and GUID
will be offered.
I was able to get the APFS and GUID scheme option by deleting the MBR
- Open a Terminal
- Find out which disk is your target:
diskutil list
- Unmount the disk:
diskutil umountDisk /dev/disk#
with#
being the number of the drive you determined in step 1 (e.g./dev/disk2
) - Delete the MBR:
dd if=/dev/zero of=/dev/disk# bs=512 count=1
If you open DiskUtil now you will be offered APFS
Disclaimer
- Be aware that you are deleting all partitions from the drive
- Be careful when selecting the disk
Solution 2:
Disk Utility will only offer APFS if Partition Map is "GUID Partition Map".
If the Partition Map is "Master Boot Record" APFS is not an option (and neither is encrypted HFS).
Solution 3:
If it is not giving you the option for APFS formats, then you are likely trying to format only the logical volume within the container.
To show the container and physical disk in disk utility usually you have to change the view option to "show all devices" from "show only volumes",
Now you can select and format the container as you want.