When I try to copy some folders in /usr/local
to a standard user's folder, I find there is a folder named 'local' I cannot delete, even with
# rm -rf local
rm: local: Operation not permitted
it tell me "Operation not permitted", but I do have the superuser privilege. Then I thought it may be something wrong with the flags, and the flag information is:
# ls -al
drwxr-xr-x 2 root wheel 68 Oct 10 10:04 local
# ls -lO
drwxr-xr-x 2 root wheel sunlnk 68 Oct 10 10:04 local
It seems that I cannot change it's flag too. So what's the sunlnk
means and what I can do to delete the empty folder?