- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- tar extract from 4x2Gb files err: blocksize
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
07-02-2004 04:37 AM
07-02-2004 04:37 AM
tar extract from 4x2Gb files err: blocksize
When the upper limit (2Gb) was reached for first file, it asked for a new filename.
We have 4 files containing the entire backup.
filename.tar, filename2.tar filename3.tar and filename4.tar
When trying to restore the files we get blocksize error.
tar -xvf filename.tar
I have experimented a bit with:
tar -xvb__f filename.tar
and tried to check the blocksize to use with:
dd if=filename.tar of=/tmp/record bs=64k
ll /tmp/record
It will only show the of_bs of dd command as far as I can see.
Any suggestions ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-02-2004 04:50 AM
07-02-2004 04:50 AM
Re: tar extract from 4x2Gb files err: blocksize
Yes - avoid the 2GB tar limitation altogether & use GNU tar.
gtar is available here:
http://hpux.cs.utah.edu/hppd/hpux/Gnu/tar-1.14/
Rgds,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-02-2004 04:54 AM
07-02-2004 04:54 AM
Re: tar extract from 4x2Gb files err: blocksize
Still looking though
All the best
Victor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-02-2004 04:58 AM
07-02-2004 04:58 AM
Re: tar extract from 4x2Gb files err: blocksize
And do you have any suggestions how to solve this immediate problem ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-02-2004 06:05 AM
07-02-2004 06:05 AM
Re: tar extract from 4x2Gb files err: blocksize
Now when you are trying to restore the files are you starting with filename.tar and then progressing to filename2.tar, filename3.tar, etc.? If not you need to try that. I am fairly certain that you can NOT restore starting with the middle file in a set.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-02-2004 07:06 AM
07-02-2004 07:06 AM
Re: tar extract from 4x2Gb files err: blocksize
I start with the first file, but after some waiting I would expect to be prompted for the next one, but only get the error message stating blocksize error.
/Tor-Arne
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-02-2004 06:00 PM
07-02-2004 06:00 PM
Re: tar extract from 4x2Gb files err: blocksize
cat filename.tar filname[234].tar | tar tvf -
If it can read the TOC without error, maybe it can extract without error as well. It would be nice to know the results either way.
Good luck,
Peter
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-05-2004 11:06 PM
09-05-2004 11:06 PM
Re: tar extract from 4x2Gb files err: blocksize
Nevertheless - an answer is always worth a point ;-)