- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: tar files greater than size 2 GB
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
08-04-2003 12:01 AM
08-04-2003 12:01 AM
tar files greater than size 2 GB
I have to send around 40 GB of Data to a client of mine. The data comprises of files larger than 2 GB. I am using HP-UX 11i and my Client is using SGI 's IRIX.
By searching the itrc forums, I found that with a patch applied on HP-UX 11i one can tar files greater than 2 GB.
How about my Client, will he able to restore and untar the files greater than 2 GB ?
What is the best way to go about this ?
Would appreciate your help.
Regards,
Manjunath.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-04-2003 12:04 AM
08-04-2003 12:04 AM
Re: tar files greater than size 2 GB
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-04-2003 12:11 AM
08-04-2003 12:11 AM
Re: tar files greater than size 2 GB
GNU tar (which supports files over 2Gb)
dd
dump
Do not try to use the native hpux tar with the patching, as this will only work with another hpux box that is patched the same. It is not compatible with other unix operating systems.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-04-2003 12:25 AM
08-04-2003 12:25 AM
Re: tar files greater than size 2 GB
http://hpux.connect.org.uk/hppd/hpux/Gnu/tar-1.13.25/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-04-2003 12:39 AM
08-04-2003 12:39 AM
Re: tar files greater than size 2 GB
For gzip there is a little workaround.
cat file | gunzip > org_file
Rgds
Alexander M. Ermes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-04-2003 12:49 AM
08-04-2003 12:49 AM
Re: tar files greater than size 2 GB
cheers,
-ChaZ-
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-04-2003 01:05 AM
08-04-2003 01:05 AM
Re: tar files greater than size 2 GB
http://www1.itrc.hp.com/service/patch/patchDetail.do?patchid=PHCO_26423&context=hpux:800:11:11
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2003 09:14 AM
08-06-2003 09:14 AM
Re: tar files greater than size 2 GB
How are you sending the files? Are you sending your client a tape?
If you both have a 40GB tape drive, you can put your files on one tape with e.g.
cd /patches
tar -cvf /dev/rmt/1m ./40gigs_of_files
Then your client can mount the tape and e.g.
mkdir manjunath_patches
cd manjunath_patches
tar -xvf /dev/rmt/1m
. . . and tar will restore the directory "40gigs_of_files" to the client's server.
Hope this helps,
Rob
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2003 09:53 AM
08-06-2003 09:53 AM
Re: tar files greater than size 2 GB
Gary
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2003 11:02 AM
08-06-2003 11:02 AM
Re: tar files greater than size 2 GB
Gary,
Correct. We use tar to backup a filesystem to DLT, about 20 GB of data.
Works fine, we've even restored files from the tape.
Rob
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2003 04:08 PM
08-06-2003 04:08 PM
Re: tar files greater than size 2 GB
When tarring to disk, you would also have to make sure your filesystem is mounted with the largefiles mount option.
regards
Wouter
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-06-2003 07:36 PM
08-06-2003 07:36 PM
Re: tar files greater than size 2 GB
It's important to note that tar (and cpio and similar legacy backup programs) are way out of date for today's backup requirements. HP's patch is only good for 8Gb (not 10Gb or even 100Gb) and as mentioned, there is no similar patch for any other flavor of Unix. Gtar is a good (free) alternative BUT it must be ported to the destination system.
And with that much data, using utilities (like tar) that were designed for 7-track reel-to-reel tapes that stored a whopping 20 megs is probably not the best choice for important information. I would check out commercial solutions that cross multiple platforms. The tools handle errors, recover from danaged tapes, handle multiple reels and auto-loaders, and can backup/restore over the network. Vendors are: HiComp's HiBack, HP's Omniback/DataProtector, Veritas, etc
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2003 05:10 AM
08-07-2003 05:10 AM
Re: tar files greater than size 2 GB
Gary