greyed out folder in OS X

5

I installed the intel compiler on my Mac (10.6), and it installed fine, but the folder in which it is installed (/opt, i.e. at the root) is not visible by default, and when I use the Finder "go to" feature, it appears, but as greyed out. What does it mean? I also checked out the permissions, and the only odd thing is that there is an @ at the end of permissions. Any ideas?

I'm asking because while the intel compiler is installed (all the files are there), I cant use it from XCode (3.2), and I'm wondering whether this could be why.

Thank in advance

A

vectorizor

Posted 2010-03-02T15:38:40.450

Reputation: 215

The @ denotes the existence of extended attributes, see http://superuser.com/questions/66722/ls-la-symbolics-what-does-that-last-symbol-mean

– Uwe Honekamp – 2010-03-02T18:03:35.267

Answers

3

Greyed out elements in the Get Info dialog mean that you don't have permissions to edit them. In this case, the folder belongs to root, and you don't have permissions to change them, unlike most of what's in your home folder, which belongs to your user account. Click the lock icon and enter an administrator's password to edit what you cannot ordinarily change.

enter image description here

Daniel Beck

Posted 2010-03-02T15:38:40.450

Reputation: 98 421

0

The folder is simply hidden.

To unhide it, do the following in the Terminal :

sudo chflags nohidden /opt

To hide it again :

sudo chflags hidden /opt

Studer

Posted 2010-03-02T15:38:40.450

Reputation: 3 448

the -R options make this recursive. – William Macdonald – 2011-08-31T12:59:32.923