[PACKAGE] NZBGet for WD My Cloud

Is not found

1 Like

weird… could you turn off and on SSH in WD web UI / Settings / Network

1 Like

ive restarted and put ssh off / on.

-sh: is: not found

1 Like

Maybe its because ive tried few a times to install nzbget trough ssh. So some settings/paths changed. uhm maybe i need to factory reset the settings or so

1 Like

So you cannot list the contents of a directory, the ls command?

which ls

Does that still work?
Or this

/bin/ls /mnt

1 Like

ls, not is. lambda sigma spelled… I guess it means ‘let see’ or something

2 Likes

got it

HD HD_a4 HD_b4 MyCloudPR2100 USB isoMount

1 Like

Ok… now

cd /mnt/HD

root@MyCloudPR2100 HD #

heh… I meant

ls /mnt/HD

but now you have changed directory to /mnt/HD so you can do

ls

which shows the current dir.
then cd into the next directory and you’ll find your shares.

to go up one directory, use

cd …

HD_a2

Then change into that directory and list the contents again.

cd HD_a2
ls

Until you found your Public share… if you have one.

Ive got it working !

/mnt/HD/HD_a2/P2P/complete

Thanks alot

aight :slight_smile:
I’d use something with nzbget in the path… that will help when you combine this with sonarr/couchpotato/sickrage…

1 Like

Thanks a lot!!! Works like a charm.
I saw a binary for Sonarr as well following your link, but didn’t get it it to work properly (cannot navigate to the shares of the nas, stuck in the system folders when trying to set a target folder for a tv show)
Are you still working on the sonarr package?
thanks again for the great work.

Just wanted to also chime in and say thanks for this as well! Appreciate it, like Ayusinned mentioned Sonarr is in that directory is that something ready to go or still working on it ?

A few things that helped me with the config:

  • I created a share “nzbget” and set this as the MainDir in “Paths”, so I can access everything easily that NZBget does.
  • Under Security, set the UMask to 0000 if you want all users to have full access to the files. With the standard setting, PLEX could not read and import the downloaded movies.
2 Likes

Thanks for the feedback. Sonarr semi works but requires some fixed shares for now. I’ll release it when there’s no more reboot and uninstall bugs. To pair it with nzbget it needs the public ip, not localhost and the category is series instead of tv. Create a public P2P and Multimedia/TV share before installing. Sonarr (docker) maps this to a local /downloads and a /tv folder. I’ll explain in more detail when it’s more dummy proof.
Scripted user management is painful but one of my main priorities… now everything is root :expressionless:.

Manually over ssh it’s more flexible but I’m targetting the non-ssh way.
All that said… let’s keep this topic to nzbget… please wait for my sonarr release in another topic.

1 Like

I just found this thread. it appears the last comment was in June of 2017. .
I am receiving my PR2100 soon and am curious about the status of your efforts to get Sonarr working is it available somewhere for my NAS.

thanks

I can’t make it dummy proof but it is really simple.
I’ll assume you made a share for Downloads (not public) and one for Multimedia (probably public in your network).

Based on Docker

mkdir -p /shares/Volume_1/Nas_Prog/sonarr

docker create \
    --name sonarr \
    -p 8989:8989 \
    -v /etc/localtime:/etc/localtime:ro \
    -v /shares/Volume_1/Nas_Prog/sonarr:/config \
    -v /shares/Multimedia/TV:/tv \
    -v /shares/Downloads:/downloads \
    linuxserver/sonarr

And to fix reboot behavior do this.

Or just use my new docker package.