2024-05-29, 11:38 PM
When you do an "ls -ld /media/user" is there a plus at the end of the permissions? Here is what getfacl shows a directory that definitely doesn't have an ACL.
Pretty sure the "mask" and "user:jellyfin" and "user:user" indicate the presence of an ACL and I've never been able to get them to work like you'd think they do. So I always remove them and use basic linux permissions.
sudo setfacl -b /media/user
Add -R if you want to recursively remove the ACL.
Code:
getfacl: Removing leading '/' from absolute path names
# file: media/library/
# owner: chris
# group: jellyfin
# flags: -s-
user::rwx
group::r-x
other::---
Pretty sure the "mask" and "user:jellyfin" and "user:user" indicate the presence of an ACL and I've never been able to get them to work like you'd think they do. So I always remove them and use basic linux permissions.
sudo setfacl -b /media/user
Add -R if you want to recursively remove the ACL.