Zip Packages
Zip packages of EveBox can be found at the following URLS:
- Linux x86_64/amd64: https://evebox.org/files/release/latest/evebox-0.27.0-linux-x64.zip
- Linux Arm64/Aarch64: https://evebox.org/files/release/latest/evebox-0.27.0-linux-arm64.zip
- Windows: https://evebox.org/files/release/latest/evebox-0.27.0-windows-x64.zip
Install Scripts
Linux
On Linux, the standalone binary can be downloaded and installed with a single command:
curl -sSf https://evebox.org/install.sh | sh
The script installs the EveBox binary for x86_64 or aarch64 into
~/.local/bin or /usr/local/bin, verifying its checksum along the
way.
For the latest development build, use the development installer:
curl -sSf https://evebox.org/install-devel.sh | sh
This is a convenience wrapper. The regular installer continues to accept the
--devel option:
curl -sSf https://evebox.org/install.sh | sh -s -- --devel
Other options are passed after sh -s --.
| Option | Description |
|---|---|
--devel | Install the latest development build |
--version <VERSION> | Install a specific release version |
--bin-dir <DIR> | Install into DIR (skips the directory prompt) |
-y, --yes | Don't prompt; use the default install directory |
The EVEBOX_INSTALL_DIR environment variable can also be used to set
the installation directory (--bin-dir takes precedence).
Windows PowerShell
On 64-bit Windows, install the latest release with:
irm https://evebox.org/install.ps1 | iex
The script downloads the Windows x64 zip, verifies its SHA-256 checksum, and
installs evebox.exe into %LOCALAPPDATA%\EveBox\bin by default. It also adds
that directory to the user PATH if needed.
For the latest development build, use the development installer:
irm https://evebox.org/install-devel.ps1 | iex
This is a convenience wrapper. The regular installer continues to accept the
-Devel option:
& ([scriptblock]::Create((irm https://evebox.org/install.ps1))) -Devel
| Option | Description |
|---|---|
-Devel | Install the latest development build |
-Version <VERSION> | Install a specific release version |
-BinDir <DIR> | Install into DIR |
-NoModifyPath | Do not add the install directory to the user PATH |
The EVEBOX_INSTALL_DIR environment variable can also set the installation
directory (-BinDir takes precedence).
Example Installation on Linux
curl -OL https://evebox.org/files/release/latest/evebox-0.27.0-linux-x64.zip unzip evebox-0.27.0-linux-x64.zip cd evebox-0.27.0-linux-x64 ./evebox server --help