1834855 Members
2593 Online
110070 Solutions
New Discussion

Re: FastBackup

 
Ash_4
Advisor

FastBackup

Hi Masters,
As i am upgrading our Raid Box HDD, I want to take Disk To Disk Backup. Pl. help which will be the Fastest Mathod of taking disk to disk backup.
Any help will be appreciated!
Thanks in Adv.
5 REPLIES 5
RAC_1
Honored Contributor

Re: FastBackup


find . | cpio -pudlmv /destination_dir

Exclude v option to make it further faster.

Regards,
There is no substitute to HARDWORK
John Carr_2
Honored Contributor

Re: FastBackup

Hi

dd if=/dev/dsk/cXtXdX of=/dev/dsk/cYtYdY bs=1024

cheers
John.
Alexander M. Ermes
Honored Contributor

Re: FastBackup

Hi there.
You could also try Clay's lifeboat tactics.
check this url :

http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0x206d42308663d611abdb0090277a778c,00.html

Clay has mentioned it in there.
Rgds
Alexander M. Ermes
.. and all these memories are going to vanish like tears in the rain! final words from Rutger Hauer in "Blade Runner"
Leif Halvarsson_2
Honored Contributor

Re: FastBackup

Hi
If you want to copy the content (data) of a disk to another disk I think cpio is the best . Use dd only if your disk are exact the same and you want an exact copy, block by block.
PIYUSH D. PATEL
Honored Contributor

Re: FastBackup

Hi,

Use cpio
Be in the source directory and issue

find . -depth -print | cpio -pdlmuv /destination_dir

-print option shows you the files on screen during restoration

This is the best method and doesn't give any problems. dd can be used but with the same type of disks,,,,or else it may give problems.

Piyush