This post originated from an RSS feed registered with Ruby Buzz
by Obie Fernandez.
Original Post: Upgrade to Intel Version of SSHKeychain
Feed Title: Obie On Rails (Has It Been 9 Years Already?)
Feed URL: http://jroller.com/obie/feed/entries/rss
Feed Description: Obie Fernandez talks about life as a technologist, mostly as ramblings about software development and consulting. Nowadays it's pretty much all about Ruby and Ruby on Rails.
For some reason, SSHKeychain started acting up on me today, eating up to and over 100% of CPU on my dual-core MacBookPro. ActivityMonitor indicated that it's a PowerPC application, so I found a Universal binary version. The problem is that (for some reason I'm not sure of yet) I could not terminate the old version of SSHKeychain in order to replace it. Something in the OS was firing it back up again.
After some tinkering, and a failed reboot attempt (locked up and hard reboot needed, argh!) I managed to think up a way of getting rid of the old application.
ps aux | grep 'SSH'
Note the PID of SSHKeychain... in my case 188, then kill and remove its .app folder.
Now you can install the new application without a problem. BTW, killing the process and trying to remove the folder in separate statements does not work.