Possible Duplicate:
ls -la symbolics… what does that last symbol mean?

Being unable to access my localhost via Parallels, I've found that the folder to which I was trying to access has permissions attributed drwxr-xr-x@ and so all of its files and subdirectories.

Mind the @ symbol. What does it mean?

I've also discovered that using mkdir creates permissions without the @ symbol. These directories ARE accessible to the VM. I generally suspect the @.

Your ideas?

link|improve this question

63% accept rate
1  
duplicate: superuser.com/questions/66722/… – ghoppe Oct 17 '10 at 23:08
feedback

closed as exact duplicate by Sathya, random Oct 18 '10 at 2:34

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

up vote 1 down vote accepted

The @ indicates extended attributes on the file. These are arbitrary metadata associated with a file. Use xattr -l filename to view it.

link|improve this answer
1  
ls -l@ will also show the extended attribute names (but not the data associated with them). – Gordon Davisson Oct 18 '10 at 0:11
feedback

It means that the file or directory has extended attributes.

link|improve this answer
Thanks. I got it: xahlee.org/comp/OS_X_extended_attributes_xattr.html – Konzepz Oct 17 '10 at 23:09
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.