Re: Hard Disk mirroring

2003-12-22 Thread Behdad Esfahbod
On Mon, 22 Dec 2003, Amir Spivak wrote: Hi, I have a server which i want to copy in case of a HD failure, the way i want to do it is just copying all its contents to a new HD that i will mount on the server, after mounting, i want a utility that will mirror entire HD to it in the simplest

RE: Hard Disk mirroring

2003-12-22 Thread Arik Baratz
It really depends on what you're trying to do. If you want a logical copy, you can use the ol' tar trick: tar --preserve --one-file-system -cf - | (cd /mountpoint ; tar --preserve -xf -) If you want a physical copy, you can do: mount /mountpoint-of-old-disk -oremount,ro dd

RE: Hard Disk mirroring

2003-12-22 Thread Arik Baratz
, 2003 1:47 PM To: Arik Baratz Subject: Re: Hard Disk mirroring i want to copy all the contents of the old HD into the newly mounted drive, so in the case of failure of the old one i can just install the newly mounted one and everything will work. - Original Message - From: Arik Baratz

Re: Hard Disk mirroring

2003-12-22 Thread Dan Fruehauf
On Monday 22 December 2003 11:49, Amir Spivak wrote: Hi, I have a server which i want to copy in case of a HD failure, the way i want to do it is just copying all its contents to a new HD that i will mount on the server, after mounting, i want a utility that will mirror entire HD to it in the

Re: Hard Disk mirroring

2003-12-22 Thread Micha Feigin
On Mon, Dec 22, 2003 at 11:49:06AM +0200, Amir Spivak wrote: Hi, I have a server which i want to copy in case of a HD failure, the way i want to do it is just copying all its contents to a new HD that i will mount on the server, after mounting, i want a utility that will mirror entire HD to