linuxserver / docker-couchpotato

http://linuxserver.io
GNU General Public License v3.0
154 stars 69 forks source link

UNRAR 6.0 not supported #57

Closed kobbra closed 2 years ago

kobbra commented 3 years ago

Hi

seems like unrar in baseimage was updated to v6 but couchpotato code only support v4 or v5

"Unsupported RAR version, expected 4.x or 5.x, found: 6.00"

Im getting this error now when trying to unrar a movie.

github-actions[bot] commented 3 years ago

Thanks for opening your first issue here! Be sure to follow the bug or feature issue templates!

github-actions[bot] commented 3 years ago

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

matthewcky2k commented 3 years ago

Same problem here any eta on a fix?

aptalca commented 3 years ago

Honestly, this image probably should have been deprecated a long time ago, but because it still somewhat works, we kept it. It's python2, which is long deprecated. Alpine dropped support for all python2 things except for the core python2 package, which is what's keeping this going. At this point, it's only here for the few people still using it, and because it doesn't cause much maintenance burden for us.

CP itself has been semi-abandoned for years now. We highly recommend moving over to radarr.

kobbra commented 3 years ago

i made the switch to radarr because of this issue and haven't looked back since...

github-actions[bot] commented 3 years ago

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

WTFox commented 2 years ago

I just tried this manual fix, we'll see if it helps.

First, you'll need to get to a bash prompt

docker exec -it couchpotato /bin/bash

Then run the following commands

$ apk del unrar
$ cd /tmp
$ wget http://dl-cdn.alpinelinux.org/alpine/v3.11/main/x86_64/unrar-5.8.5-r0.apk
$ apk add -f unrar-5.8.5-r0.apk

If this works, I'm probably going to fork this repo, add this to the docker files, and point my build to that instead.

github-actions[bot] commented 2 years ago

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.