![]() |
Problem start jellybin - Printable Version +- Jellyfin Forum (https://forum.jellyfin.org) +-- Forum: Support (https://forum.jellyfin.org/f-support) +--- Forum: General Questions (https://forum.jellyfin.org/f-general-questions) +--- Thread: Problem start jellybin (/t-problem-start-jellybin) |
RE: Problem start jellybin - Paro89 - 2025-04-11 I do it, but it doesn't work, Jellyfin continue to doesn't see the HDD. But now if i try to enter in th4e HDD i can't because Ubuntu say me that i have not the permission!! RE: Problem start jellybin - TheDreadPirate - 2025-04-11 What file system is that hard drive using? Code: cat /proc/mounts | grep "/media" RE: Problem start jellybin - Paro89 - 2025-04-11 Code: /dev/sdd /media/paro/Telefilm\0402 ntfs3 rw,nosuid,nodev,relatime,uid=1000,gid=1000,iocharset=utf8 0 0 RE: Problem start jellybin - TheDreadPirate - 2025-04-11 Oooooohhh. I assumed it was ext4. Since they are NTFS it does require ACLs, period. Code: sudo setfacl -m user:paro:rwx,group:paro:rwx,group:jellyfin:r-x,other::--- /media/paro/Telefilm* I think that should give both you and Jellyfin access. If that partially works, you may need to recursively run the command with the -R parameter. Code: sudo setfacl -m user:paro:rwx,group:paro:rwx,group:jellyfin:r-x,other::--- -R /media/paro/Telefilm* RE: Problem start jellybin - Paro89 - 2025-04-11 Code: setfacl: /media/paro/Telefilm: Operazione non supportata (2025-04-11, 06:39 PM)TheDreadPirate Wrote: Oooooohhh. I assumed it was ext4. Since they are NTFS it does require ACLs, period. Code: sudo setfacl -m user:paro:rwx,group:paro:rwx,group:jellyfin:r-x,other::--- /media/paro/Telefilm* With *: File or directory does not exist. Without *: Operation not supported RE: Problem start jellybin - TheDreadPirate - 2025-04-11 "Operation not supported" tells me that I mistyped the path in the example I provided. The "target" needs to be correct. Make sure that the path is correct. Not sure if I'm missing a special character somewhere. RE: Problem start jellybin - Paro89 - 2025-04-11 Ok, it works. The right command was: sudo setfacl -m user:paro:rwx,group:paro:rwx,group:jellyfin:r-x,other::--- /media/paro/ |