From owner-freebsd-questions Thu Apr 25 07:59:31 1996 Return-Path: owner-questions Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id HAA14857 for questions-outgoing; Thu, 25 Apr 1996 07:59:31 -0700 (PDT) Received: from lenzi ([200.247.248.103]) by freefall.freebsd.org (8.7.3/8.7.3) with SMTP id HAA14838 for ; Thu, 25 Apr 1996 07:59:23 -0700 (PDT) Received: (from lenzi@localhost) by lenzi (8.6.12/8.6.12) id LAA02044; Thu, 25 Apr 1996 11:37:15 -0300 Date: Thu, 25 Apr 1996 11:37:14 -0300 (EST) From: "Lenzi, Sergio" X-Sender: lenzi@lenzi To: "Jeffrey M. Metcalf" cc: questions@FreeBSD.org Subject: Re: Archiving In-Reply-To: <9604242020.AA20068@ruddles.stat.uconn.edu> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-questions@FreeBSD.org X-Loop: FreeBSD.org Precedence: bulk On Wed, 24 Apr 1996, Jeffrey M. Metcalf wrote: > > Hi, > > I was wondering if there is a program available on FreeBSD that can > split a large binary file into smaller pieces which can be reassembled > at a later date. My only backup storage media right now are 1.44MB > floppies and I have a tar-gzipped file that cannot be repacked into > smaller pieces to fit on a floppy. > Yes use the tar with -L 1400 -M ex: tar -L 1400 -M -cvf /dev/rfd0 file file ... note that cannot create gzip tar files this way. You can create a gz file and after put in the diskettes using tar -L -M again.