diskcopy (dd) on 5.2.1 ?

2004-04-05 Thread J.D. Bronson
I have 2 100% identical SCSI drives on my freebsd machine..

What command can I do in freebsd to 'copy' one drive to another
completely (including the bootsectors and partition table) ?
da0
da1
..thanks in advance...:)

- JDB



** DISCLAIMER **
Per Anti-Virus Policy, this e-email has been scanned for viruses.
Scanned clean by F-PROT ANTIVIRUS 4.4.1 - http://www.f-prot.com 

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: diskcopy (dd) on 5.2.1 ?

2004-04-05 Thread Adam Fabian
On Mon, Apr 05, 2004 at 02:32:37PM -0500, J.D. Bronson wrote:
 I have 2 100% identical SCSI drives on my freebsd machine..
 
 What command can I do in freebsd to 'copy' one drive to another
 completely (including the bootsectors and partition table) ?
 
 da0
 da1

dd if=/dev/rda0 of=/dev/rda1 bs=16k

seems reasonable to me.  I have a couple of identical IDE drives;
performance doesn't pick up much after 16k blocks, but 16k is many
times faster than the default of 512 bytes.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]