From f5365b44fd96f1d105043d8082f42cc52084fe2a Mon Sep 17 00:00:00 2001 From: marc-48k <61566036+marc-48k@users.noreply.github.com> Date: Sat, 17 Dec 2022 15:10:50 +0000 Subject: [PATCH] tart: add page (#9633) * tart: add page * Update pages/osx/tart.md * Update pages/osx/tart.md --- pages/osx/tart.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 pages/osx/tart.md diff --git a/pages/osx/tart.md b/pages/osx/tart.md new file mode 100644 index 000000000..1bb3925d4 --- /dev/null +++ b/pages/osx/tart.md @@ -0,0 +1,36 @@ +# tart + +> Build, run and manage macOS and Linux virtual machines (VMs) on Apple Silicon. +> More information: . + +- Pull a remote VM image: + +`tart pull {{acme.io/org/name:tag}}` + +- Clone a VM from a local or remote image source: + +`tart clone {{source-vm}} {{vm-name}}` + +- Create a new Mac VM from a specific ipsw file: + +`tart create --from-ipsw={{latest|path/to/file.ipsw}} {{vm-name}}` + +- Run an existing VM: + +`tart run {{vm-name}}` + +- Run an existing VM with a specific mounted directory: + +`tart run --dir={{path/to/directory}}:{{/path/to/local_directory}} {{vm-name}}` + +- List VMs: + +`tart list` + +- Get IP address of a running VM: + +`tart ip {{vm-name}}` + +- Change a VM's display resolution: + +`tart set {{vm-name}} --display {{width}}x{{height}}`