Find Related products on Amazon

Shop on Amazon

Development on Apple Silicon with UTM

Published on: 2025-04-24 02:28:31

Development On Apple Silicon with UTM "UTM is an app for running other operating systems on your iPhone or iPad. It is not for running iOS on other systems. This allows you, among other things, to run Windows or Linux on your iOS device at a usable speed." – UTM Website In this article, I'll show you how to use UTM VMs virtual machines to create Linux development environments on Apple Silicon. This approach builds on the technique I described in here. First, install UTM using Homebrew: brew install --cask utm . Then, install brew install cdrtools , which provides mkisofs . We'll use that tool to create an init.iso - our seed script for initializing the VM. We need a bunch of tools and images. Fedora Cloud images mirror.bahnhof.net. aarch64 Fedora-Cloud-Base-Generic-42-1.1.aarch64.qcow2 x86_64 Fedora-Cloud-Base-Generic-42-1.1.x86_64.qcow2 Ubuntu Cloud images cdimage.ubuntu.com. aarch64 plucky-preinstalled-server-arm64.img.xz x86_64 plucky-preinstalled-server-amd64.img.xz We’l ... Read full article.