this post was submitted on 18 Oct 2023
441 points (96.4% liked)
Technology
59123 readers
4466 users here now
This is a most excellent place for technology news and articles.
Our Rules
- Follow the lemmy.world rules.
- Only tech related content.
- Be excellent to each another!
- Mod approved content bots can post up to 10 articles per day.
- Threads asking for personal tech support may be deleted.
- Politics threads may be removed.
- No memes allowed as posts, OK to post as comments.
- Only approved bots from the list below, to ask if your bot can be added please contact us.
- Check for duplicates before posting, duplicates may be removed
Approved Bots
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Yup, this is exactly the issue I haven't been able to figure out. For some reason, the files I download in Sonarr are associated with a user group that Plex isn't a part of, so Plex can't see the files (and I've tried adding Plex to that group and it still doesn't work, argh). I know you can specify a UID and other specifics when you initialize a container, but inside the container itself that doesn't seem to apply, it sets its own user parameters. I'm about ready to throw in the towel and just run the software on my machine itself with a VPN, because then at least everything will be able to talk to each other.
Luckily perms don’t seem to be much of an issue on UnRaid, I think there’s a solid convention for user and group so files are generally accessible to all apps.
Worst case scenario, you just
chmod 777
everythingJust in case this helps, I think nearly all the docker containers in Unraid have these settings set: https://snipboard.io/D6ZagQ.jpg
Make a new user group and add everyone to it, then change the permissions of the target directory Sudo addgroup newgroup Sudo usermod —append —groups newgroup user Sudo chown -r newgroup:newgroup ./*
I had the same issue. Adding it all to the same group fixed it for me