Do you experience problems during downloading?
Check your connection in Status and Interface settings window.
Use Test Server in Config > Servers.
We will probably ask you to do a test using only basic settings.
Do you experience problems during repair or unpacking?
Enable +Debug logging in the Status and Interface settings window and share the relevant parts of the log here using [ code ] sections.
I previously used Mint Linux, and have switched over to Fedora. In Fedora 19 I installed the rpmfusion repo, yet I still receive a 'no package available' when runnning yum search sabnzbd / SABnzbd. When I run 'yum repolist' I see rpmfusion is enabled.
No firewall, proxy, etc.
Any ideas?
Thanks,
Koff
Last edited by KoffKoffus on August 2nd, 2013, 9:29 pm, edited 1 time in total.
I also got SABnzbd running on Fedora using the instructions on the wiki.
In addition, I made some changes to the daemon scripts to make things more robust/simpler.
I noticed that starting/stopping the SABnzbd daemon didn't work (anymore) since nc -z for port scanning is not supported anymore.
# SABnzbd service configuration
#run SABnzbd as
sabuser=sabnzbd
#modify if SABnzbd config file is somewhere else for some reason
config="/home/${sabuser}/.sabnzbd/sabnzbd.ini"
#API key (can be found in the above config file)
apikey=$(cat "$config" | grep -E "^api_key =" | awk '{print $3}')
#gui address, eg: ${protocol}://${host}:${port}/sabznbd/
protocol=http
host=localhost
port=8080
#leave blank if no username/password is required to access the gui
username=
password=
#use nice, ionice, taskset to start SABnzbd
nicecmd=
# example: nicecmd="nice -n 19 ionice -c3"