Home > How to Tips

Download/Create macOS Sonoma ISO for VMware or VirtualBox

Updated on Wednesday, April 24, 2024

iBoysoft author Jenny Zeng

Written by

Jenny Zeng
Professional tech editor

Approved by

Jessica Shee

English Français Deutsch やまと Español Português

How to Download/Create macOS Sonoma ISO for VMware or VirtualBox?

Summary: This tutorial offers the link to download macOS Sonoma ISO for VMware, VirtualBox, Parallel Desktop, and other virtual machine software. If you have a compatible Mac or Virtual Mac, you can also follow the given steps to create a macOS Sonoma ISO file yourself.

How to download or create macOS Sonoma ISO

Apple released macOS 14 Sonoma, the successor of macOS Ventura, to the public on September 26, 2023. This major update has introduced a plethora of innovative features, refined designs, and enhancements aimed at improving user experience and productivity.

Among the notable additions are stunning dynamic screensavers of locations from around the world, widgets that you can add to the desktop, a new "Presenter Overlay" feature that can keep you front and center while sharing the screen, Game Mode that allocates games the highest priority on the CPU & GPU, and enhancements to the Safari browser.

If you want to install macOS Sonoma on a virtual machine, such as VMware, VirtualBox, or Parallel Desktop, you'll need the macOS 14 Sonoma ISO file.

What is a macOS Sonoma ISO file?

What is a macOS Sonoma ISO file

A macOS Sonoma ISO file (.iso) is a disk image file for macOS Sonoma, typically used for installing macOS Sonoma on virtual machines like VMware or VirtualBox, creating bootable installers, or for other installation methods beyond the standard upgrade process provided by Apple through the Mac App Store or Software Updates.

If you have a macOS Sonoma ISO file, you can create a new virtual machine in VMware or VirtualBox, mount the macOS Sonoma ISO as the virtual disc drive, and then install macOS Sonoma on that virtual machine, effectively running a macOS Sonoma within your actual computer, regardless of whether your actual computer is running Windows, Linux, or another operating system.

This allows users to test, develop, and run macOS Sonoma and applications in isolated environments without needing to modify their actual computers, which can be especially useful for developers, testers, and IT professionals.

Share this post to help others know what the macOS Sonoma ISO file is!

 

How to download macOS Sonoma ISO for VMware or VirtualBox?

If you don't have a Mac that's compatible with macOS Sonoma, you can directly download the macOS Sonoma ISO file we created for you from the link below.

It was made from the public release of macOS Sonoma, which is 12.9 GB in size, downloaded on My MacBook running macOS Sonoma. The final macOS Sonoma ISO file is 16.76 GB. We compressed it to make it easier to transfer and the zip file is 14.36 GB.

macOS Sonoma ISO Free Download

How to create macOS Sonoma ISO for Virtual Machines on Mac?

If you have a spare Mac that supports macOS Sonoma or a macOS virtual machine, you can create the macOS Sonoma ISO file with the steps below. After that, you can continue using the ISO file for your needs such as installing macOS Sonoma on VirtualBox on Windows or installing macOS Sonoma on VMware on Windows.

  • Step 1: Download the macOS Sonoma full installer
  • Step 2: Create an empty ISO disk image in Terminal
  • Step 3: Make the macOS Sonoma installer
  • Step 4: Unmount the macOS Sonoma disk image and convert it into the .iso format

Step 1: Download the macOS Sonoma full installer

The first step for creating a macOS Sonoma ISO file is to download the full installer of macOS Sonoma.

For a compatible Mac, you can download it from the Mac App Store. To do it, open the App Store, search for "macOS Sonoma" in the search bar, and hit the Enter key.

When macOS Sonoma shows up, click View > Get, and then you'll be redirected to the Software Update page. Click the Download button when it asks whether you want to get macOS Sonoma.

How to download macOS Sonoma full installer from Mac App Store

After the download finishes, click "Install macOS Sonoma" > "Quit Install macOS" > Quit to quit the installation. Then the macOS Sonoma installer will be kept in the Applications folder.

Quit the macOS Sonoma installer

For a virtual Mac, you can download it from the Apple Server. The download is an installation package in the format of .pkg. When it completes, you can open the InstallAssistant.pkg file and follow the onscreen instructions to extract it. Once it's extracted, you should see the "Install macOS Sonoma" app in your Applications folder.

