Updated How to Install Falco from Source (markdown)

Mark Stemm 2017-04-02 22:04:09 -07:00
parent a465d0d761
commit eb4c9bda84

@ -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