Question

I've been having an issue with Bootcamp recently after I deleted my Windows disk due to a driver issue that was unfixable. I figured I would just do a fresh install of Windows, but little to my knowledge this would be the most aggravating thing I've ever had to deal with on my Mac.

It took me some time, but I was able to fix all the stray partitions in Disk Utility:enter image description here

but annoyingly, I still get this error: enter image description here

After doing extensive reading apropos of similar issues, I've come to the conclusion that I am only able to solve this by formally wiping my physical disk so that all the partitions are one cohesive unit. How can this be done? Here is my diskutil list:

    Mikes-iMac:~ MikeDang$ diskutil list
/dev/disk0 (internal):
   #:                       TYPE NAME                    SIZE       IDENTIFIER
   0:      GUID_partition_scheme                         24.0 GB    disk0
   1:                        EFI EFI                     314.6 MB   disk0s1
   2:          Apple_CoreStorage Macintosh HD            23.6 GB    disk0s2
   3:                 Apple_Boot Boot OS X               134.2 MB   disk0s3

/dev/disk1 (internal, physical):
   #:                       TYPE NAME                    SIZE       IDENTIFIER
   0:      GUID_partition_scheme                        *1.0 TB     disk1
   1:                        EFI EFI                     209.7 MB   disk1s1
   2:                  Apple_HFS Mac                     998.2 GB   disk1s2
   3:                 Apple_Boot Recovery HD             650.0 MB   disk1s3
   4:                 Apple_Boot Recovery HD             650.0 MB   disk1s4

The partition I am currently using is disk1s2, Apple_Boot Mac. Am I correct in assuming my best bet is to break down my internal disk and reinstate a clean OS X installation, and from there download a Windows ISO and run bootcamp?

I've been searching for a solution to this issue for epochs, if anyone could help I would be eternally grateful.

Was it helpful?

Solution

  • Boot to Internet Recovery Mode and open Disk Utility. Repartition each disk to one partition, GUID partition table and OS X Extended (Journaled).
  • Exit Disk Utility, open Terminal in the menubar > Utilities
  • Enter diskutil list to get the device identifiers of the SSD (24 GB) and the HDD (1 TB) (probably disk0 and disk1 with the main volumes disk0s2 and disk1s2)
  • Enter the following to rebuild your Fusion Drive

    diskutil cs create Fusion disk0s2 disk1s2 #use the dev identifiers found previously
    diskutil cs list #take a note of the Logical Volume Group UUID (lvgUUID)
    diskutil coreStorage createVolume lvgUUID jhfs+ "Mac" 0g #use the lvgUUID found above here (something like 28394BA0-AC56....)
    
  • Exit Terminal and install OS X/macOS from the Utilities window
  • After several reboots configure OS X/macOS.
  • Upgrade to Sierra (or an older system) if necessary/possible.
  • Open Boot Camp Assistant and install Windows
Licensed under: CC-BY-SA with attribution
Not affiliated with apple.stackexchange
scroll top