Failed to create a bootable disk image file for this version of macOS.

DaveP10

Bit poster
Hello all,

Any ideas on why I keep getting this message? I am running out of ideas and cannot get any answers from support.
I had to rebuilt my mac system from scratch and reinstalled + re-added the license. I am on macOS Monterey 12.01 and trying to create a new Big Sur instance on 11.6.1. The .app installer is sitting in /Applications and I've downloaded directly from Apple, so I can confirm that it is clean. Yet, I am still getting this error within the Installation Assistant right after I select the .app and click Continue.

Any ideas would be very helpful on how to resolve.

Thank you!
 
Hello all,

Any ideas on why I keep getting this message? I am running out of ideas and cannot get any answers from support.
I had to rebuilt my mac system from scratch and reinstalled + re-added the license. I am on macOS Monterey 12.01 and trying to create a new Big Sur instance on 11.6.1. The .app installer is sitting in /Applications and I've downloaded directly from Apple, so I can confirm that it is clean. Yet, I am still getting this error within the Installation Assistant right after I select the .app and click Continue.

Any ideas would be very helpful on how to resolve.

Thank you!
Stuck in same boat. Did you ever figure this out?
 
I had the same issue. In my case, the error occurred when trying to directly create a macOS VM whose OS version is not natively supported on my physical underlying Mac hardware. For example trying to directly create/install macOS Monterey on a Mac Pro 2010 produced this error.'

I figured out I could instead first (1) Create a macOS VM using the last version natively supported by the underlying hardware then (2) upgrade the OS within the VM thereafter. Using the same example, first created a macOS Mojave VM, then upgraded the OS within the VM to Monterey 12.3.1.
 
Additional note about this in-place OS upgrade process. From my experience, upgrading the VM from macOS Mojave to Monterey went fine, but at one point during the upgrade it displayed an icon of a circle with a slash going through it with a link about macOS startup. But after some time it rebooted and continued the upgrade process. My suspicion was that page was related to attempted firmware upgrades which weren't needed.
 
Additional note about this in-place OS upgrade process. From my experience, upgrading the VM from macOS Mojave to Monterey went fine, but at one point during the upgrade it displayed an icon of a circle with a slash going through it with a link about macOS startup. But after some time it rebooted and continued the upgrade process. My suspicion was that page was related to attempted firmware upgrades which weren't needed.
Hello, please let us know if the issue is resolved. If not, kindly help us with the screenshot of the error.
 
Hello, please let us know if the issue is resolved. If not, kindly help us with the screenshot of the error.
@DebasmitaM@Parallels - I am having the same issue of the error message "Failed to create bootable image file for this version of macOS" when I select the macOS Monterey 12.3 installer .app in the Applications folder, as downloaded directly from Apple's server. I also see the same error when I select the macOS 13 Ventura beta installer .app as well. Both of these installer apps are for the respective Intel version of macOS.

The host system is a 27" 2017 iMac with 4.2GHz Quad-Core Intel Core i7, running macOS Monterey 12.4 as the host OS. I am 100% sure that the host Mac is able to natively install and run macOS Monterey 12.3, so the error message must be due to another reason.

Here are screenshots:

db0VpLk.png

5BTDlsk.png

3DTjE7s.png
 
@DebasmitaM@Parallels - I am having the same issue of the error message "Failed to create bootable image file for this version of macOS" when I select the macOS Monterey 12.3 installer .app in the Applications folder, as downloaded directly from Apple's server. I also see the same error when I select the macOS 13 Ventura beta installer .app as well. Both of these installer apps are for the respective Intel version of macOS.

The host system is a 27" 2017 iMac with 4.2GHz Quad-Core Intel Core i7, running macOS Monterey 12.4 as the host OS. I am 100% sure that the host Mac is able to natively install and run macOS Monterey 12.3, so the error message must be due to another reason.

Here are screenshots:

db0VpLk.png

5BTDlsk.png

3DTjE7s.png
Hello, which Parallels Desktop version you are using?
 
Any updates on this? Other users (i.e. me) are having this issue as well, so please don't DM individuals or if you do, please update this thread as well.
 
I can confirm that I am having the same issue on the same exact hardware 27" 2017 iMac with 4.2GHz Quad-Core Intel Core i7, running macOS Monterey 12.4 as the host OS and Parallels Desktop for Mac version 17.1.4.
 
The same issue, anyone knows where to get an Image File for older versions? I am planning to upgrade a Big Sur VM to Monterey inside the VM but cant seem to find a working download link for Big Sur Image
 
I ran into this problem today and decided to dig deeper. Actual workaround inside! (Although I have no idea why it works...)

