Skip to content

CLI cli-v1.9.0

Choose a tag to compare

@strata-space strata-space released this 26 May 05:48
6844963

Install

macOS — Homebrew (recommended)

brew install --cask strata-space/strata/strata

macOS — signed .pkg

Download strata-darwin-universal.pkg below and double-click.

Linux — one-liner (recommended)

curl -sSf https://github.com/strata-space/strata/releases/latest/download/install-cli.sh | sh

Auto-detects x86_64 vs aarch64, downloads the matching tarball, verifies the SHA-256 against checksums.txt, and installs both the binary and the FUSE runtime to ~/.local/bin (override with STRATA_INSTALL_DIR).

Linux — manual

OS Arch Asset
Linux x86_64 strata-linux-x86_64.tar.gz
Linux aarch64 strata-linux-aarch64.tar.gz
# x86_64
curl -L https://github.com/strata-space/strata/releases/download/cli-v1.9.0/strata-linux-x86_64.tar.gz | tar -xz
sudo install -Dm755 strata /usr/local/bin/strata
sudo install -Dm644 libstrata_fuse.so /usr/local/lib/strata/libstrata_fuse.so
rm strata libstrata_fuse.so
strata --version

The Linux tarball ships strata and libstrata_fuse.so. Keep them together — the binary dlopens the cdylib from a sibling directory or /usr/local/lib/strata/. Installing strata alone breaks strata mount.

Verify a download

sha256sum -c checksums.txt --ignore-missing

What's Changed

  • docs(readme): rename Linux asset names to x86_64/aarch64 + install both files by @wallyruss in #1

New Contributors

Full Changelog: cli-v0.1.0...cli-v1.9.0