I am new to Crowdsec and having trouble to install it on my linux mint vanessa OS. I appear to have succeeded in installing it on my Ubuntu jammy OS.
Using cli on mint the install command returns :unable to locate crowdsec package".
Any ideas?
Since its not a directly support distro most likely the package install scripts wont know what linux mint is in the aspect on distro. So you will have to force the detection example:
wget https://packagecloud.io/install/repositories/crowdsec/crowdsec/script.deb.sh
chmod +x script.deb.sh
os=ubuntu dist=jammy ./script.deb.sh
Or you can manually install the deb package from crowdsec/crowdsec - Results in crowdsec/crowdsec
Edit: I can see the post gained popular link award so I moved it to details section as for now the new installation script below should detect and work on debian based distros
curl -s https://install.crowdsec.net | sudo sh
apt install crowdsec -y