![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| SUN Solaris The Solaris Operating System, usually known simply as Solaris, is a free Unix-based operating system introduced by Sun Microsystems . |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| tar'ing and regular expressions | sirbrian | UNIX for Dummies Questions & Answers | 2 | 07-10-2007 04:17 AM |
| tar: tape blocksize error | big123456 | UNIX for Advanced & Expert Users | 1 | 03-26-2007 03:57 AM |
| tar'ing and zipping files | FredSmith | UNIX for Dummies Questions & Answers | 4 | 05-02-2006 12:09 PM |
| Tape error. | krk123 | SCO | 1 | 12-07-2005 08:04 AM |
| SCSI Tape Error | Andre | UNIX for Dummies Questions & Answers | 1 | 05-23-2002 03:42 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
#1
|
|||
|
|||
|
Error tar'ing files to tape
I'm trying to tar a bunch of files off to a tape, but for one specific file (it is fairly large, roughly 10Gb) I get the error:
too large to archive Does tar have a limit of the size of file it can write off to tape? I'm using SunOS 5.8. Thanks! -Fred |
| Forum Sponsor | ||
|
|
|
#2
|
||||
|
||||
|
Well the tar man page says:
Quote:
|
|
#3
|
|||
|
|||
|
The man page for largefile says that tar is "large file aware" ... so why would I have received that message to begin with?
|
|
#4
|
||||
|
||||
|
Hmmm... good question! Sun has made the source code available. Looking at tar.c, I see that the limit is from this line:
#define TAR_OFFSET_MAX 077777777777 That is only eleven octal digits and it looks like 12 should be able to fit. So I guess that I don't know why that is. Code:
$ bc ibase=8 77777777777 8589934591 |
|
#5
|
|||
|
|||
|
Would tar-1.15.1 be able to "tar" files of 10Gb+?
Would tar-1.15.1 be able to "tar" files of 10Gb+?
|
|
#6
|
||||
|
||||
|
Fred - you asked "So is it possible to tar a 10GB+ file? How???" in the wrong thread - I deleted it but posted this to keep the info in your thread.
|
|
#7
|
||||
|
||||
|
Quote:
--format=gnu. --format=posix are the two formats which the docs claim support unlimited files. The posix format is a newer format than Sun uses. --format=ustar would select the older posix format in use by Sun. So while I haven't tried this, I think it should work. Edit: The GNU tar docs is a very useful document so I will include a link. Last edited by Perderabo; 10-06-2005 at 07:56 AM. Reason: Add link |
||||
| Google The UNIX and Linux Forums |