It’s a new year, happy 2012 everyone. So late in December I updated to a dev system which is an iMac running OS X Lion. Given it’s the new year and work is not in full-swing till later this month (the bulk of our clients are running a skeletal staff until school returns next week) I thought this would be a good time to do some maintenance and non-development tasks that should be done to get ready for the year ahead.
One of the items on my @todo list was to update a public RSA key in use last year and in so doing I came across this issue. Down into the console I go to generate a new key:
cd ~/.ssh
generate the a new key
ssh-keygen -t rsa -C "projects@webdeli.com.au"
and bang – out comes a shiny, shiny new key at ‘Users/webdeli/.ssh/id_rsa.pub’
So far so good. Back to the desktop and navigating the browser to a public site the we authenticate to with PKI, go to admin, authorise a public key, open Finder, go to ‘Users/webdeli/.ssh/id_rsa.pub’ ..hey it’s not there, oh that’s right – new system, default settings I haven’t enabled ‘Show hidden files’ in the finder config yet.
Cool, I think… so I go to ‘Finder > Preferences’ … hmmm not here.. ah go to ‘Finder > Preferences > Advanced’ .. no luck here either.
Wow, I must be losing it… So I look at ‘Finder > View > Show View Options’ and still nothing..
So what is going on here?
Well it turns out that a design decision in OS X Lion has been made that out here in user-land we don’t need no stinking hidden files. Yes this sucks. Yes you can fix it. No you won’t need to install a utility or software patch, but you will need to execute some console code:
To enable hidden files view in finder on Mac OS X (Lion) – In console:
defaults write com.apple.Finder AppleShowAllFiles TRUE
Voilà there are our hidden files (breathes a sigh of relief)
and later if you decide you want to turn this off,
To dis-able hidden files view in finder on Mac OS X (Lion) - In console:
defaults write com.apple.Finder AppleShowAllFiles FALSE
I don’t know, but I suspect this design decision is part of the trend from Cupertino toward the iOSification of alot of the OS X (Lion) os and the trend towards simplification and the lockdown of those devices creeping into the macbook/imac & pro’s operating system.









