7. [Slackware version](#slackware-version)
8. [Gentoo version](#gentoo-version)
9. [Alpine version](#alpine-version)
+ 10. [Rocky Linux 9](#rocky-linux-9)
4. [Option 3: Compiling and installing the git repository](#option-3-compiling-and-installing-the-git-repository)
5. [Option 4: Running from a Docker container](#option-4-running-from-a-docker-container)
6. [Fetching the TALs](#fetching-the-tals)
exit
{% endhighlight %}
+### Rocky Linux 9
+
+```bash
+sudo dnf -y install wget tar gcc openssl-devel
+sudo dnf -y --enablerepo=devel install jansson-devel libcurl-devel libxml2-devel
+
+wget https://github.com/NICMx/FORT-validator/releases/download/{{ site.fort-latest-version }}/fort-{{ site.fort-latest-version }}.tar.gz
+tar xvzf fort-{{ site.fort-latest-version }}.tar.gz
+cd fort-{{ site.fort-latest-version }}/
+./configure
+make
+sudo make install
+```
+
## Option 3: Compiling and installing the git repository
In case you wan't a fresh version of Fort validator, there's this third option. The steps are mostly the same as in [Option 2](#option-2-compiling-and-installing-the-release-tarball), just another dependency (as minimum) must be installed: "git"; and a few steps are included in order to get the source code and generate configuration scripts.