NETGEAR is aware of a growing number of phone and online scams. To learn how to stay safe click here.
Forum Discussion
lowfi
Aug 07, 2008Aspirant
[Super-Poussin] Sabnzbd request
61 Replies
Replies have been turned off for this discussion
- johnybAspirantMany thanks, managed to get it working by creating the folder for the .ini file and copying from my PC. Inital thoughts are great, but it seems to dowload at quite a slower rate than my PC (PC version 768KB/s, readynas duo 500KB/s)
Have you upgraded RAM or anything... WHat speed are yuo getting compared to a PC install? - sander11AspirantI have a pro, but only 1gb of ram, and its as fast as my bandwidth allows which is about the same speed you get on your PC.
Sounds like it could be the CPU or a bandwidth cap in your config. - tjeerdooAspirantI try to setup SABnzbd using the "howto" from
http://www.thibernet.com/442-install-sabnzbd-on-a-readynas-duo/comment-page-1#comment-12516
But when I try to launch the service with the following command ;
/usr/local/bin/python2.5 /root/src/SABnzbd-0.4.6/SABnzbd.py
I get this ;
2009-11-09 16:07:51,682::INFO::——————————–
2009-11-09 16:07:51,692::INFO::SABnzbd.py-0.4.6 (rev=1888)
2009-11-09 16:07:51,702::INFO::Platform = posix
2009-11-09 16:07:51,710::INFO::Python-version = 2.5.2 (r252:60911, Nov 9 2009, 14:26:45)
[GCC 3.3.5 (Debian 1:3.3.5-13)]
2009-11-09 16:07:51,778::INFO::[sabnzbd] Loading data for rss_data.sab from /root/.sabnzbd/cache/rss_data.sab
2009-11-09 16:07:51,837::INFO::[sabnzbd] Loading data for bytes7.sab from /root/.sabnzbd/cache/bytes7.sab
2009-11-09 16:07:51,848::INFO::[sabnzbd] Loading data for queue7.sab from /root/.sabnzbd/cache/queue7.sab
2009-11-09 16:07:51,867::WARNING::[downloader] No active primary servers defined, will not download!
2009-11-09 16:07:51,886::INFO::All processes started
2009-11-09 16:07:51,915::INFO::_yenc module… found!
2009-11-09 16:07:51,924::INFO::celementtree module… found!
2009-11-09 16:07:51,933::INFO::par2 binary… found (/usr/bin/par2)
2009-11-09 16:07:51,942::INFO::unrar binary… found (/usr/bin/unrar)
2009-11-09 16:07:51,951::INFO::unzip binary… found (/usr/bin/unzip)
2009-11-09 16:07:51,959::INFO::nice binary… found (/usr/bin/nice)
2009-11-09 16:07:51,968::INFO::ionice binary… NOT found!
2009-11-09 16:07:51,977::INFO::pyOpenSSL… found (True)
2009-11-09 16:07:51,997::INFO::Web dir is /root/src/SABnzbd-0.4.6/interfaces/Default
2009-11-09 16:07:52,101::INFO::Starting SABnzbd.py-0.4.6
2009-11-09 16:07:52,114::INFO::[nzbqueue] Saving queue
2009-11-09 16:07:52,128::INFO::[sabnzbd] Saving data for queue7.sab in /root/.sabnzbd/cache/queue7.sab
2009-11-09 16:07:52,140::INFO::[sabnzbd] Saving data for bytes7.sab in /root/.sabnzbd/cache/bytes7.sab
2009-11-09 16:07:52,151::INFO::[sabnzbd] Saving data for rss_data.sab in /root/.sabnzbd/cache/rss_data.sab
2009-11-09 16:07:52,181::INFO::[sabnzbd.misc] URLGrabber starting up
2009-11-09 16:07:52,199::INFO::Starting web-interface on localhost:8080
09/Nov/2009:16:07:52 CONFIG INFO Server parameters:
09/Nov/2009:16:07:52 CONFIG INFO server.environment: production
09/Nov/2009:16:07:52 CONFIG INFO server.log_to_screen: True
09/Nov/2009:16:07:52 CONFIG INFO server.log_file: /root/.sabnzbd/logs/cherrypy.log
09/Nov/2009:16:07:52 CONFIG INFO server.log_tracebacks: True
09/Nov/2009:16:07:52 CONFIG INFO server.log_request_headers: False
09/Nov/2009:16:07:52 CONFIG INFO server.protocol_version: HTTP/1.0
09/Nov/2009:16:07:52 CONFIG INFO server.socket_host: localhost
09/Nov/2009:16:07:52 CONFIG INFO server.socket_port: 8080
09/Nov/2009:16:07:52 CONFIG INFO server.socket_file:
09/Nov/2009:16:07:52 CONFIG INFO server.reverse_dns: False
09/Nov/2009:16:07:52 CONFIG INFO server.socket_queue_size: 5
09/Nov/2009:16:07:52 CONFIG INFO server.thread_pool: 10
09/Nov/2009:16:07:52 HTTP INFO Serving HTTP on http://localhost:8080/
2009-11-09 16:07:52,790::INFO::Lauching browser with http://localhost:8080/sabnzbd
It “hangs” on the last line…when i try connecting to the box with firefox no page displays…
When I try to launch it using
blackbox:~# /etc/init.d/sabnzbd start
Starting SABnzbd.
blackbox:~#
I get no errors what so ever, but i’m still not able to launch it in a webpage…any ideas on what i’m doing wrong ?
The only error I see is "2009-11-09 16:07:51,968::INFO::ionice binary… NOT found!"
but I doubt that is the problem....any thoughts on this ? - johnybAspirantDid you try copying over a working sabnzdb.ini file from a PC, and updating the script used to include the specific IP address of your readynas rather than localhost?
- tjeerdooAspirantI updated this
#!/bin/sh
case "$1" in
start)
echo "Starting SABnzbd."
/usr/local/bin/python2.5 /usr/local/src/SABnzbd/SABnzbd.py -d -f /etc/SABnzbd/sabnzbd.ini
;;
stop)
echo "Shutting down SABnzbd."
/usr/bin/wget -q --delete-after "http://192.168.0.50:7777/sabnzbd/api?mode=shutdown"
;;
*)
echo "Usage: $0 {start|stop}"
exit 1
esac
exit 0
with my internal IP adress
I didn't copy a working ini file yet..i'll try that as well..
and what exactly do you mean by ;
and updating the script used to include the specific IP address of your readynas rather than localhost?
what script do you mean ? is it the startup script i mentioned above ? - johnybAspirantSorry I was a bit vauge, did not have access to the readynas earlier. I cannot be sure the methods I used will help you, since I am no expert here but worth a try.
Yes, I meant /etc/init.d/sabnzbd. If you look at mine below, I had to update the paths where sabnzdb installed (you can see I installed a newer version than listed in the guide). I also copied over a sabznzbd.ini file from my PC to the folder shown below since the install did not seem to create one. Hope this helps.#!/bin/sh
case "$1" in
start)
echo "Starting SABnzbd."
/usr/local/bin/python2.5 /root/src/SABnzbd-0.4.12/SABnzbd.py -d -f /etc/SABnzbd/sabnzbd.ini
#/usr/local/bin/python2.5 /usr/local/src/SABnzbd/SABnzbd.py -d -f /etc/SABnzbd/sabnzbd.ini
;;
stop)
echo "Shutting down SABnzbd."
/usr/bin/wget -q --delete-after "http://192.168.0.32:8080/sabnzbd/api?mode=shutdown"
;;
*)
echo "Usage: $0 {start|stop}"
exit 1
esac
exit 0 - tjeerdooAspirantWow, thanx ! it's working now !
What i did was change the sabnzbd.ini file
The thing I changed was the line
host = localhost
to
host = the IP adress of the readynas
I'm now able to browse to it :) - DocprocAspirantAnother thing to be careful of - I installed SABnzbd in /root/src and was finding I was getting lots of "Disk full" errors when there were hundreds of Gb free.
I hadn't realised that the ReadyNAS has 2 partitions, the main data one which is as big as the drives you have in the machine (so hundreds of Gb in my case) and a smaller root partition which is only 2Gb, where the system software is installed.
My SABnzbd directory - including the potentially large cache/ and downloads/ directories - was in this small partition, hence the disk full errors.
The reason it was only intermittent was that there just happened to be enough space for SABnzbd to download and extract some of the small-ish files I was using, but when I tried a larger (1.5Gb) one, it hit the 2Gb limit.
So be careful about where your cache/ and download/ directories are - I've moved mine to /c/ now and it's working fine.
Just in case anyone's run into the same problem!
Glenn. - super_poussinVirtuosoyes There's a warning on the forum
try to install on /c/ and make symlinks if needed or you can full your nas - I'd really like to install the current version of sabnzbd (2.5) but it requires the modulde python-sqlite2.
In the Readynas-APT-Sources there's only python2.4-sqlite to be found.
How can I install/build/compile python2.5-sqlite?
Related Content
NETGEAR Academy

Boost your skills with the Netgear Academy - Get trained, certified and stay ahead with the latest Netgear technology!
Join Us!