Page 1 of 1

Unpacking on NAS Raid too slow

Posted: June 9th, 2021, 11:22 am
by wrwaugh
latest version of SABnzbd loaded on OSX. I use a raid NAS to store and stream my videos. I set Temporary Download to the OSX machine and Completed Download folder on the NAS where it unpacks on the raid. Is there a way to have files unpack on the OSX machine then automatically move to the NAS?

Re: Unpacking on NAS Raid too slow

Posted: June 9th, 2021, 12:29 pm
by sander
Yes, with a post-processing script. See https://sabnzbd.org/wiki/scripts/post-p ... ng-scripts

Check question to you: from the OSX command line, do you know the command to move a directory from your MacOS to your NAS ... ?

Re: Unpacking on NAS Raid too slow

Posted: June 9th, 2021, 5:07 pm
by wrwaugh
I donot know the Command line code for MacOS to move directory to Synology NAS

Re: Unpacking on NAS Raid too slow

Posted: June 9th, 2021, 5:52 pm
by wrwaugh
I now have the correct terminal (command) line code. it is: mv Graboid/Pending/* /Volumes/Plex/tv

Re: Unpacking on NAS Raid too slow

Posted: June 9th, 2021, 9:44 pm
by sander
wrwaugh wrote: June 9th, 2021, 5:52 pm I now have the correct terminal (command) line code. it is: mv Graboid/Pending/* /Volumes/Plex/tv
OK.

Now, with the info https://sabnzbd.org/wiki/scripts/post-p ... ng-scripts, you could create a script that would do that for you.

So, wild guess:

Code: Select all

mv "$1" /Volumes/Plex/tv
Make the script executable, put in script directory, and select it as post-processing script. Read https://sabnzbd.org/wiki/scripts/post-p ... ng-scripts a few times.

Re: Unpacking on NAS Raid too slow

Posted: June 10th, 2021, 11:02 am
by wrwaugh
Thank you for your help. I will give that a go...