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
01-12-2005 04:09 AM
01-12-2005 04:09 AM
I want to backup files to tape using cpio command. what is the sintaxis for this command for backup and restore???
Thanks for ur hlep!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2005 04:12 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2005 04:14 AM
01-12-2005 04:14 AM
Re: cpio
Take a look at this chapter,
http://docs.hp.com/en/B2355-90672/ch09.html
We do not use cpio now-a-days because of certain limitation on the size of files it can handle. On hp-ux fbackup/frecover is more often used than cpio at present.
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2005 04:15 AM
01-12-2005 04:15 AM
Re: cpio
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2005 04:19 AM
01-12-2005 04:19 AM
Re: cpio
cpio -icBvdmu < /dev/rmt/??
Not:
cpio -icBvdmu << /dev/rmt/??
Bit of finger trouble there.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-12-2005 04:23 AM
01-12-2005 04:23 AM
Re: cpio
So to add this layer:
find (whatever) | cpio -ocBv | dd ibs=5k obs=200k of=/dev/rmt/??
to backup
dd if=/dev/rmt/?? ibs=200k obs=5k | cpio -icBvdmu
to restore
The 'B' cpio option specifies 5K blocking so leave those alone but play the the 200k blocking to get overall highest throughput. It should be an integral multiple of 5k.