1833496 Members
2894 Online
110052 Solutions
New Discussion

Re: DD Help

 
Vincent_5
Super Advisor

DD Help

Hi Guys,
Can anyone help and advice how can command I can use to copy data from one harddisk to another. I understand dd can do it.Assuming my harddisk size is 36GB.Please advice


Regards
Vincent
nothing is better than to know more
2 REPLIES 2
Ravi_8
Honored Contributor

Re: DD Help

Hi

Imagine source disk is cxtxdx and destination disk is cytydy

(use "ioscan -fnC disk" to get your disk path)

#dd if=/dev/dsk/cxtxdx of=/dev/dsk/cytydy bs=1024k

This is the command I use, and it will work.
never give up
B. Hulst
Trusted Contributor

Re: DD Help

Hi,

Before you do this copy to rely on as a backup mechanisme you could also first test if the source disk is able to read all sectors.

dd if=/dev/dsk/c0t0d0 of=/dev/null

Very fast and will test your disk's readability.

- Bob