Current macOS version: High Sierra (10.13), tested with VirtualBox 5.2.16 r123759
Images for several Ubuntu flavours are available. Latest: Ubuntu 15.04 Ubuntu Linux 6.06.1 codename Dapper Drake Size (compressed/uncompressed): 458 MBytes / 2.55. Download macOS High Sierra 10.13.1 ISO Installer for Mac, VMware and VirtualBox macOS High Sierra 10.13.1 MacOS HighSierra has been released officially. The MacOS High Siera 10.13.1 update includes bug fixes. The VirtualBox will ask you where the ISO file downloaded by you in the previous step is. OK, at this time, the operating system starts being installed. If you are familiar with the installation of windows operating system, this is very simple.
To build a VM running macOS, follow the directions below:
Download the installer from Mac App Store (it should be available in the 'Purchases' section if you've acquired it previously). The installer will be placed in your Applications folder. (Should work for Yosemite, El Capitan, Sierra and High Sierra, Mojave - 10.10-10.14.)
Make the script executable and run it: chmod +x prepare-iso.sh && ./prepare-iso.sh
.
If the script fails to find the installer you can specify its path as the first parameter. By default, the output is saved as <Yosemite|El Capitan|Sierra|High Sierra|Mojave>.iso on the Desktop. You can change this using the second parameter.Example:
Open VirtualBox and create a new VM.
Set:
Mac OS X
Mac OS X (64-bit)
.Follow the rest of the VM creation wizard and either leave the defaults or adjust to your liking.
Go into the Settings for the new VM you created and:1. Under 'Display', increase the Video Memory to at least 128MB, otherwise macOS might not boot correctly, and display performance will be abysmal.2. Under 'Audio', uncheck 'Enable Audio', otherwise the VM may display 'choppy' performance.
In Terminal, run the command VBoxManage modifyvm VM_NAME --cpuidset 00000001 000306a9 00020800 80000201 178bfbff
(where VM_NAME
is the exact name of the VM set in step 4) so the VM has the right CPU settings for macOS.
Click 'Start' to boot the new VM.
Select the iso created in step 2 when VirtualBox asks for it.
In the installer, select your preferred language.
Open Disk Utility and format the volume:1. Go to Utilities > Disk Utility
, select the VirtualBox disk, and choose Erase
to format it as:
Mac OS Extended (Journaled)
APFS
.Quit Disk Utility, and then continue with installation as normal.
I've noticed that sometimes I need to go in and explicitly mark the iso as a Live CD in the VM settings in order to get the VM to boot from the image.
If you try to start your VM and it does not boot up at all, check to make sure you have enough RAM to run your VM.
Conversely, VirtualBox sometimes does not eject the virtual installer DVD after installation. If your VM boots into the installer again, remove the ISO in Settings -> Storage
.
VirtualBox uses the left command key as the 'host key' by default. If you want to use it for shortcuts like command+c
or command-v
(copy&paste), you need to remap or unset the 'Host Key Combination' in Preferences -> Input -> Virtual Machine
.
The default Video Memory of 16MB is far below Apple's official requirement of 128MB. Increasing this value may help if you run into problems and is also the most effective performance tuning.
Depending on your hardware, you may also want to increase RAM and the share of CPU power the VM is allowed to use.
When the installation is complete, and you have a fresh new macOS VM, you can shut it down and create a snapshot. This way, you can go back to the initial state in the future. I use this technique to test the mac-dev-playbook
, which I use to set up and configure my own Mac workstation for web and app development.
If for High Sierra you can not find the VirtualBox disk created inside the Disk Utility select View -> Show All Devices
and format the newly visible device (Source: tinyapps.org).
If for High Sierra you encounter boot / EFI problems, restart the VM and hit F12
to get to the VirtualBox boot manager. Select EFI In-Terminal Shell and run:
If keyboard and mouse do not work inside the VM:
Ports > USB
, select USB 3.0 (xHCI) Control
.To control the screen size of your macOS VM:
Shutdown your VM
Run the following VBoxManage command:
Replace VM_NAME
with the name of your Virtual Machine. Replace N
with one of 0,1,2,3,4,5. These numbers correspond to the screen resolutions 640x480, 800x600, 1024x768, 1280x1024, 1440x900, 1920x1200 screen resolution, respectively.
The video mode can only be changed when the VM is powered off and remains persistent until changed. See more details in this forum discussion.
xcode-select --install
(or just try using git
, gcc
, or other tools that would be installed with CLI tools).This project was created in 2015 by Jeff Geerling.