CLI cli-v1.8.0
Install
macOS — Homebrew (recommended)
brew install --cask strata-space/strata/stratamacOS — 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 | shAuto-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.8.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 --versionThe 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-missingWhat's Changed
- docs(readme): rename Linux asset names to x86_64/aarch64 + install both files by @wallyruss in #1
New Contributors
- @wallyruss made their first contribution in #1
Full Changelog: cli-v0.1.0...cli-v1.8.0