-
Notifications
You must be signed in to change notification settings - Fork 669
moved environment variables #3476
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,16 @@ weight: 80 | |
|
||
This page documents the environment variables used in Lima. | ||
|
||
### `LIMA_HOME` | ||
|
||
- **Description**: Specifies the Lima home directory. | ||
- **Default**: `~/.lima` | ||
- **Usage**: | ||
```sh | ||
export LIMA_HOME=~/.lima-custom | ||
lima | ||
``` | ||
|
||
### `LIMA_INSTANCE` | ||
|
||
- **Description**: Specifies the name of the Lima instance to use. | ||
|
@@ -107,3 +117,57 @@ This page documents the environment variables used in Lima. | |
``` | ||
- **Note**: It is an experimental setting and has no guarantees being ever promoted to stable. It may be removed | ||
or changed at any stage of project development. | ||
|
||
### `QEMU_SYSTEM_AARCH64` | ||
|
||
- **Description**: Path to the `qemu-system-aarch64` binary. | ||
- **Default**: `qemu-system-aarch64` found in `$PATH` | ||
- **Usage**: | ||
```sh | ||
export QEMU_SYSTEM_AARCH64=/usr/local/bin/qemu-system-aarch64 | ||
``` | ||
|
||
### `QEMU_SYSTEM_ARM` | ||
|
||
- **Description**: Path to the `qemu-system-arm` binary. | ||
- **Default**: `qemu-system-arm` found in `$PATH` | ||
- **Usage**: | ||
```sh | ||
export QEMU_SYSTEM_ARM=/usr/local/bin/qemu-system-arm | ||
``` | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There are also riscv64 and s390x There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. will add and push. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. And also ppc64 |
||
### `QEMU_SYSTEM_PPC64` | ||
|
||
- **Description**: Path to the `qemu-system-ppc64` binary. | ||
- **Default**: `qemu-system-ppc64` found in `$PATH` | ||
- **Usage**: | ||
```sh | ||
export QEMU_SYSTEM_PPC64=/usr/local/bin/qemu-system-ppc64 | ||
``` | ||
|
||
### `QEMU_SYSTEM_RISCV64` | ||
|
||
- **Description**: Path to the `qemu-system-riscv64` binary. | ||
- **Default**: `qemu-system-riscv64` found in `$PATH` | ||
- **Usage**: | ||
```sh | ||
export QEMU_SYSTEM_RISCV64=/usr/local/bin/qemu-system-riscv64 | ||
``` | ||
|
||
### `QEMU_SYSTEM_S390X` | ||
|
||
- **Description**: Path to the `qemu-system-s390x` binary. | ||
- **Default**: `qemu-system-s390x` found in `$PATH` | ||
- **Usage**: | ||
```sh | ||
export QEMU_SYSTEM_S390X=/usr/local/bin/qemu-system-s390x | ||
``` | ||
|
||
### `QEMU_SYSTEM_X86_64` | ||
|
||
- **Description**: Path to the `qemu-system-x86_64` binary. | ||
- **Default**: `qemu-system-x86_64` found in `$PATH` | ||
- **Usage**: | ||
```sh | ||
export QEMU_SYSTEM_X86_64=/usr/local/bin/qemu-system-x86_64 | ||
``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the variables should be listed in alphabetical order.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
will do the changes , thanks