- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: FastBackup
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-23-2002 07:52 PM
05-23-2002 07:52 PM
FastBackup
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-23-2002 08:40 PM
05-23-2002 08:40 PM
Re: FastBackup
find . | cpio -pudlmv /destination_dir
Exclude v option to make it further faster.
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-23-2002 08:58 PM
05-23-2002 08:58 PM
Re: FastBackup
dd if=/dev/dsk/cXtXdX of=/dev/dsk/cYtYdY bs=1024
cheers
John.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-23-2002 11:14 PM
05-23-2002 11:14 PM
Re: FastBackup
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-24-2002 04:11 AM
05-24-2002 04:11 AM
Re: FastBackup
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.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-24-2002 05:28 AM
05-24-2002 05:28 AM
Re: FastBackup
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