"Just google on
netcat and
dd " said my son, when I asked him how to ghost my linux box across the network. He would not tell me more :-)
So I read the excellent doco on netcat but still did not get how to combine it with dd to ghost.
So I ran netcat in two windows to test it...
In one window I ran the listener:
cd /tmp
/usr/bin/netcat -l -p 1234 | uncompress -c | tar xvfp -
In the other:
tar cfp - *.pl | gzip -c | /usr/bin/netcat -w 3 localhost 1234
Worked like a charm.
I can pipe the output of netcat to a script to do virtually anything I want. Hmm what do I need
dd for?
Yet Another LinxApachePerlMySQL bigot