The actual process of converting the App to ISO actually uses a shell script. This is the command it executes (your paths will vary):
Code:
/bin/bash '/Applications/Parallels Desktop.app/Contents/Resources//repack_osx_install_app.sh' repack '/Applications/Install macOS Monterey.app' '/Users/flow/Parallels/macOS_image_file.iso' -w

You can actually execute that same script easily (use sudo, some steps seem to require root). In my case it failed in hdiutil attach:

Code:
+ for i in '{1..10}'
++ hdiutil attach '/Users/flow/Parallels/macOS image file.iso.tmp.MmgaDy/macOSInstallImage.sparsebundle' -mount required -mountrandom '/Users/flow/Parallels/macOS image file.iso.tmp.MmgaDy' -plist -nobrowse -noverify
++ grep -A1 mount-point
++ sed -n 's:.*<string>\(.*\)</string>.*:\1:p'
hdiutil: attach failed - Resource temporarily unavailable
++ true
+ mount_path=
+ '[' -n '' ']'
+ sleep 3

Interestingly hdiutil attach seemed to work half, at least afterwards with hdiutil info you could see a mount. The error is completely reproducible when editing the script to make sure it leaves the sparsebundle around after the run. You can run hdiutil attach and detach on it and see the error.

Anyway, I googled the error and found https://stackoverflow.com/questions...t-results-to-resource-temporarily-unavailable where someone claimed he encountered this error when using hdiutil detach but could work around it with diskutil eject. Neither he nor the responder had any idea why that might be. But I was desperate, so I experimented with it. And lo an behold, when running hdiutil attach on the sparsebundle and then not running hdiutil detach but instead run diskutil eject then the next hdiutil attach works. Magic!

And we can use that to work-around the problem in Parallels as well. As you can see in the script output above it actually tries the hdiutil attach 10 times with 3 seconds sleeps in between. So open a terminal beside Parallels and determine which disk hdiutil attach will use (Just run diskutil list and see what the next /dev/disk number will be). In my case I have a /dev/disk1, so hdiutil attach uses /dev/disk2). So I started the conversion process in Parallels, waited for a few seconds and then executed diskutil eject /dev/disk2 in the terminal. That made the script actually succeed and Parallels continued from there.
 
Instead of executing the diskutil eject in a separate terminal you can also edit the /Applications/Parallels Desktop.app/Contents/Resources//repack_osx_install_app.sh directly. Just add the diskutil eject command before the sleep 3 (line 75 in my version of Parallels). Probably with some work you could actually detect that disk to eject, but I haven't invested time in that. I confirmed that it works on my system by just adding diskutil eject /dev/disk2 and cleaning up any remaining mounts before starting it.
 
Hello all,

Any ideas on why I keep getting this message? I am running out of ideas and cannot get any answers from support.
I had to rebuilt my mac system from scratch and reinstalled + re-added the license. I am on macOS Monterey 12.01 and trying to create a new Big Sur instance on 11.6.1. The .app installer is sitting in /Applications and I've downloaded directly from Apple, so I can confirm that it is clean. Yet, I am still getting this error within the Installation Assistant right after I select the .app and click Continue.

Any ideas would be very helpful on how to resolve.

Thank you!
I had the same issue and I cracked it!

Here is what you need to do. Attach a USB disk drive formatted in Mac OS X Extended or AFPS. (A old USB drive will do.) please backup anything off it before formatting it.

When the software says that it need to create a bootable volume save this to the USB drive. The creation of it will take a while for a 13GB file when I installed Big Sur took at least 5 mins. Please be patient. You will see the Big Sur disk volume dmg come and go off the desktop. This is normal and there is nothing to worry about. Its like as if you are using the createinstallmedia command in terminal.

After it has created the boot volume on the USB drive it will then ask you where would you like too save and start the virtual machine. Save this where you normally do. the virtual machine will then boot off the USB drive and then you can install the OS. if you want to remove the USB drive after install this will need to be done under the virtual machine settings. As I think (unless someone wants to correct me, and feel free,) you can delete it.

Let me know how you get on. I would think the reason why we can't install on the internal drive is a security thing or Apple are tight on security. I am not sure.

Good Luck!
 
Will have to try it out, but the interesting thing for me is that it still does this on my Catalina install where the VMs are being housed on a secondary, physical SSD (not the OS drive).
Also, I would expect that this could also be done just by simply mounting a blank image drive with similar specs. No external device needed. I'll try to remember to test that too.
try the method I suggested. Also if you download software called MDS from https://twocanoes.com/products/mac/mac-deploy-stick/ its software to deploy updates to Mac OS for IT teams etc. Its free to download.
 
Back
Top