Updated How to Install Falco for Linux (markdown)

Mark Stemm
2016-12-02 14:28:47 -08:00
parent 66a5bd8aac
commit 9a93c58b20

@@ -13,13 +13,13 @@ To install falco automatically in one step, simply run the following command as
- Trust the Draios GPG key and configure the yum repository - Trust the Draios GPG key and configure the yum repository
``` ```
rpm --import https://s3.amazonaws.com/download.draios.com/DRAIOS-GPG-KEY.public rpm --import https://s3.amazonaws.com/download.draios.com/DRAIOS-GPG-KEY.public
curl -s -o /etc/yum.repos.d/draios.repo http://download.draios.com/stable/rpm/draios.repo curl -s -o /etc/yum.repos.d/draios.repo https://s3.amazonaws.com/download.draios.com/stable/rpm/draios.repo
``` ```
- Install the EPEL repository - Install the EPEL repository
Note: The following command is required only if DKMS is not available in the distribution. You can verify if DKMS is available with `yum list dkms`. If required, install using: Note: The following command is required only if DKMS is not available in the distribution. You can verify if DKMS is available with `yum list dkms`. If required, install using:
`rpm -i http://mirror.us.leaseweb.net/epel/6/i386/epel-release-6-8.noarch.rpm` `rpm -i https://mirror.us.leaseweb.net/epel/6/i386/epel-release-6-8.noarch.rpm`
- Install kernel headers - Install kernel headers
@@ -40,7 +40,7 @@ To uninstall, just do `yum erase falco`.
``` ```
curl -s https://s3.amazonaws.com/download.draios.com/DRAIOS-GPG-KEY.public | apt-key add - curl -s https://s3.amazonaws.com/download.draios.com/DRAIOS-GPG-KEY.public | apt-key add -
curl -s -o /etc/apt/sources.list.d/draios.list http://download.draios.com/stable/deb/draios.list curl -s -o /etc/apt/sources.list.d/draios.list https://s3.amazonaws.com/download.draios.com/stable/deb/draios.list
apt-get update apt-get update
``` ```