| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
macOS VM engine for x86 Linux/KVM, built on cocoon. Boots real macOS guests (Sequoia 15, Tahoe 26) via QEMU + OpenCore + OVMF.
Documentation: cocoonstack.github.io/cocoon-macos (source in docs/).
# Build, then provision the host (checks /dev/kvm + deps, installs the OpenCore + OVMF firmware)
go build -o cocoon-macos .
sudo scripts/doctor.sh
# Pull the golden image and run a VM (x86 Linux + /dev/kvm)
cocoon-macos image pull ghcr.io/cocoonstack/cocoon-macos/tahoe:26
cocoon-macos vm run ghcr.io/cocoonstack/cocoon-macos/tahoe:26 \
--name m1 --cpus 4 --memory 8192 --ssh-port 2222 --vnc 1 --random-smbios
# Interact
ssh -p 2222 cocoon@localhost # password: cocoon
cocoon-macos vm console m1
# Snapshot and clone
cocoon-macos vm snapshot m1 --tag clean
cocoon-macos vm clone m1 -n m2 --ssh-port 2223 --random-smbios
# Clean up
cocoon-macos vm rm m1 m2Full walkthroughs: Installation · CLI reference · Images · VM boot & firmware · Networking & VNC · Snapshots & clone · CI image pipeline · E2E regression · Known issues · Roadmap
make build # Build the cocoon-macos binary
make test # Run tests with race detector and coverage
make lint # Run golangci-lint (GOOS=linux + darwin)
make fmt # Format code with gofumpt + goimports
make all # Full pipeline: deps + fmt + lint + test + buildThis project is licensed under the MIT License. See LICENSE.
| Back | FazBrowse Home | New Git URL |