JDownloader PR4100 Newbie

Hello,

I’m a newbie to NAS and I purchased a PR4100. I would like to know if there is an easy way to install JDownloader on it?

Thanks

Run this in SSH

JD_CFG=/shares/Volume_1/Nas_Prog/jd_config
JD_DL=/shares/Public/jdownloader/downloads
mkdir -p ${JD_CFG}
mkdir -p ${JD_DL}
docker run -d \
    --name=jdownloader-2 \
    -p 5800:5800 \
    -v ${JD_CFG}:/config:rw \
    -v ${JD_DL}:/output:rw \
    jlesage/jdownloader-2
docker update --restart=always jdownloader-2

More info at Docker

If it doesn’t work, lookup the more recent docker version available here on the forum.

Thanks so much! I managed to make it!

1 Like