Skip to content

Instantly share code, notes, and snippets.

@OdinsHat
Created May 14, 2020 20:27
Show Gist options
  • Save OdinsHat/78133f419547b51ae4856a107d55b03a to your computer and use it in GitHub Desktop.
Save OdinsHat/78133f419547b51ae4856a107d55b03a to your computer and use it in GitHub Desktop.
Installing fluent bit
#!/bin/sh
wget -qO - https://packages.fluentbit.io/fluentbit.key | sudo apt-key add -
sudo echo "deb https://packages.fluentbit.io/raspbian/buster buster main" > /etc/apt/sources.list
sudo apt-get update
sudo apt-get install td-agent-bit
#!/bin/sh
wget -qO - https://packages.fluentbit.io/fluentbit.key | sudo apt-key add -
sudo echo "deb https://packages.fluentbit.io/raspbian/stretch stretch main" > /etc/apt/sources.list
sudo apt-get update
sudo apt-get install td-agent-bit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment