File tree Expand file tree Collapse file tree 2 files changed +15
-0
lines changed
content/en/docs/Config/VMType Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,18 @@ Lima supports two ways of running guest machines:
10
10
The vmType can be specified only on creating the instance.
11
11
The vmType of existing instances cannot be changed.
12
12
13
+ See the following flowchart to choose the best vmType for you:
14
+ ``` mermaid
15
+ flowchart
16
+ host{"Host OS"} -- "Windows" --> wsl2["WSL2"]
17
+ host -- "Linux" --> qemu["QEMU"]
18
+ host -- "macOS" --> intel_on_arm{"Need to run <br> Intel binaries <br> on ARM?"}
19
+ intel_on_arm -- "Yes" --> just_elf{"Just need to <br> run Intel userspace (fast), <br> or entire Intel VM (slow)?"}
20
+ just_elf -- "Userspace (fast)" --> vz
21
+ just_elf -- "VM (slow)" --> qemu
22
+ intel_on_arm -- "No" --> vz["VZ"]
23
+ ```
24
+
13
25
## QEMU
14
26
"qemu" option makes use of QEMU to run guest operating system.
15
27
This option is used by default if "vmType" is not set.
Original file line number Diff line number Diff line change @@ -178,6 +178,9 @@ enable = false
178
178
icon = " fab fa-slack"
179
179
desc = " Chat with other project users"
180
180
181
+ [params .mermaid ]
182
+ enable = true
183
+
181
184
[[menus .main ]]
182
185
name = " Github"
183
186
url = " https://github.com/lima-vm/lima"
You can’t perform that action at this time.
0 commit comments