

You can do this using MacOS Spotlight by pressing both the ⌘ and Space bar at the same time, then typing "terminal" and hitting enter.ĭon't be intimidated by the command line interface. Step 3: Use the diskutil command to identify which disk your USB drive is mounted on I'm going to tell you exactly which commands to enter. Open Mac Spotlight using the ⌘ + space keyboard shortcut. Paste the following command into your terminal and hit enter: Then type the word "terminal" and select Terminal from the dropdown list. Step 4: Format your USB Drive to work with Windows You will see output like this (note - your Mac's terminal may be black text on a white background if you haven't customized it).Ĭopy the text I point to here. Next format your USB drive to Windows FAT32 format.
BOOT CAMP 2.1 DMG WINDOWS 10
This is a format that Windows 10 will recognize. To shrink my 1TB APFS container to 750GB, I’d issue the following command in Terminal: sudo diskutil apfs resizeContainer disk0s2 750g jhfs+ Extra 250g That command would resize the APFS container from 1TB to 750GB, also creating a 250GB journaled HFS+ partition with the freed space. I could also create multiple partitions, using a command like this: sudo diskutil apfs resizeContainer disk0s2 750g jhfs+ Media 200g FAT32 Windows 50g The output of the command will look something like this: Resize you APFS container from Terminal I could have also issued the command like this, and diskutil would automatically determine the size for my new partition: sudo diskutil apfs resizeContainer disk0s2 750g jhfs+ Media 0b We need to use sudo here, to take administrative privileges over the Terminal session. Note that in my case, I could replace disk0s2 with disk1 for either command, since my APFS container is located at disk1. Shrinking Your APFS Partition to Reclaim Space The diskutil command automatically locates the physical store for my APFS container, and resizes things accordingly. If you decide you want to reclaim that space into your APFS container, you can do that using diskutil as well.
BOOT CAMP 2.1 DMG FREE
First, though, you have to delete the JHFS+ or other partition and set it as free space on your hard drive. Next, resize your APFS container: diskutil apfs resizeContainer disk0s2 0 sudo diskutil eraseVolume "Free Space" %noformat% /dev/disk0s3 This command will do the trick, assuming your volume is named disk0s3.

In this case, diskutil automatically claims all available free space on the physical storage device, but you can also replace 0 with a size value.
