Entries from June 2006

Piping data over SSH

Date June 6, 2006 by Isaac

It is sometimes useful to pipe binary data over a ssh connection. I use this sometimes when I want to back up the data on a machine over the network without creating a backup file first.   tar -cf – dir_to_backup | ssh user@hostname ‘cat > backup.tar’

Mounting a remote SSH filesystem

Date June 5, 2006 by Isaac

On a typical project there are many different computers that I must use. For years I have been using scp to copy files from one computer to another and wishing for a way to just mount the SSH filesystem. Well, my wish finally came true! The good news is that thanks to sshfs I can [...]

CORBA, Routing Tables, and Firewalls, oh my!

Date June 1, 2006 by Isaac

This past week I created a Python script to test a certain CORBA component. The component uses callbacks to pass data back to the caller. So, in theory, all one has to do is register a callback with the CORBA object, call the Start() method, and let the data start coming. Now, once I got [...]