From owner-freebsd-questions Sat Nov 3 12:17:41 2001 Delivered-To: freebsd-questions@freebsd.org Received: from lists.blarg.net (lists.blarg.net [206.124.128.17]) by hub.freebsd.org (Postfix) with ESMTP id DB72737B416 for ; Sat, 3 Nov 2001 12:17:38 -0800 (PST) Received: from thig.blarg.net (thig.blarg.net [206.124.128.18]) by lists.blarg.net (Postfix) with ESMTP id 80599BC8D; Sat, 3 Nov 2001 12:17:38 -0800 (PST) Received: from localhost.localdomain ([206.124.139.115]) by thig.blarg.net (8.9.3/8.9.3) with ESMTP id MAA10848; Sat, 3 Nov 2001 12:17:38 -0800 Received: (from jojo@localhost) by localhost.localdomain (8.11.6/8.11.3) id fA3KFrx57626; Sat, 3 Nov 2001 12:15:53 -0800 (PST) (envelope-from swear@blarg.net) To: Nils Holland Cc: David Kelly , Jim Arnold , Cliff Sarginson , Subject: Re: Splitting a tar archive References: <20011102232955.W1449-100000@howie.ncptiddische.net> From: swear@blarg.net (Gary W. Swearingen) Date: 03 Nov 2001 12:15:52 -0800 In-Reply-To: <20011102232955.W1449-100000@howie.ncptiddische.net> Message-ID: Lines: 25 User-Agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.1 (Cuyahoga Valley) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Nils Holland writes: > On Fri, 2 Nov 2001, David Kelly wrote: > > > The problem with this method is (I've noticed) some CD drives report > > That problem (at least I guess that it's that problem) has occured here in The problem I noticed was that the data that comes off the CD is a bit bigger than the HD file it originated from. Tests showed no diff between them if you ignore the extra stuff at the end of the CD data. Creative use of "dd" (or maybe "cut") should help. For untarring from multiple CD, you might need do something like this: ( dd if=/dev/cdrw bs=2k count= echo -n "switch CDs and press Enter" 1>&2 read XXX dd if=/dev/cdrw bs=2k count= ) | tar tzf - But maybe tar's multiple-volume stuff wouldn't like that either, so you'll either have to determine what it does like or write your own multi-volume stuff. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message