Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 22 Jun 2003 18:54:31 +0200
From:      Alexander Leidinger <Alexander@Leidinger.net>
To:        Etienne Ledoux <etienne@unix.za.org>
Cc:        freebsd-isp@freebsd.org
Subject:   Re: What would be the best way to copy lots of files from one server to another.
Message-ID:  <20030622185431.79d8c0de.Alexander@Leidinger.net>
In-Reply-To: <200306181340.06730.etienne@unix.za.org>
References:  <200306181340.06730.etienne@unix.za.org>

next in thread | previous in thread | raw e-mail | index | archive | help
On Fri, 20 Jun 2003 14:21:01 +0200
Etienne Ledoux <etienne@unix.za.org> wrote:

> I need to copy lots of directories/files from one server to another. Approx 
> 45Gb . These files are mailboxes stored in maildir format. What would be the 
> best/safest/quickest way to do this ?

Not mentioned yet:
  cd /path/to/root/of/files && tar -cf - . | ssh me@destination 'cd /path/to destination && tar -xvpf -'
or similar with "dump ... | ssh ... restore ..." with either the native
compression of ssh or tar (or no compression at all if the transfered
size doesn't matter).

Bye,
Alexander.

-- 
Actually, Microsoft is sort of a mixture between the Borg and the Ferengi.

http://www.Leidinger.net                       Alexander @ Leidinger.net
  GPG fingerprint = C518 BC70 E67F 143F BE91  3365 79E2 9C60 B006 3FE7



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20030622185431.79d8c0de.Alexander>