November 16, 200916 yr Here's what I add to my /boot/config/go script to make sure things get started 30 seconds after the array: # Start the Management Utility /usr/local/sbin/emhttp & ############################################### # Programs that depend on the array go here! # ############################################### # sleep for 30 seconds before we do anything, just to make sure the array has started. echo "Waiting 30s for array to start..." sleep 30s # Start sabnzbd echo "Starting SABnzbd. Please wait..." python /boot/custom/opt/sabnzbd/SABnzbd.py -d -f /boot/custom/etc/sabnzbd/sabnzbd.ini It will add an extra 30 seconds to your bootup time, but this makes sure that things get started after the array has fully come online.
November 16, 200916 yr SAB apparantly likes to do some reading and writing, so my cache disk never goes to sleep. I noticed this too when I first switched to sabnzbd. If you don't care that your drive is always spun up then you can ignore this, but it bothered me so I had to find a solution. I tracked it down to the "watch folder" feature. If I don't use that feature it doesn't keep my disk spun up. For me I got around the problem by not using watch folders and instead using the firefox addon nzbdstatus which sends nzb's I download directly to the sabnzbd w/o me having to drop them into a watch folder. I've found it to be much more convenient than watch folders anyway. https://addons.mozilla.org/en-US/firefox/addon/7617
November 16, 200916 yr SAB apparantly likes to do some reading and writing, so my cache disk never goes to sleep. I noticed this too when I first switched to sabnzbd. If you don't care that your drive is always spun up then you can ignore this, but it bothered me so I had to find a solution. I tracked it down to the "watch folder" feature. If I don't use that feature it doesn't keep my disk spun up. For me I got around the problem by not using watch folders and instead using the firefox addon nzbdstatus which sends nzb's I download directly to the sabnzbd w/o me having to drop them into a watch folder. I've found it to be much more convenient than watch folders anyway. https://addons.mozilla.org/en-US/firefox/addon/7617 And for OSX you have SabnzbdX, a great little app which runs in the background. You can add multiple NZB servers and select which server to upload the NZB to. Very nice!
November 28, 200916 yr SABnzbd 0.5.0 beta 1 is out and ready for download. You can download the source package, extract it to a location on your USB drive and start with it with python /boot/custom/usr/share/packages/sabnzbd5/SABnzbd.py -d -s xxx.xxx.xxx.xxx:yyy Replace the xxx with your IP address and yyy the port you would SabNZBd to start on. New in 0.5.0 is the ability to have access through https. Works like a charm on my unRAID box (with all folders located on my cache drive).
November 29, 200916 yr Thanks for the heads up. After backing up my old sab folder I just copied the 0.5.0 beta folder contents directly into my existing sab folder and restarted the service. All my old settings were still in tact and everything is running great so far.
December 8, 200916 yr Did you guys trying the 5 beta get this error?? root@Tower:/boot/packages/SABnzbdBETA# python SABnzbd.py -s 10.10.1.122:8080 Sorry, requires Python module sqlite3 (pysqlite2 in python2.4) Try: apt-get install python-pysqlite2 root@Tower:/boot/packages/SABnzbdBETA#
December 9, 200916 yr I didn't get that error. Doesn't sound like you are using the SABnzbdDependencies-1.2-i486-unRAID.tgz. It includes sqlite3 along with everything else needed to run sabnzbd. See this post to get it. http://lime-technology.com/forum/index.php?topic=2903.msg30274#msg30274
December 10, 200916 yr There's a new version of the SABnzbdDependencies with unrar updated to 3.9.6 (thanks to Romir). Get it here : http://www.bibliognome.com/unraid/SABnzbdDependencies-1.3-i486-unRAID.tgz
December 13, 200916 yr Is there a step by step for getting this working on unRaid 4.5 final? Or, is it as simple as unpacking the tarball?
December 14, 200916 yr It's pretty much as simple as that. Below is what I have in my go script. Replace the ip with your unraid machines ip and use whatever port you want. installpkg /boot/custom/SABnzbdDependencies-1.3-i486-unRAID.tgz python /boot/custom/SABnzbd/SABnzbd.py -d -s 192.168.1.100:9090 Once it's started you can access it via a web browser with the url: http://192.168.1.100:9090/sabnzbd/ '>http://192.168.1.100:9090/sabnzbd/ (again, this is my unraid ip and the port number I specified in the go script) Starting with sabnzbd 0.5.0 (beta) you no longer need the trailing /sabnzbd/ and can access the web interface via http://192.168.1.100:9090/
December 23, 200916 yr I loaded all the files and the gui interface comes up fine. In the configuration area under Config / Folders, I am trying to setup the SABdirectories complete to be on my disk1(hda) of the Unraid array. I tried several approaches - /mnt/user/SABdownloads/complete but no directories appear Could someone provide me with the correct info to put the Sabdirectory complete to show up in my disk1 of my unRaid array... Thanks.. Joe
December 23, 200916 yr Thanks Jupilerman - /mnt/disk1/SABdownloads/complete ----worked perfect..... Joe
December 24, 200916 yr I've never been able to get sab to properly start with the go script. I started with this: python /boot/packages/SABnzbdBETA/SABnzbd.py -d -s 10.10.1.122:888 I tried this: python /boot/packages/SABnzbdBETA/SABnzbd.py -d -s 10.10.1.122:888| at now + 1 minute and it never starts. I have to log in with putty and paste that exact same line, and it works fine. When it's called from the go script, the process will be running, but the website is not accessible.
December 24, 200916 yr Have you tried explicitly specifying the path to Python? It may not be in the default path setup in the "go" / "rc.local" scripts.
December 24, 200916 yr I've never been able to get sab to properly start with the go script. I started with this: python /boot/packages/SABnzbdBETA/SABnzbd.py -d -s 10.10.1.122:888 I tried this: python /boot/packages/SABnzbdBETA/SABnzbd.py -d -s 10.10.1.122:888| at now + 1 minute You would need to type the following in the "go" script. You are missing the "echo" part of submitting the command to "at" echo "python /boot/packages/SABnzbdBETA/SABnzbd.py -d -s 10.10.1.122:888" | at now + 1 minute for the python command to be submitted to the "at" command for execution. Without the echo "command" nothing was submitted to "at" (Now, I have no idea if it will start, but at least you will give it a chance by invoking it) Joe L.
December 26, 200916 yr Whenever I go to RSS feeds preview or force download, I get this? Could bubba raid be interfering, even though all other menu options are working? 500 Internal error The server encountered an unexpected condition which prevented it from fulfilling the request. Traceback (most recent call last): File "/boot/custom/usr/share/packages/sabnzbd/cherrypy/_cphttptools.py", line 126, in _run applyFilters('before_finalize') File "/boot/custom/usr/share/packages/sabnzbd/cherrypy/filters/__init__.py", line 151, in applyFilters method() File "/boot/custom/usr/share/packages/sabnzbd/sabnzbd/interface.py", line 249, in beforeFinalize **rsrc.callable_kwargs) File "/boot/custom/usr/share/packages/sabnzbd/sabnzbd/interface.py", line 1847, in download_rss_feed return ShowRssLog(feed, False) File "/boot/custom/usr/share/packages/sabnzbd/sabnzbd/interface.py", line 2323, in ShowRssLog names.sort(lambda x, y: int(jobs[y][6]*100.0 - jobs[x][6]*100.0)) File "/boot/custom/usr/share/packages/sabnzbd/sabnzbd/interface.py", line 2323, in <lambda> names.sort(lambda x, y: int(jobs[y][6]*100.0 - jobs[x][6]*100.0)) KeyError: 6
January 3, 201016 yr I seem to be getting a lot more failed downloads running SABnzbd on UnRaid rather than Windows. It could just be the size of the files and the age of the NZB, but I was able to download the 'missing' Rars with no problem. I'm not running a Cache disk, if that makes a difference. Probably a coincidence, but I thought I'd ask.
January 3, 201016 yr I have yet to have any issues with SABnzbd under Linux, even with NZBs that refer to posts over 380 days back. Which usenet provider are you using?
January 3, 201016 yr I seem to be getting a lot more failed downloads running SABnzbd on UnRaid rather than Windows. It could just be the size of the files and the age of the NZB, but I was able to download the 'missing' Rars with no problem. I'm not running a Cache disk, if that makes a difference. Probably a coincidence, but I thought I'd ask. I was getting quite a few fails with version 0.4.11 but I updated to 0.5.0 beta 4 and also to version 1.3 of the SABnzbdDependencies and I rarely get fails now. The fails I was having with 0.4.11 seemed to be related to CRC issues with some parts and then the inability of SABnzbd to properly repair them automatically (though I could repair them manually using another program). Not sure if that's the same problem you are having. I can't see how having a cache (or not) would matter.
January 3, 201016 yr I have yet to have any issues with SABnzbd under Linux, even with NZBs that refer to posts over 380 days back. Which usenet provider are you using? Newsguy.
January 3, 201016 yr I seem to be getting a lot more failed downloads running SABnzbd on UnRaid rather than Windows. It could just be the size of the files and the age of the NZB, but I was able to download the 'missing' Rars with no problem. I'm not running a Cache disk, if that makes a difference. Probably a coincidence, but I thought I'd ask. I was getting quite a few fails with version 0.4.11 but I updated to 0.5.0 beta 4 and also to version 1.3 of the SABnzbdDependencies and I rarely get fails now. The fails I was having with 0.4.11 seemed to be related to CRC issues with some parts and then the inability of SABnzbd to properly repair them automatically (though I could repair them manually using another program). Not sure if that's the same problem you are having. I can't see how having a cache (or not) would matter. Running .4.12 with 1.3 Dependencies. Definitely seems to be crapping out on the Pars, although I'm getting 'Archive probably encrypted' from UnRar too. I was able to repair all the DLs except one with QuickPAR; I had to DL a few extra RARs to fix that one. I don't seem to get these issues in Windows (at least not as often), but I was being a little greedy that day. It's like there's something a little hinky about the setup. I will try .5 RSN, as I want the extra RSS feeds.
Archived
This topic is now archived and is closed to further replies.