* [EMAIL PROTECTED] <[EMAIL PROTECTED]> [2005-02-13 23:13:21 +1030]:
> I've got a windows box that isn't very alive but I need to salvage
> about 4 GIG of data from it.
> 
> I've got a knoppix live cd and can access the drives on the windows
> box and establish a connection via ethernet to another linux box.
> 
> I want to upload a directory tree recursively. I can't do that with
> ftp or I'd have to traverse the tree manually.

I just did this the other day on a Windows XP box that was so full of
viruses and spyware that it was wholly unusable.

I put in a Knoppix CD and did something like this:

    cd /mnt/hda1
    tar cf - mydir | nc -v -w 3 -l -p <port>

and then on a Unix box on my LAN, I ran this:

    nc <host> <port> |tar xvfp -

And transferred all the files. This works pretty much like the scp/ssh
solutions that others posted, but doesn't have the encryption overhead.
Use it on secure networks only, please.

hth,
Thomas

-- 
N. Thomas
[EMAIL PROTECTED]
Etiamsi occiderit me, in ipso sperabo
-- 
SLUG - Sydney Linux User's Group Mailing List - http://slug.org.au/
Subscription info and FAQs: http://slug.org.au/faq/mailinglists.html

Reply via email to