Update README.md (#810)

* Update README.md


Co-authored-by: AlteredCoder <AlteredCoder>
This commit is contained in:
AlteredCoder 2021-05-27 19:31:28 +02:00 committed by GitHub
parent b42c42379a
commit b5db93ee74
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 4 deletions

View file

@ -31,10 +31,20 @@ CrowdSec is a free, modern & collaborative behavior detection engine, coupled wi
## 2 mins install
Installing it through the [Package system](https://doc.crowdsec.net/Crowdsec/v1/getting_started/installation/) of your OS is the easiest way to proceed.
Otherwise, to install from source, in a shell (replace the X in the URL by the version that you want to install):
Otherwise, you can install it from source.
```console
wget https://github.com/crowdsecurity/crowdsec/releases/download/v1.0.X/crowdsec-release.tgz
### From package (Debian)
```sh
wget -qO - https://s3-eu-west-1.amazonaws.com/crowdsec.debian.pragmatic/crowdsec.asc |sudo apt-key add - && echo "deb https://s3-eu-west-1.amazonaws.com/crowdsec.debian.pragmatic/$(lsb_release -cs) $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/crowdsec.list > /dev/null
sudo apt-get update
sudo apt-get install crowdsec
```
### From source
```sh
wget https://github.com/crowdsecurity/crowdsec/releases/latest/download/crowdsec-release.tgz
tar xzvf crowdsec-release.tgz
cd crowdsec-v* && sudo ./wizard.sh -i
```

View file

@ -6,7 +6,7 @@ You can install crowdsec in different ways :
- Most users [set up crowdsec's repositories](/Crowdsec/v1/getting_started/installation/#install-using-crowdsec-repository) and install from them, for ease of installation and upgrade
- Some users [use debian's official crowdsec packages](/Crowdsec/v1/getting_started/installation/#install-using-debian-official-packages)
- Some users download the DEB package directly and [install it manually](/Crowdsec/v1/getting_started/installation/#manually-install-the-debian-package)
- Some users download the tarball directly and [install it manually](/Crowdsec/v1/getting_started/installation/#install-from-release-tarball)
- Some users download the tarball directly and [install it manually](/Crowdsec/v1/getting_started/installation/#install-from-the-release-tarball)
- Some users use the [docker hub image](https://hub.docker.com/r/crowdsecurity/crowdsec)
- And the most adventurous might want to [build & install from source](/Crowdsec/v1/getting_started/installation/#install-from-source)
- And some might even want to [build their own docker image](/Crowdsec/v1/getting_started/installation/#build-docker-image)