|
|
|
|
Blog by JasmineCorp | Create your own Blog
|
RSS Feed | Login |
Vinod's Linux tips blog. Where you can find some cool tips for Linux.
|
Backing up entire hard disk on a remote server By Vinod at 2008-03-20 09:40:13
|
backup
dd if=/dev/hda1 bs=1k conv=sync,noerror | gzip -c | ssh -c blowfish user@remotehost "dd of=filename.gz bs=1k"
restore
dd if=filename.gz | ssh -c blowfish root@destinationhost "gunzip -c | dd of=/dev/hda1 bs=1k"
|
Permalink | Comments (0) |
Comments
|
To add a comment please login by clicking here
|
|