setfaclを実行すると、”Operation not supported”と出る場合がある。
これはどうもファイルシステムの設定の問題みたいです。
以下のサイトにしたがってやったらうまくできました。
http://tapioca7.blogspot.jp/2011/07/linuxsetfacl.html
1 2 3 4 5 6 7 8 |
$ sudo setfacl -R -m u:apache:rwx -m u:hoge:rwx app/cache app/logs setfacl: app/cache: Operation not supported setfacl: app/logs: Operation not supported setfacl: app/logs/.gitkeep: Operation not supported $ mount -o acl,remount / mount: only root can do that $ sudo mount -o acl,remount / $ sudo setfacl -R -m u:apache:rwx -m u:hoge:rwx app/cache app/logs |