@@ -7,6 +7,16 @@ weight: 80
7
7
8
8
This page documents the environment variables used in Lima.
9
9
10
+ ### ` LIMA_HOME `
11
+
12
+ - ** Description** : Specifies the Lima home directory.
13
+ - ** Default** : ` ~/.lima `
14
+ - ** Usage** :
15
+ ``` sh
16
+ export LIMA_HOME=~ /.lima-custom
17
+ lima
18
+ ```
19
+
10
20
### ` LIMA_INSTANCE `
11
21
12
22
- ** Description** : Specifies the name of the Lima instance to use.
@@ -107,3 +117,57 @@ This page documents the environment variables used in Lima.
107
117
```
108
118
- ** Note** : It is an experimental setting and has no guarantees being ever promoted to stable. It may be removed
109
119
or changed at any stage of project development.
120
+
121
+ ### ` QEMU_SYSTEM_AARCH64 `
122
+
123
+ - ** Description** : Path to the ` qemu-system-aarch64 ` binary.
124
+ - ** Default** : ` qemu-system-aarch64 ` found in ` $PATH `
125
+ - ** Usage** :
126
+ ``` sh
127
+ export QEMU_SYSTEM_AARCH64=/usr/local/bin/qemu-system-aarch64
128
+ ```
129
+
130
+ ### ` QEMU_SYSTEM_ARM `
131
+
132
+ - ** Description** : Path to the ` qemu-system-arm ` binary.
133
+ - ** Default** : ` qemu-system-arm ` found in ` $PATH `
134
+ - ** Usage** :
135
+ ``` sh
136
+ export QEMU_SYSTEM_ARM=/usr/local/bin/qemu-system-arm
137
+ ```
138
+
139
+ ### ` QEMU_SYSTEM_PPC64 `
140
+
141
+ - ** Description** : Path to the ` qemu-system-ppc64 ` binary.
142
+ - ** Default** : ` qemu-system-ppc64 ` found in ` $PATH `
143
+ - ** Usage** :
144
+ ``` sh
145
+ export QEMU_SYSTEM_PPC64=/usr/local/bin/qemu-system-ppc64
146
+ ```
147
+
148
+ ### ` QEMU_SYSTEM_RISCV64 `
149
+
150
+ - ** Description** : Path to the ` qemu-system-riscv64 ` binary.
151
+ - ** Default** : ` qemu-system-riscv64 ` found in ` $PATH `
152
+ - ** Usage** :
153
+ ``` sh
154
+ export QEMU_SYSTEM_RISCV64=/usr/local/bin/qemu-system-riscv64
155
+ ```
156
+
157
+ ### ` QEMU_SYSTEM_S390X `
158
+
159
+ - ** Description** : Path to the ` qemu-system-s390x ` binary.
160
+ - ** Default** : ` qemu-system-s390x ` found in ` $PATH `
161
+ - ** Usage** :
162
+ ``` sh
163
+ export QEMU_SYSTEM_S390X=/usr/local/bin/qemu-system-s390x
164
+ ```
165
+
166
+ ### ` QEMU_SYSTEM_X86_64 `
167
+
168
+ - ** Description** : Path to the ` qemu-system-x86_64 ` binary.
169
+ - ** Default** : ` qemu-system-x86_64 ` found in ` $PATH `
170
+ - ** Usage** :
171
+ ``` sh
172
+ export QEMU_SYSTEM_X86_64=/usr/local/bin/qemu-system-x86_64
173
+ ```
0 commit comments