"Simoncini, Matthew" wrote: > I have a large filesystem (~20 - 25 gig) that I need to copy to another > server. What is the best way to get the data from one server to another? Got ssh? tar -cpf - filesystem/ | ssh $server '?tar -C /wherever -xpf -' ---sambo