I'd make a backup of a entire remote filesystem ext3 to a local HD. This operation has to be made using ssh. The backup has to be get from the Client PC and not give to the Server. I hope was clear to explain my issue.
Some one could suggest me how to resolve it?
thank you so much!
I suggest using rsync, which can operate over ssh.
(rsync must be installed on both sides)
rsync is designed to transfer directories from one machine to another using as little bandwidth as possible. By default, it only transfers the deltas between the source and destination.
The options above (-cavz) are the ones I normally use, and tell it to (-c) check checksums; (-a) preserve permissions, timestamps, symlinks, etc.; (-v) be verbose; and (-z) compress the transferred data.
The traditional method is to do something along the lines of:
You can either do this step by step, or use unix pipes and tell the archive commands to use pipes instead of actual file archives.
In the old days, I did the following on the machine with the files:
You could probably get things running with a command similar to
Good luck
try this
http://en.wikipedia.org/wiki/Dd_%28Unix%29