Created
April 21, 2025 12:49
-
-
Save tuladhar/89496d6dcc6038a64c04a6328c43628b to your computer and use it in GitHub Desktop.
Install Falco on iximiuz Labs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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