Re: USB on Debian Potato?
- From: Theo Markettos <theom+news@xxxxxxxxxxxxxxxxxxxxxx>
- Date: 28 Jul 2008 12:39:13 +0100 (BST)
Dances With Crows <danceswithcrows@xxxxxxx> wrote:
One of the machines has to be running an FTP server. Since it's not
that common to need one of those, you may not have one installed. It's
probable that you have sshd running on at least one machine, though.
With sshd, you can use scp, or rsync, or sftp, or any of a few GUI
frontends to those things. (Try typing sftp://user@host/ into a
Konqueror window, substituting a valid hostname and a valid username.)
If the OP wants to backup hard links, devices files and other tricky things
like that I'd be tempted to do something like this from the old machine:
tar cf - / | ssh userid@newmachine "cd /backup; tar xf -"
In other words, on the old machine start tarring up the filesystem starting
at / Then open an SSH session to the new machine, and pipe the tarfile thus
created over to it. Change to directory /backup and untar the stream
received from the pipe over SSH.
This just needs an SSH client and tar on the old machine, and needs no disc
space there.
You should be able to do something similar with cpio - just use '-' as input
or output filenames.
If there are lots of files you can tweak it by making tar send compressed
files, having SSH do the compression ( -C ), or choosing a faster cipher
( -c blowfish ). It depends on the relative speed of CPUs against network.
Theo
.
- Follow-Ups:
- Re: USB on Debian Potato?
- From: Mike Fontenot
- Re: USB on Debian Potato?
- References:
- Re: USB on Debian Potato?
- From: Mike Fontenot
- Re: USB on Debian Potato?
- From: Aragorn
- Re: USB on Debian Potato?
- From: Mike Fontenot
- Re: USB on Debian Potato?
- From: Dances With Crows
- Re: USB on Debian Potato?
- Prev by Date: Re: Which USB hub
- Next by Date: Nokia phone via USB ???
- Previous by thread: Re: USB on Debian Potato?
- Next by thread: Re: USB on Debian Potato?
- Index(es):
Relevant Pages
|