SideQuest #01: How To Virtualise Sequoia
Converting Install macOS Sequoia.app to an ISO file
Converting _Install macOS Sequoia.app_
 to an ISO file
Introduction
Some adventures begin with a stray command, a corrupted ISO, or an innocent âwhat if?â at 2AM. Side Quests is where we document the glorious tangents: the odd tools, offbeat projects, and unsolicited technical revelations that make life worth scripting. No XP guaranteed, but an adventure more enlightening than the main plot. Loot optional.
Let the Side Quest Begin
In this first episode in the Side Quest category, Iâm diving into how I managed to install macOS 15 Sequoia in VMware Fusion 13 on my six year old Intel MacBook Pro.
Life is full of side quests. Make sure to do them all.
Prerequisites
Youâre going to need the sudo
 password for the Mac and youâre going to need almost 60GB of free space before you begin.
Side Quest Attributes
1
2
3
4
5
6
7
8
+------------------+---------+-----------------------------------------+
| Attribute | Req Lvl | Notes |
+------------------+---------+-----------------------------------------+
| đĽď¸ Command-Line | 3 | Basic `hdiutil` and Terminal-fu |
| đ§ Intelligence | 4 | Interpreting obscure error messages |
| đ Luck | 4 | Disk space and cursed `.cdr` extensions |
| đ§ Craftsmanship | 3 | Precision disk imagesmithing |
+------------------+---------+-----------------------------------------+
Loot and XP
đż Sequoia.iso
đĽď¸ +1 Proficiency in Command-Line
đ§ââď¸ +1 Confidence in Virtualisation
Download macOS Sequoia
Open the App Store app and search for the OS version you want to download. Click âGetâ and then âDownloadâ and it should start downloading. Now, depending on your Internet speed â this is a good time to drink more coffee âď¸. This is a 17GB download.
App Store where you can download macOS Sequoia
Create the ISO
Now itâs time to create the ISO file from the downloaded file.
When downloaded the file will end up as an application called Install macOS Sequoia
 in your/Applications
 folder.
All the commands below are also available in my GitHub repository here:
https://github.com/PaleSkinnySwede/ThreatHunter-Chronicles/tree/main/SideQuests/01%20-%20How%20To%20Virtualise%20Sequoia
The first step is to create a volume which we can write the installation files to. You do this by opening the Terminal and type:
hdiutil create -o /tmp/sequoia -size 20480m -volname Sequoia -layout SPUD -fs HFS+J
This will create a 20GB volume named âSequoiaâ with the journaling version of HFS, unless you roll a 2 in the Random Encounter â then the file will be 2GB. Make sure you type 20480m
 .
When done, itâs time to mount it to the file system. Still in the Terminal, type this:
hdiutil attach /tmp/Sequoia.dmg -mountpoint /Volumes/Sequoia
Now, letâs create the install media. Hereâs the command line to do that:
sudo /Applications/Install\ macOS\ Sequoia.app/Contents/Resources/createinstallmedia --volume /Volumes/Sequoia
Before we convert it, we need to detach it:
hdiutil detach /Volumes/Install\ macOS\ Sequoia
And now, letâs make an ISO file. First, convert it to a CDR file using hdiutil
 and place it on the Desktop so itâs easy to find:
hdiutil convert /tmp/Sequoia.dmg -format UDTO -o ~/Desktop/Sequoia.cdr
The Desktop is the perfect download folder. Trust me on this one. Itâs the place where a lot of sane people are actually saving their files.
Appleâs command-line tools are like jazz musicians â they almost follow the rules, but then throw in a surprise extension just to keep you on your toes.
The hdiutil
 is one of those tools that suffer a bit from Apple-ism and it will hard code .cdr
as the file extension. If you tried to name the file Sequoia.iso
 in the command above, it will now be called Sequoia.iso.cdr
. Letâs change the filename from .cdr
 to .iso
 by typing the following:
mv ~/Desktop/Sequoia.cdr ~/Desktop/Sequoia.iso
Now youâve got a fine and fresh Sequoia.iso
 file on the Desktop that you can use in VMware Fusion or any other hypervisor application on your Mac. Have fun!
Cleaning up
If you already have Sequoia, or donât want to install it, on your Mac you can go ahead an delete the Install macOS Sequoia.app
 from the /Application
 folder and donât forget to also delete the Sequoia.dmg
 in your /tmp
 folder. This will return 37 precious GB of free space in your inventory for other loot you might come across in other SideQuests.
đ˛ Random Encounter List (roll d4)
- âNo operating system found.â
- Volume ends up being 2GB instead of 20GB.
- The VM boots into Recovery mode.
- Finder crashes mid-process. You question reality.
After youâve finished creating the mighty Sequoia.iso
 ready to be used when needed, youâre strolling along a path through the woods. You see a wizard-looking tall woman approaching you. She stops in front of you and whispers; âYou will find the tools in the past. Make sure to get them.â She then disappears like smoke that dissolves in to thin air. Youâre thinking to yourself; âIs this another Side Quest?â.