File tree Expand file tree Collapse file tree 2 files changed +26
-10
lines changed
website/content/en/docs/config/vmtype Expand file tree Collapse file tree 2 files changed +26
-10
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,24 @@ weight: 1
5
5
6
6
"qemu" option makes use of QEMU to run guest operating system.
7
7
8
+ "qemu" is the default driver for Linux hosts.
9
+
8
10
Recommended QEMU version:
9
11
- v8.2.1 or later (macOS)
10
- - v6.2.0 or later (Linux)
12
+ - v6.2.0 or later (Linux)
13
+
14
+ An example configuration:
15
+ {{< tabpane text=true >}}
16
+ {{% tab header="CLI" %}}
17
+ ``` bash
18
+ limactl start --vm-type=qemu
19
+ ```
20
+ {{% /tab %}}
21
+ {{% tab header="YAML" %}}
22
+ ``` yaml
23
+ vmType : " qemu"
24
+
25
+ base :
26
+ - template://_images/ubuntu
27
+ - template://_default/mounts
28
+ ` ` `
Original file line number Diff line number Diff line change @@ -8,7 +8,9 @@ weight: 2
8
8
9
9
"vz" option makes use of native virtualization support provided by macOS Virtualization.Framework.
10
10
11
- An example configuration:
11
+ "vz" has been the default driver for macOS hosts since Lima v1.0.
12
+
13
+ An example configuration (no need to be specified manually):
12
14
{{< tabpane text=true >}}
13
15
{{% tab header="CLI" %}}
14
16
``` bash
@@ -17,15 +19,11 @@ limactl start --vm-type=vz
17
19
{{% /tab %}}
18
20
{{% tab header="YAML" %}}
19
21
``` yaml
20
- # Example to run ubuntu using vmType: vz instead of qemu (Default)
21
22
vmType : " vz"
22
- images :
23
- - location : " https://cloud-images.ubuntu.com/releases/24.04/release/ubuntu-24.04-server-cloudimg-amd64.img"
24
- arch : " x86_64"
25
- - location : " https://cloud-images.ubuntu.com/releases/24.04/release/ubuntu-24.04-server-cloudimg-arm64.img"
26
- arch : " aarch64"
27
- mounts :
28
- - location : " ~"
23
+
24
+ base :
25
+ - template://_images/ubuntu
26
+ - template://_default/mounts
29
27
` ` `
30
28
{{% /tab %}}
31
29
{{< /tabpane >}}
You can’t perform that action at this time.
0 commit comments