PLEASE NOTE:
These packages or guides are not created by the SABnzbd team.
The team cannot support these packages!
Third-party repository
The nuxref repository is available here and works with RPM based distributions such as Fedora, Red Hat, CentOS, Scientific Linux, and Oracle Linux. The more extensive guide can be found here.
After installing the repository run yum install sabnzbd or dnf install sabnzbd (Fedora).
Once installed, you can start SABnzbd by typing sabnzbd in a terminal.
From sources
Because the RPM's might not always be up-to-date, we include a guide to install from source, provided by user jpriddy.
All commands to be run with a user with sudo privileges or prefixed with the 'sudo' command.
Make sure you have access to the default rpm channel. For RHEL that means enabling the repos like so (you will of course need an active subscription that is subscribed):
Optionally create a startup item for systemd and copy it to /etc/systemd/system/. Call it sabnzbd.service or something else applicable. Make sure to set the correct User and Group matching the account on your system.
## Systemd unit file for SABnzbd#[Unit]
Description=SABnzbd Daemon
[Service]
Type=forking
User=sabnzbd
Group=sabnzbd
ExecStart=/usr/bin/python /opt/sabnzbd/SABnzbd.py --daemon--config-file=/opt/sabnzbd/sabnzbd_config.ini -s 0.0.0.0
GuessMainPID=no
[Install]
WantedBy=multi-user.target
Here we're going to setup the firewall rule to allow the service to be reachable over the network.