Skip to content

Instantly share code, notes, and snippets.

@tuladhar
Created April 21, 2025 12:49
Show Gist options
  • Save tuladhar/89496d6dcc6038a64c04a6328c43628b to your computer and use it in GitHub Desktop.
Save tuladhar/89496d6dcc6038a64c04a6328c43628b to your computer and use it in GitHub Desktop.
Install Falco on iximiuz Labs
#!/bin/bash
#
# Instruction copied from official Falco documentation
# https://falco.org/docs/setup/packages/#install-with-apt
#
curl -fsSL https://falco.org/repo/falcosecurity-packages.asc | \
sudo gpg --dearmor -o /usr/share/keyrings/falco-archive-keyring.gpg
echo "deb [signed-by=/usr/share/keyrings/falco-archive-keyring.gpg] https://download.falco.org/packages/deb stable main" | \
sudo tee -a /etc/apt/sources.list.d/falcosecurity.list
sudo apt-get update -y
sudo apt-get install -y falco
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment