I can no longer see my Internal drive as a desktop icon or in the Finder or file system unless I use tinker tools and set the "show hidden files" option on. I can see it ok in Disk Utility. The same issue applies for a partition I have on an external drive.
Any idea what caused it? (inquiring minds . . . )
If the 'hidden' flag is set, this should clear that up:
chflags nohidden /{,Volumes/*}
[
if you get a '
Permission denied' message, you'll need to add
sudo onto the beginning and supply an admin password when asked.]
Normally i would request a listing first:
ls -lOd /{,Volumes/*}
but the chflags line i wrote is harmless.
If it's not the hidden flag, we'll have to try something else.
-HI-