The Artima Developer Community
Sponsored Link

Ruby Buzz Forum
Upgrade to Intel Version of SSHKeychain

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Obie Fernandez

Posts: 608
Nickname: obie
Registered: Aug, 2005

Obie Fernandez is a Technologist for ThoughtWorks
Upgrade to Intel Version of SSHKeychain Posted: Jun 2, 2006 6:25 PM
Reply to this message Reply

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.
Latest Ruby Buzz Posts
Latest Ruby Buzz Posts by Obie Fernandez
Latest Posts From Obie On Rails (Has It Been 9 Years Already?)

Advertisement

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.

kill -9 188 && rm -Rf /Applications/SSHKeychain.app/

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.

Read: Upgrade to Intel Version of SSHKeychain

Topic: UpcomingFS Previous Topic   Next Topic Topic: Tetris Ajax-style

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use