![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | 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 . |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| tar'ing and regular expressions | sirbrian | UNIX for Dummies Questions & Answers | 2 | 07-10-2007 08:17 AM |
| tar: tape blocksize error | big123456 | UNIX for Advanced & Expert Users | 1 | 03-26-2007 07:57 AM |
| tar'ing and zipping files | FredSmith | UNIX for Dummies Questions & Answers | 4 | 05-02-2006 04:09 PM |
| Tape error. | krk123 | SCO | 1 | 12-07-2005 11:04 AM |
| SCSI Tape Error | Andre | UNIX for Dummies Questions & Answers | 1 | 05-23-2002 07:42 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
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 |
|
|||||
|
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 |
|
|||||
|
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 11:56 AM.. Reason: Add link |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|