*Tart* is a virtualization toolset to build, run and manage macOS and Linux virtual machines (VMs) on Apple Silicon. Built by CI engineers for your automation needs. Here are some highlights of Tart: * Tart uses Apple's own `Virtualization.Framework` for [near-native performance](https://browser.geekbench.com/v5/cpu/compare/14966395?baseline=14966339). * Push/Pull virtual machines from any OCI-compatible container registry. * Use Tart Packer Plugin to automate VM creation. * Built-in CI integration. *Tart* is already adopted by several automation services:

Many more companies are using Tart in their internal setups. Here are a few of them:

**Note:** If your company or project is using Tart please consider [adding yourself to the list above](/Resources/Users/HowToAddYourself.md). ## Usage Try running a Tart VM on your Apple Silicon device running macOS 12.0 (Monterey) or later (will download a 25 GB image): ```shell brew install cirruslabs/cli/tart tart clone ghcr.io/cirruslabs/macos-ventura-base:latest ventura-base tart run ventura-base ``` Please check the [official documentation](https://tart.run) for more information and/or feel free to use [discussions](https://github.com/cirruslabs/tart/discussions) for remaining questions. ## FAQ
How Tart is different from Anka Under the hood Tart is using the same technology as Anka 3.0 so there should be no real difference in performance or features supported. If there is some feature missing please don't hesitate to [create a feature request](https://github.com/cirruslabs/tart/issues). Instead of Anka Registry, Tart can work with any OCI-compatible container registry. Tart doesn't yet have an analogue of Anka Controller for managing long living VMs. Please take a look at [CI integration](#ci-integration) section for an option to run ephemeral VMs for your needs.
Why Tart is free and open sourced? Apple did all the heavy lifting with their `Virtualization.Framework` and it just felt right to develop Tart in the open. Please consider [becoming a sponsor](https://github.com/sponsors/cirruslabs) if you find Tart saving a substantial amount of money on licensing and engineering hours for your company.
How to change VM's disk size? You can choose disk size upon creation of a virtual machine: ```shell tart create --from-ipsw=latest --disk-size=25 monterey-vanilla ``` For an existing VM please use [Packer Plugin](https://github.com/cirruslabs/packer-plugin-tart) which can increase disk size for new virtual machines. Here is an example of [how to change disk size in a Packer template](https://github.com/cirruslabs/macos-image-templates/blob/fb0bcf68e0b093129136875c050205a66729b596/templates/base.pkr.hcl#L15).
VM location on disk Tart stores all it's files in `~/.tart/` directory. Local images that you can run are stored in `~/.tart/vms/`. Remote images are pulled into `~/.tart/cache/OCIs/`.
Nested virtualization support? Tart is limited by functionality of Apple's `Virtualization.Framework`. At the moment `Virtualization.Framework` doesn't support nested virtualization.
Changing the default NAT subnet To change the default network to `192.168.77.1`: ```shell sudo defaults write /Library/Preferences/SystemConfiguration/com.apple.vmnet.plist Shared_Net_Address -string 192.168.77.1 ``` Note that even through a network would normally be specified as `192.168.77.0`, the [vmnet framework](https://developer.apple.com/documentation/vmnet) seems to treat this as a starting address too and refuses to pick up such network-like values. The default subnet mask `255.255.255.0` should suffice for most use-cases, however, you can also change it to `255.255.0.0`, for example: ```shell sudo defaults write /Library/Preferences/SystemConfiguration/com.apple.vmnet.plist Shared_Net_Mask -string 255.255.0.0 ```