From eb4c9bda84ea46d3c84bb423d6a4fa43ee5ef754 Mon Sep 17 00:00:00 2001 From: Mark Stemm Date: Sun, 2 Apr 2017 22:04:09 -0700 Subject: [PATCH] Updated How to Install Falco from Source (markdown) --- How-to-Install-Falco-from-Source.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/How-to-Install-Falco-from-Source.md b/How-to-Install-Falco-from-Source.md index f301b5c..0ff5653 100644 --- a/How-to-Install-Falco-from-Source.md +++ b/How-to-Install-Falco-from-Source.md @@ -30,17 +30,17 @@ Afterward, you should have a falco executable in `build/userspace/falco/falco`. If you'd like to build a debug version, run cmake as `cmake -DCMAKE_BUILD_TYPE=Debug ..` instead. -## Load latest sysdig kernel module +## Load latest falco-probe kernel module -If you have a binary version of sysdig installed, an older sysdig kernel module may already be loaded. To ensure you are using the latest version, you should unload any existing sysdig kernel module and load the locally built version. +If you have a binary version of falco installed, an older falco kernel module may already be loaded. To ensure you are using the latest version, you should unload any existing falco kernel module and load the locally built version. Unload any existing kernel module via: -`$ rmmod sysdig_probe` +`$ rmmod falco_probe` To load the locally built version, assuming you are in the `build` dir, use: -`$ insmod driver/sysdig-probe.ko` +`$ insmod driver/falco-probe.ko` ## Running falco