From owner-freebsd-hackers Fri Mar 28 20:14:42 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id UAA04504 for hackers-outgoing; Fri, 28 Mar 1997 20:14:42 -0800 (PST) Received: from cheops.anu.edu.au (avalon@cheops.anu.edu.au [150.203.76.24]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id UAA04491 for ; Fri, 28 Mar 1997 20:14:35 -0800 (PST) Message-Id: <199703290414.UAA04491@freefall.freebsd.org> Received: by cheops.anu.edu.au (1.37.109.16/16.2) id AA207428569; Sat, 29 Mar 1997 15:09:29 +1100 From: Darren Reed Subject: Re: Dilemma. how to store DOS directories ? To: mouse@Rodents.Montreal.QC.CA (der Mouse) Date: Sat, 29 Mar 1997 15:09:28 +1100 (EDT) Cc: cgd@cs.cmu.edu, darrenr@cyber.com.au, hackers@FreeBSD.org, port-i386@netbsd.org In-Reply-To: <199703281337.IAA13593@Twig.Rodents.Montreal.QC.CA> from "der Mouse" at Mar 28, 97 08:37:19 am X-Mailer: ELM [version 2.4 PL23] Content-Type: text Sender: owner-hackers@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk In some mail from der Mouse, sie said: > > >>> Given that the various FAT formats aren't really related, it seems > >>> like a bad idea to try to wedge them into normal 'restore' (or > >>> 'dump,' for that matter). > >> I wonder if gtar's facilities for doing incremental dumps aren't > >> more suitable to dumping FAT file systems than dump is... > > > I'm deliberately avoiding tar/cpio for the following reasons: > > > * each writes individual files to tape (less efficient on some tape > > media, not to mention slower) > > I have no clue what you're talking about here, at least with respect to > tar. A tar tape is a stream of 512-byte blocks, reblocked depending on > the blocking factor, typically reblocked to 10K blocks. This is true > regardless of where file boundaries fall. EOF markers being written to the tape, the lack of indexing and the resulting "awkwardness" of its use. If I recall correctly, on exabyte, EOF markers are "1MB" in size (although newer tape formats aren't quite so braindead). So more files on the tape means less space for real data. When ypu're backing up in excess of 100,000 files onto the one tape, it makes a difference. Darren