# macOS Sierra 10.12.6 ISO Download for VirtualBox/VMware Workstation

## How to download or create macOS Sierra ISO file?

**Quick Answer:**

- If you're using a Windows PC, [download the macOS Sierra ISO file directly from iBoysoft DiskGeeker](#download-sierra-iso-windows) , which can also make a bootable Sierra USB on Windows.
- If you're using a Mac, [create the macOS Sierra ISO file](#create-sierra-iso) yourself with the official DMG file.
- If you're looking for a direct download link, [try free archives at your own risk](#download-macos-sierra-iso-for-virtualbox/vmware-workstation-directly) .

![Download macOS Sierra ISO file](https://iboysoft.com/images/en-howto/macos-sierra-iso-download/macos-sierra-download-iso.jpg)

Released on September 20, 2016, as the successor of OS X El Capitan, macOS Sierra marked the transition from "OS X" to "macOS." It also introduced several new features, including Optimized Storage, Universal Clipboard, Apple's voice assistant Siri, Apple Pay in Safari, and more.

As of today, macOS Sierra is considered an obsolete Mac operating system. However, you may still want it if you have an old Mac or need to run some legacy software.

If your computer isn't compatible with macOS Sierra, you can install it on a virtual machine like VirtualBox or VMware Workstation to use it on Windows or unsupported Macs. This will require a**macOS Sierra ISO file**, which we'll help you acquire in this article.

[Download Mac Operating System for Windows](https://iboysoft.com/howto/mac-operating-system-download-for-windows.html)

## What's a macOS Sierra ISO file?

A macOS Sierra ISO file is a disk image that contains an exact copy of the macOS Sierra operating system. Since Apple doesn't provide macOS installers as ISO files, you either need to manually create a macOS Sierra ISO file or download one created by others.

With it, you can install macOS Sierra on VirtualBox or VMware Workstation to create a Hackintosh or update an unsupported Mac.

## Download macOS Sierra ISO on Windows directly

If you're trying to install macOS Sierra on a Windows PC, download the ISO file directly from[iBoysoft DiskGeeker for Windows](https://www.m3datarecovery.com/diskgeeker/). It provides safe, bootable ISO files for macOS Sierra and other macOS versions. In addition, it lets you create a macOS Sierra bootable USB installer from Windows in a few clicks.

Here's how to download macOS Sierra ISO on Windows directly:

Step 1: Download, install, and open iBoysoft DiskGeeker.

Step 2: Choose**Download and create boot disk**\>**Download macOS system image**.

![Clicking Download macOS System Image button to download ISO](https://iboysoft.com/images/en-howto/macos-sierra-iso-download/download-macos-system-image.jpg)

Step 3: Choose**macOS Sierra**and click**Get**.

Step 4: Select the**.iso**format.

![Selecting macOS Sierra ISO](https://iboysoft.com/images/en-howto/macos-sierra-iso-download/macos-sierra-iso.jpg)

Step 5: Decide where to save the macOS Sierra ISO file.

![Choosing where to save the macOS Sierra ISO file](https://iboysoft.com/images/en-howto/macos-sierra-iso-download/choose-save-location.jpg)

Step 6: Wait for the ISO file to be downloaded.

If you need bootable media, choose**Create macOS USB Installer**in Step 2.

Share the tool if it's helpful\!

## Create macOS Sierra ISO on Mac manually

If you have a Mac that's compatible with macOS Sierra, you can create the macOS Sierra 10.12.6 ISO file yourself. Follow the steps below:

### Step 1: Create the bootable macOS Sierra DMG file.

Older macOS versions, like macOS Sierra, are available as DMG files that you can download through Safari. Click the link below to[download the macOS Sierra DMG](https://iboysoft.com/howto/mac-os-sierra-download-dmg.html)file from Apple.

[macOS Sierra DMG file download](http://updates-http.cdn-apple.com/2019/cert/061-39476-20191023-48f365f4-0015-4c41-9f44-39d3d2aca067/InstallOS.dmg)

You can find the disk image in your Downloads folder or the selected save location.

![The downloaded macOS Sierra DMG file](https://iboysoft.com/images/en-howto/macos-sierra-iso-download/macos-sierra-dmg.jpg)

Be reminded that**this DMG file is not bootable**. To create a working macOS Sierra ISO file, you need to extract the macOS Sierra installer from the DMG file and then manually create the bootable macOS Sierra.dmg file.

Tips:Alternatively, you can download a bootable macOS Sierra DMG file from[iBoysoft DiskGeeker for Mac](https://iboysoft.com/disk-utility/), then jump to Step 2. This tool doesn't require a compatible Mac to download macOS Sierra, and it saves you time. It's also capable of making a macOS Sierra bootable USB installer.

Step 1: Open the tool.

Step 2: Click**Download Image**.

Step 3: Choose**macOS 10.12 Sierra**and click**Download Image**.

![Choosing macOS Sierra DMG file](https://iboysoft.com/images/en-howto/macos-sierra-iso-download/download-sierra-dmg.jpg)

1. Locate the downloaded DMG file and double\-click it to install it in your Applications folder.
2. Open Finder and go to the Applications \> Utilities folder to launch Terminal.
3. Type the command below to create an empty disk image. hdiutil create \-o Sierra \-size 10000m \-volname Sierra \-layout SPUD \-fs HFS\+J
4. Run another command to mount the newly created disk image. hdiutil attach Sierra.dmg \-noverify \-mountpoint /Volumes/Sierra
5. Create a bootable macOS Sierra DMG file. sudo /Applications/Install\\ macOS\\ Sierra.app/Contents/Resources/createinstallmedia \-\-volume /Volumes/Sierra \-\-applicationpath /Applications/Install\\ macOS\\ Sierra.app \-\-nointeraction
6. Enter your login password and hit Enter.
7. Find the DMG file in your user folder.

### Step 2: Convert the macOS Sierra.dmg file to macOS Sierra.iso file.

Once you have the bootable macOS Sierra DMG file, enter the following command in Terminal after replacing dmg\_file\_path with the actual path and hit Enter.

*To get the file path of your DMG file, you can locate the file and then drag and drop it into Terminal.*

hdiutil convert dmg\_file\_path \-format UDTO \-o ~/Desktop/macOS\\ Sierra.cdr

For instance, the final command may be: hdiutil convert /Users/jenny/Desktop/macOS\\ Sierra.dmg \-format UDTO \-o ~/Desktop/macOS\\ Sierra.cdr

*Command breakdown:*

This command converts a disk image file from the DMG format \(Apple Disk Image\) to the CDR format \(Apple CD/DVD Master\) using the hdiutil utility on macOS.

- hdiutil: This is a command\-line utility for working with disk images on macOS.
- convert: This option tells hdiutil to convert a disk image from one format to another.
- dmg\_file\_path: Replace this with the actual path of the DMG file you want to convert.
- \-format UDTO: This specifies the output format as UDTO \(which is a raw disk image format\).
- \-o ~/Desktop/macOS\\ Sierra.cdr: This specifies the output file path and name. The backslash before the space in "macOS Sierra" is used to escape the space character.

Now that you have the macOS Sierra.cdr file, you can get the macOS Sierra.iso file with one more step.

Copy and paste the following command into Terminal and then hit Enter.

mv ~/Desktop/macOS\\ Sierra.cdr ~/Desktop/macOS\\ Sierra.iso

*Command breakdown:*

This command renames the file macOS Sierra.cdr to macOS Sierra.iso on the Desktop.

- mv: This is the command used to move or rename files and directories in Unix\-like operating systems, including macOS.
- ~/Desktop/macOS\\ Sierra.cdr: This is the source file you are moving or renaming. The tilde \(~\) represents the current user's home directory, and Desktop specifies the Desktop folder. The backslash \(\\\) is used to escape the space in the file name "macOS Sierra," allowing the command to interpret it correctly.
- ~/Desktop/macOS\\ Sierra.iso: This is the destination file name. In this case, you are renaming the file from .cdr to .iso, which is a common disk image format used for optical media.

### Step 3: Use the macOS Sierra 10.12.6 ISO file.

If you check your desktop, you should find the macOS Sierra ISO file. You can now utilize it as you wish. If it's for installing macOS Sierra on VirtualBox or VMware, upload it to the software by following the correct instructions. If you'd like to create a bootable USB installer with the macOS ISO file, keep reading the article below to get step\-by\-step guidance.

## Download macOS Sierra ISO for VirtualBox/VMware

When you search for "macOS Sierra ISO file download" online, you'll notice some free archives that provide it. These files seem convenient, but there's a risk of them being modified, outdated, or unbootable. However, if you want to take the chance, we recommend that you back up your computer before installing it.

Here are a few resources where you can download the macOS Sierra ISO file:

[macOS Sierra 10.12.6 ISO download](https://www.mediafire.com/file_premium/y6efezxvuiyb2bm/macOS_Sierra_10.12.6_techrechard.com.iso/file)

[macOS Sierra 10.12.6 ISO download for Windows](https://archive.org/download/macos-sierra-10.12.6-iso/Install-macOS-Sierra-10.12.6_16G29.iso)

[macOS Sierra ISO download for VirtualBox](https://www.mediafire.com/file/9nrqdocr7o6sba7/macOS_Sierra_10_12_by_techrechard.com.iso/file)

[macOS Sierra ISO download for VMware Workstation](https://www.mediafire.com/file/9nrqdocr7o6sba7/macOS_Sierra_10_12_by_techrechard.com.iso/file)

[macOS Sierra 10.12 ISO download torrent](https://data.pyenb.network/macOS/isos/torrents/macOS%20Sierra%2010.12.6_16G29.iso.torrent)\(MD5 Hash: cae4996857a25f495ded1863472841c7\)

Share the links to download macOS Sierra ISO 32\-bit with others\!

Also read:

[How to Create Bootable USB from ISO Files?](https://iboysoft.com/tips/create-bootable-usb-from-iso-mac.html)

## FAQs

ACommon reasons include: 1. Incorrect conversion from DMG 2. Corrupted ISO file 3. Wrong boot mode \(UEFI/BIOS\) 4. Improper USB creation Recreating the ISO usually fixes the issue.

ANo, Apple does not provide ISO files directly. macOS Sierra installers are distributed as.app or.dmg files, which need to be converted into ISO format if required.
