Mailing List ArchiveSupport open source code!
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]Re: tar limitations?
- To: <tlug@example.com>
- Subject: Re: tar limitations?
- From: Tod McQuillin <devin@example.com>
- Date: Mon, 17 Sep 2001 21:39:04 +0900 (JST)
- Cc: Hector Akamine <akamine@example.com>
- Content-Type: TEXT/PLAIN; charset=US-ASCII
- Delivered-To: tlug@example.com
- In-Reply-To: <20010917211434.X52440-100000@example.com>
- List-Help: <mailto:tlug-request@example.comsubject=help>
- List-Post: <mailto:tlug@example.com>
- List-Subscribe: <mailto:tlug-request@example.comsubject=subscribe>
- List-Unsubscribe: <mailto:tlug-request@example.comsubject=unsubscribe>
- Old-Return-Path: <devin@example.com>
- Reply-To: tlug@example.com
- Resent-From: tlug@example.com
- Resent-Message-ID: <RboaBD.A.2lB.O6ep7@example.com>
- Resent-Sender: tlug-request@example.com
- Sender: Tod McQuillin <devin@example.com>
Following up to my own post... On Mon, 17 Sep 2001, Tod McQuillin wrote: > The problem likely lies in trying to write a file larger than 2^31 bytes, > rather than in tar outputting that many bytes. [...] > > tar cvf - . | gzip -c > file.tar.gz I forgot to mention that gzip can take a *long* time to compress 2 gigs of data, especially on slower machines. If you have the disk space (and it sounds like you do) then you can also just split the .tar file into multiple chunks, where each chunk is less than 2GB, using split: tar cvf - . | split -b 1024m - file.tar. This will produce multiple files, like file.tar.aa, file.tar.ab, file.tar.ac, etc. Later these can be fed back into tar with cat: cat file.tar.* | tar tvf - -- Tod McQuillin
- References:
- Re: tar limitations?
- From: Tod McQuillin <devin@example.com>
Home | Main Index | Thread Index
- Prev by Date: Re: Printing PostScript
- Next by Date: Re: tar limitations?
- Prev by thread: Re: tar limitations?
- Next by thread: Re: tar limitations?
- Index(es):
Home Page Mailing List Linux and Japan TLUG Members Links