Search found 16 matches
- March 6th, 2015, 7:56 am
- Forum: General Help
- Topic: WOL before download starts
- Replies: 3
- Views: 2931
Re: WOL before download starts
Thanks for answering. The problem is that for big downloads, the flash card on my cubox is too small to be used as a temp folder. The temp folder on my server would be located on the cache drive, why would that be asking for trouble? I could use wol to send the magic packet. What do you think? About...
- March 6th, 2015, 3:14 am
- Forum: General Help
- Topic: WOL before download starts
- Replies: 3
- Views: 2931
WOL before download starts
Hi, I have sickbeard and sabnzbd running on arch linux. Sabnzbd temp and completed folder are stored on my unraid server. This all works well as long as the server is on, but obviously would fail if the server is asleep. I'd like to reduce my power consumption by putting my server to sleep when it's...
- May 6th, 2011, 1:27 pm
- Forum: Beta Releases
- Topic: RC2 Queue does not display in Plush
- Replies: 9
- Views: 10712
Re: RC2 Queue does not display in Plush
It returns me this: python /boot/test.py Traceback (most recent call last): File "/boot/test.py", line 2, in <module> locale.setlocale(locale.LC_ALL, "") File "/usr/lib/python2.6/locale.py", line 513, in setlocale return _setlocale(category, locale) locale.E...
- May 6th, 2011, 1:56 am
- Forum: Beta Releases
- Topic: RC2 Queue does not display in Plush
- Replies: 9
- Views: 10712
Re: RC2 Queue does not display in Plush
Version: 0.6 final
OS: unRAID (based on
Install-type: python source
Skin: Plush
Firewall Software: None
Are you using IPV6? (no)
Is the issue reproducible? (yes)
I have the same problem. Reverting to another skin, ie classic, solves the issue. Did plush in 0.5.6 need the locale module as well?
OS: unRAID (based on
Install-type: python source
Skin: Plush
Firewall Software: None
Are you using IPV6? (no)
Is the issue reproducible? (yes)
I have the same problem. Reverting to another skin, ie classic, solves the issue. Did plush in 0.5.6 need the locale module as well?
Re: Plush mod
Plush version 0.6 has fixed the rss issue in opera, that's a nice thing. But your mod does not work anymore
Are you considering adapting it for sabnzbd 0.60?
Are you considering adapting it for sabnzbd 0.60?
- February 23rd, 2011, 4:30 am
- Forum: Post-Processing Scripts
- Topic: [BASH] How to create your own postprocessingscript
- Replies: 30
- Views: 87493
Re: [BASH] How to create your own postprocessingscript
Very informative for programming amateurs. Thanks for this!
- November 3rd, 2010, 7:27 am
- Forum: Post-Processing Scripts
- Topic: [REQ] Subtitle downloader
- Replies: 5
- Views: 7008
Re: [REQ] Subtitle downloader
the program runs under python. Python runs on windows, so?
- September 29th, 2010, 3:08 am
- Forum: Third-party Addons
- Topic: SABNzbd+ Cyclops [Update] [Windows]
- Replies: 42
- Views: 212245
Re: SABNzbd+ Eye
Looks very nice. I'm currently using the SABnzbd+ Windows 7 Gadget that is docked to my desktop and allows me to control my queu and drag and drop nzb's into categories. I however prefer your gui.
- September 23rd, 2010, 2:26 am
- Forum: Third-party Addons
- Topic: [APP] NzbSearcher - 2 Dec 2011 - Version 2.0.5.6
- Replies: 180
- Views: 268141
Re: [APP] NzbSearcher - 22 SEP 2010 - Version 1.0
Sounds interesting, I'll try it out tonight. NZBindex is my preferred search engine. Thanks!
- September 23rd, 2010, 2:09 am
- Forum: Post-Processing Scripts
- Topic: [REQ] Subtitle downloader
- Replies: 5
- Views: 7008
Re: [REQ] Subtitle downloader
Check out periscope, it's written in python and supports 6 subtitle sources:
OpenSubtitles.org
SubtitleSource.org
Subscene.com
Subtitulos.es
Addic7ed.com
TheSubDB.com
**edit : added the llink : http://code.google.com/p/periscope/
OpenSubtitles.org
SubtitleSource.org
Subscene.com
Subtitulos.es
Addic7ed.com
TheSubDB.com
**edit : added the llink : http://code.google.com/p/periscope/
Re: Plush mod
Thanks for this beautiful mod. I like the colours. Trouble is that the RSS feeds are not properly shown.
- September 15th, 2010, 1:28 pm
- Forum: Third-party Addons
- Topic: Sick Beard (ALPHA) - Download/sort/rename episodes, XBMC/growl integration, more
- Replies: 1130
- Views: 3018161
Re: Sick Beard (ALPHA) - Download/sort/rename episodes, XBMC/growl integration, more
I've been running SB on my server from source for two weeks now without any problems. Today however, I cannot start it up using the usual command: nohup python /boot/custom/usr/share/packages/SickBeard/SickBeard.py -d & I can start SB without nohup, -d and &. It was doing perfectly fine befo...
- September 13th, 2010, 1:40 am
- Forum: Post-Processing Scripts
- Topic: [Linux] Rename downloads as NZB
- Replies: 4
- Views: 4887
Re: [Linux] Rename downloads as NZB
That does exactly what I wanted! Now I have Sabnzbd fully configured, everything is automated. I love it.
And thanks for complimenting my pseudo-scripting abilities
And thanks for complimenting my pseudo-scripting abilities
- September 10th, 2010, 1:46 pm
- Forum: Post-Processing Scripts
- Topic: [Linux] Rename downloads as NZB
- Replies: 4
- Views: 4887
Re: [Linux] Rename downloads as NZB
That won't. #!/bin/bash for files in *; do [ ! -f "$3.${files##*.}" ] && mv -v "$files" "$3.${files##*.}" done That will. Of course if you have multiple files with same extension only the first will be renamed. Thanks for trying to help me out. Your script wo...
- September 10th, 2010, 8:12 am
- Forum: Post-Processing Scripts
- Topic: [Linux] Rename downloads as NZB
- Replies: 4
- Views: 4887
[Linux] Rename downloads as NZB
Hello, I just wrote this simple script to cover my simple needs. What I would like is that the files I download are renamed as the NZB I download. Sabnzbd already puts these downloaded files in a directory named after the NZB. Currently the situation is like this: Movies/NZBnameinqueu/a.mkv ...