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 [...]
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 [...]
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 [...]
recent comments