Resizing Macintosh HD partition to use free space

I recently deleted a partition and have 60GB of free space. I would like for my main partition to use that, but whenever I go to resize it, I get the error "You can’t perform this resize unless it has a booter". enter image description here


Solution 1:

This Ask Different post has what you're looking for. Don't go looking for an "answer," the author for some reason decided to write his own answer in the "question" post. The method worked perfectly (and non-destructively, but you should always take a backup anyway, just in case) for me!

Paraphrased:

  1. Reboot in Recovery Mode by holding down Command-R as your Mac starts up.

  2. Open Terminal (from the Utilities section of the Menu Bar).

  3. Run the command, diskutil cs list

  4. Take the Logical Volume ID (a long string of letters and numbers) 10 lines up from the bottom of that command's output, and use it in the command:

    diskutil cs revert [Logical Volume ID]

  5. This should convert the CoreStorage Logical Volume to a normal disk partition.

  6. Run diskutil cs list again, and you should receive a "No CoreStorage logical volume groups found" message.

  7. Now you should be able to resize your partition normally through Disk Utility.

Good luck!