1828023 Members
1992 Online
109973 Solutions
New Discussion

Disks

 
David_492
Advisor

Disks

Dear ALL

I just wonder how i could copy the data from disk to disk over the hp unix rp8400 server?
Thanks
1 REPLY 1
Robert-Jan Goossens
Honored Contributor

Re: Disks

Hi David,

From disk to disk,

# dd if=/dev/rdsk/source_disk of=/dev/rdsk/target_disk

You could also use mirror UX to move/copy filesystems from disk to disk.

An other option is to copy data from OS level using cpio

# find /filesystem | cpio -pcmudv /filesystem

Hope it helps,
Robert-Jan