restore

Created a dump, threw on another server.
[cmd=]dump-0auL-f - / dev/da0s1d | bzip2 | ssh backup@192.168.50.50-p 22 dd of = / root / vds-admin.dump[/cmd]
It now restore point that he is on another PC that would not perekidovat back?
Thank you.
 
ssh [email=backup@192.168.50.50]backup@192.168.50.50[/email] cat /path/to.dump | bzip2 -dc | restore -rf -

Most likely through bzip2.
Right?
 
yes, something like that, i haven't piped anything to bzip2 to decompress it, so I can't tell for 100%

another way could be
Code:
# ssh backup@192.168.50.50 cat /path/to.dump | bzcat | restore -rf -
if it'll work
 
bzip2 and bunzip2 is the same binary. With different options they can generally be made to do the same things.
 
Back
Top