Posts tagged as:

ssh

SSH Wrapper Script

November 30, 2008

Ok — this is my first script that I’m posting here. Its a VERY simple ssh wrapper script that you can place in your path, preferably in ~/bin
– start –
#!/bin/bash
SSH=”/usr/bin/ssh”
case “$*” in
*’@’*)     $SSH $* ;;
*’ -l’*)     $SSH $* ;;
*)         $SSH -l root $* ;;
esac
– end [...]

{ 0 comments }

VMWare and OS X

November 6, 2008

Ok, so my latest annoyance is that the fine folks from vmware have no remote console plugin for firefox on Mac. This leaves me unable to manage any of the VMs I have going without starting up Windows under Fusion. I found a work around online that allows me to run the linux plugin via [...]

{ 1 comment }

Fixing iZipper

October 4, 2008

When I attempted to install iZipper, it was apparently created for an older iPhone/Firmware. Here are the quick instructions on how to fix it to work, and add some new sillyness.

After you install iZipper, ssh into the phone and lets take a look at /var/stash — There should be a directory there named Themes.xxxxx (where [...]

{ 4 comments }