Skip to content

Command Line Installation

Run Jibril directly from the command line for testing, development, or single-server deployments.

First Steps

Download and Install

bash
# Download the binary
sudo curl -L -o /usr/bin/jibril https://github.com/garnet-org/jibril-releases/releases/download/v2.9.1/jibril

# Make the binary executable
sudo chmod +x /usr/bin/jibril

# Verify the version (should be 2.9.1)
sudo /usr/bin/jibril --version
Daily Builds
bash
sudo curl -L -o /usr/bin/jibril https://github.com/garnet-org/jibril-releases/releases/download/v0.0/jibril

Run Jibril

bash
sudo jibril

This will use built-in detection recipes and outputs to stdout.

Custom Configuration (optional)

bash
sudo jibril --config /etc/jibril/config.yaml

See Configuration for configuration options.

Best Practices

  • Start with default configuration, then customize
  • Test configuration changes before production deployment
  • Monitor resource usage during initial deployment
  • Version control your configuration files

Next Steps