0

I have a SSD that is not very large in capacity. I've added a hdd in my computer. With minidlna, I can see fine the files in my download folders, but when I try to see the files from my hdd, (the one I added beside my SSD) I just can't... Include a picture of what I tried to write in minidlna. Any tips on how I could see my files on my larger hdd? Thank you!

Rabta
  • 3

1 Answers1

0

This will probably be file permissions, the minidlna server runs with the user:group minidlna:minidlna so if the files you have created are not either in a matching group, or are world readable then this process will not be able to scan or read them. You need execute permission on the directory to be able to list the files, and read permission on the files. Show the permissions with stat <filename> and change the permissions with the chmod command. To add the world readable to a file chmod a+r <filename>

Stuart
  • 1,226