Parallels may have created the virtual hard disk file when you get to the Configure dialog. That's why I select Hard Disk 1 and click [-] to move the Hard Disk file to the trash. Then I click [+] to create a new Hard Disk 1 from Boot Camp. The old virtual hard disk is not deleted from the trash unless you manually empty the trash (look in the trash for an .hdd file).
Generally, switching an existing Hard Disk between image type and Boot Camp does not remove the original hard disk file. You can right click your virtual machine file (.pvm) in the Finder and select "Show Package Contents" to show the virtual hard disks (.hdd) that were created for your virtual machine.
- There should be one .hdd per Hard Disk.
- A Boot Camp virtual hard disk .hdd file is usually named after the manufacturer of the real disk that contains the Boot Camp partition(s) used by the virtual hard disk.
- An image type virtual hard disk .hdd file is usually named after the virtual machine file (.pvm)
To check if the MBR and GPT are in sync, use the following commands:
Code:
diskutil list
sudo fdisk /dev/rdisk0
sudo gpt -r show -l /dev/disk0
The start and size of partitions in the MBR (listed by the fdisk command) should match partitions in the GPT (listed by the gpt command) except for the EE partition. The EE partition in the MBR should start at block 1 (the location of the primary GPT header) and end before the next partition listed in the MBR (usually after the EFI partition).