Would this be a new install of RPiOS Bookworm? With miniDLNA running as a user other than torres?
When creating a user's home directorry Bookworm sets permissions to rwx------ (a.k.a 700) that prevents all other users except root traversing the directory which will prevent miniDLNA from accessing your media. It worked on Bullseye because the default was rwxr-xr-x (a.k.a 755).
You can check permissions on a directory bye.g..
You can change them with chmod. E.G.The downside is that any user with access to your Pi can then access your home directory and it's contents.
When creating a user's home directorry Bookworm sets permissions to rwx------ (a.k.a 700) that prevents all other users except root traversing the directory which will prevent miniDLNA from accessing your media. It worked on Bullseye because the default was rwxr-xr-x (a.k.a 755).
You can check permissions on a directory by
Code:
code ls -ld directory
Code:
ls -ld /home/torres
You can change them with chmod. E.G.
Code:
chmod +rx /home/torres
Statistics: Posted by thagrol — Sun Sep 01, 2024 11:48 pm