macOS Sonoma full installer in the Applications folder

Step 2: Create an empty ISO disk image in Terminal

The next step is to prepare an empty disk image for the macOS Sonoma installer and mount it with the hdiutil command line tool.

Press Command + Space to open Spotlight search, then type in "terminal" and press the Enter key to launch Terminal.

How to open Terminal on Mac

After that, copy and paste the command below into the Terminal window and hit Enter to execute it. (It may take a minute for the disk image to be created.)

hdiutil create -o /tmp/Sonoma -size 15979m -volname Sonomaiso -layout SPUD -fs HFS+J -type UDTO -attach

How to create an empty disk image for macOS Sonoma

* This command creates a new, single-partition, 15979 MB disk image with the volume name "Sonomaiso," using the HFS+ journaled file system, in the /tmp directory with the name "Sonoma," and of the type suitable for creating CD/DVD ISOs. After creating the disk image, it's immediately mounted to the system.

The empty macOS Sonoma disk image in the tep folder

Here's a breakdown of the command:

  • hdiutil create: This initiates the creation of a new disk image.
  • -o /tmp/Sonoma: The -o option specifies the output file's location and name. /tmp/Sonoma is the path where the new disk image will be created. The file will be temporarily stored in the system's /tmp directory with the name "Sonoma."
  • -size 15979m: This sets the maximum size of the disk image to 15979 megabytes.
  • -volname Sonomaiso: This assigns the volume name "Sonomaiso" to the disk image.
  • -layout SPUD: The -layout option specifies the partition scheme of the disk image. "SPUD" stands for single-partition UDIF (Universal Disk Image Format).
  • -fs HFS+J: This designates the file system for the disk image as HFS+ with journaling enabled. HFS+ is a file system commonly used by macOS.
  • -type UDTO: This specifies the disk image type as UDTO, which stands for Universal Disk Image Format (UDIF) DVD/CD-R master. This type is often used to create an ISO image that can be burned to CD/DVD.
  • -attach: After creating the disk image, the -attach option mounts the new disk image to the file system, making it accessible as if it were a physical disk.

Step 3: Make the macOS Sonoma installer

Now, you can make the bootable macOS Sonoma installer on the created empty disk image.

Paste the command below into Terminal and hit Enter. Then type in your administrator password and press Enter again. (Note that the password won't echo to the screen.)

sudo /Applications/Install\ macOS\ Sonoma.app/Contents/Resources/createinstallmedia --volume /Volumes/Sonomaiso --nointeraction

How to create a bootable macOS Sonoma installer on the empty disk image

  • sudo: It is typically used to execute administrative tasks or commands.
  • /Applications/Install\ macOS\ Sonoma.app/Contents/Resources/createinstallmedia: This is the path to the createinstallmedia command located inside the macOS Sonoma installer package, which is usually located in the /Applications directory. The backslashes (\) are escape characters used to handle spaces in the file or directory names in the command line.
  • --volume /Volumes/Sonomaiso: This specifies the volume "Sonomaiso" as where the bootable installer will be created.
  • --nointeraction: This flag runs the command without requiring user interaction, meaning it won't prompt the user for confirmations or additional input during execution.

Step 4: Unmount the macOS Sonoma disk image and convert it into the .iso format

After the macOS Sonoma install media is created, you need to unmount it, convert its format from Sonoma.cdr to Sonoma.iso, and move it to your desktop.

In Terminal, execute the following command to unmount the "Install macOS Sonoma" disk image.

hdiutil detach -force /Volumes/Install\ macOS\ Sonoma

Unmount the macOS Sonoma bootable installer

Then run the following command to move the macOS Sonoma installer to your desktop and rename the extension from .cdr to .iso:

mv /tmp/Sonoma.cdr ~/Desktop/Sonoma.iso

Conver the macOS Sonoma installer to macOS Sonoma ISO

Now that you have the macOS Sonoma ISO file on your Mac's desktop; you can utilize it to install macOS Sonoma on VMware, VirtualBox, or other virtual machines.

The created macOS Sonoma ISO on your desktop

Also read:

How to Download/Create macOS Sonoma DMG File for Clean Installation?

How to Download/Create macOS Big Sur 11.7 ISO File for VirtualBox/VMWare

Share this guide to benefit others who want to create a macOS Sonoma ISO file on Mac.