- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: copy large file to tape
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
02-25-2004 12:34 AM
02-25-2004 12:34 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-25-2004 12:38 AM
02-25-2004 12:38 AM
Re: copy large file to tape
Take a look at this thread John's method might be the one you are looking for.
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=181759
Regards,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-25-2004 12:59 AM
02-25-2004 12:59 AM
Re: copy large file to tape
dd and tar has the limit of 2GB, gnu tar has the limit of 8GB. whereas your data is 2-20GB. I feel cpio suits.
by the way pushing the compressed data on to tape reduced the tape numbers
#find .|cpio -ocdv |compress >
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-25-2004 02:00 AM
02-25-2004 02:00 AM
Re: copy large file to tape
I suppose the most portable method would be to choose Gnu tar (it's available for almost every platform). For the largefiles, I would use Gnu's bsplit (again, available on almost all platforms) to split largefiles into chunks before backup. The files can then be restored and cat'ed back together. When I absolutely, positively have to move data via tape between platforms this is the method that I fall back on.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-25-2004 08:20 AM
02-25-2004 08:20 AM
Re: copy large file to tape
You won't have any luck with standard tools between Sun and HP....
You will have to split the large files up into 2 GB chunks - unless you use GNU Tar - then 8GB would work.....
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-25-2004 11:56 AM
02-25-2004 11:56 AM
Re: copy large file to tape
Attached is what was documented on a similar task request for us. (MS Word)
Best of luck.
Regards,
dl
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-25-2004 12:42 PM
02-25-2004 12:42 PM
Re: copy large file to tape
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=47937
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-25-2004 03:27 PM
02-25-2004 03:27 PM
Re: copy large file to tape
use the fbackup tool to take backup for large files more than 2 GB
Thanx
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-25-2004 06:08 PM
02-25-2004 06:08 PM
Re: copy large file to tape
Tried this ?
#cat filename |cpio -ocdv |compress >
Rgds
Alexander M. Ermes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-25-2004 08:40 PM