- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Is it possible to create tar/archives bigger than ...
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
03-01-2002 08:59 AM
03-01-2002 08:59 AM
I have a jobs that archives which exceed 2Gb...
If there a standard way to create archive files with more than 2Gb?
Any suggestion/hint is appreciated.
Thanks & Kind Regards,
Rui.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2002 09:02 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2002 09:13 AM
03-01-2002 09:13 AM
Re: Is it possible to create tar/archives bigger than 2Gb.
If you want to tick with tar, the Gnu version is your best bet:
http://hpux.connect.org.uk/hppd/hpux/Gnu/tar-1.13.25/
Fbackup is a good but HP-only alternative. If you must do lar archives and portability is a requirement then the Gnu version of tar is a good choice because it is available for a very large number of platforms.
Food for thought, Clay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2002 09:17 AM
03-01-2002 09:17 AM
Re: Is it possible to create tar/archives bigger than 2Gb.
Some of the backup commands, specifically tar, cpio, pax (tar & cpio formats), and ftio (because it creates cpio format archives) are
restricted from supporting large files due to standards defined headers in the archives. Although the headers allow archival of files
upto 8GB, there is no guarantee that there will be no attempt to restore these files on a system that does not support large files. These commands will therefore support files up to 2GBonly. Attempts to archive any files >2GB will fail, and the files will not be added to the archive."
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2002 09:18 AM
03-01-2002 09:18 AM
Re: Is it possible to create tar/archives bigger than 2Gb.
Follow Volker's and Clay's advise: gnu tar...
And it will allow you to write to remote tape drives.
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2002 09:44 AM
03-01-2002 09:44 AM
Re: Is it possible to create tar/archives bigger than 2Gb.
tar -czvf big_archive.tar.gz /some/directory
Produces a gzipped archive as output
Equivalent to this (which you can do with regular tar):
tar -cvf - /some/directory | gzip > big_archive.tar.gz
but with fewer steps.
You might want to consider using compression if you are not. Text files, for example, compress nicely. 2Gig of text would end up about 300 meg or so.