But in short:
Code: Select all
# link to the repository
cat << _EOF > /etc/yum.repos.d/nuxref.repo
[nuxref]
name=NuxRef Core - Enterprise Linux \$releasever - \$basearch
baseurl=http://repo.lead2gold.org/centos/\$releasever/en/\$basearch/custom
enabled=0
priority=1
gpgcheck=0
[nuxref-shared]
name=NuxRef Shared - Enterprise Linux \$releasever - \$basearch
baseurl=http://repo.lead2gold.org/centos/\$releasever/en/\$basearch/shared
enabled=0
priority=1
gpgcheck=0
[nuxref-testing]
name=NuxRef Testing - Enterprise Linux \$releasever - \$basearch
baseurl=http://repo.lead2gold.org/centos/\$releasever/en/\$basearch/testing
enabled=0
priority=1
gpgcheck=0
_EOF
Code: Select all
# Download and install SABnzbd plus the Notification Addon
# on CentOS 7.x using the nuxref repositories located
# here: http://nuxref.com/repo/
yum install -y --enablerepo=nuxref \
--enablerepo=nuxref-shared \
sabnzbd sabnzbd-script-notify
The paths and everything are already identified in my blog in greater detail, but in short:
Code: Select all
# as root; start up SABnzbd:
systemctl start sabnzbd.service
# Now you should be able to access it at http://your.server:8080
# (optionally) keep it running to survive a reboot:
systemctl enable sabnzbd.service
- All of your log files will show up in /var/log/sabnzbd/sabnzbd.log
- All of configuration will get written to /etc/sabnzbd/sabnzbd.conf
- All of the variable data (file processing, etc) will be located in /var/lib/sabnzbd/*. In fact this is a very important directory because unless you configure things differently, all downloaded content will appear in /var/lib/sabnzbd/complete.
Code: Select all
# where myuserid is the user account you want to add
# to the sabnzbd group
usermod -a -G sabnzbd myuserid
# Now myuserid can freely access content in /var/lib/sabnzbd
# This of course includes /var/lib/sabnzbd/complete
Code: Select all
# create a link for users who are part of the group:
ln -s /var/lib/sabnzbd/complete /home/myuserid/SABnzbdDownloads