ok here is what i did..
folow these steps... and it wil run.
first ofcourse install freenas, and configure SSH so you can login as root.
log in using putty. login: root
Pasw: freenas
(root password = same as FreeNAS WebGUI password)
-------------------------------------------------------------------------------------------------------------------------------------------------------------
link for downloading sabnzbd
ftp://ftp.freebsd.org /pub/FreeBSD/ports/i386/packages‐6.4‐release/All/
you can browse for other files.
TIP make sure you read point 12
found this info at.
http://apps.sourceforge.net/phpbb/f...&t=9&sid=49197a7b2a1b1dfbb5a3fef35e71e650#p24
his is the Usenet client SABnzbd and includes all the dependencies required to run it.
More on SABnzbd here:
http://www.sabnzbd.org
Overbyrn supplied the SABnzbd, dependencies and a shell script to run it.
SABnzbd:
http://www.freenas.co.uk/files/sabnzb0.4.3.tar
Shell Script:
http://www.freenas.co.uk/files/sab.sh
Auskento wrote a post processing script which will move downloaded files to folders specified in the postproc.conf file. It also handles VIDEO_TS folders making an .iso image and will join multiple .avi files.
I've modified this very slightly to work on FreeNAS.
Script:
http://www.freenas.co.uk/files/sab_postproc.zip
Original Script available here:
http://postproc.incinerator.com.au/
Overbyrn's instructions:-
1) Untar file to a temp folder on freenas. eg. tar zxvf sabnzb0.4.3.tar
2) pkg_add -v sabnzbdplus-0.4.3.tbz
3) first ran it from command line ... /usr/local/bin/SABnzbd.py
4) cntrl-c to exit.
5) it created a /root/.sabnzbd dir
6) edited /root/.sabnzbd/sabnzbd.ini
7) changed from localhost to 192.168.0.22
Cool re-ran as in step 3)
9) went to
http://192.168.0.22:8080/sabnzbd/
10) configured to my liking
11) created script as below to stop / start as a daemon process...
#! /bin/sh
case "$1" in
start)
echo "Starting SABnzbd."
/usr/bin/sudo -u sabuser -H /usr/local/src/SABnzbd/SABnzbd.py -d -f /root/.sabnzbd/sabnzbd.ini
;;
stop)
echo "Shutting down SABnzbd."
/usr/bin/fetch "
http://192.168.0.22:8080/sabnzbd/api?mode=shutdown" > /dev/null
;;
*)
echo "Usage: $0 {start|stop}"
exit 1
esac
exit 0
12) noticed in console logging external binary unzip missing...
2008-09-23 20:14:32,166::ERROR::unzip binary... NOT found!
13) did pkg_add -rv unzip. this installed unzip into /usr/local/bin
14) restarted sabnzbd using script... /root/sab.sh start
15) checked "connections" tab - no sign of missing unzip.
Used this sabnzbd wiki link for reference ...
http://sabnzbd.wikidot.com/start
made and uploaded a newer version of the zip containing v0.4.3 build of sabnzbplus.