From 33dca47b381b1e3a11466ead624f466e53b51d0d Mon Sep 17 00:00:00 2001 From: DNX Date: Mon, 25 May 2020 10:20:49 +1000 Subject: [PATCH] Add install details for Fedora/RH based systems --- README.md | 1 + docs/install.rst | 14 ++++++++++++++ 2 files changed, 15 insertions(+) diff --git a/README.md b/README.md index 60632ee..85ac86f 100644 --- a/README.md +++ b/README.md @@ -68,6 +68,7 @@ For everything else please have a look at the [detailed list][1]. - [Archlinux](https://sn0int.readthedocs.io/en/latest/install.html#archlinux) - [Mac OSX](https://sn0int.readthedocs.io/en/latest/install.html#mac-osx) - [Debian/Ubuntu/Kali](https://sn0int.readthedocs.io/en/latest/install.html#debian-ubuntu-kali) + - [Fedora/CentOS/Redhat](https://sn0int.readthedocs.io/en/latest/install.html#fedora-centos-redhat) - [Docker](https://sn0int.readthedocs.io/en/latest/install.html#docker) - [Alpine](https://sn0int.readthedocs.io/en/latest/install.html#alpine) - [OpenBSD](https://sn0int.readthedocs.io/en/latest/install.html#openbsd) diff --git a/docs/install.rst b/docs/install.rst index 933c798..6073030 100644 --- a/docs/install.rst +++ b/docs/install.rst @@ -37,6 +37,20 @@ at the docker image as an alternative. $ cd sn0int $ cargo install -f --path . +Fedora/CentOS/Redhat +-------------------- + +Using rust+cargo from the repos might work for you, but we only officially +support rust+cargo installed with `rustup `_. Have a look +at the docker image as an alternative. + +.. code-block:: bash + + $ dnf install @development-tools libsq3-devel libseccomp-devel libsodium-devel publicsuffix-list + $ git clone https://github.com/kpcyrd/sn0int.git + $ cd sn0int + $ cargo install -f --path . + Docker ------