From owner-freebsd-questions@FreeBSD.ORG Tue Jun 7 16:09:37 2005 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2825C16A41C for ; Tue, 7 Jun 2005 16:09:37 +0000 (GMT) (envelope-from kpielorz@tdx.co.uk) Received: from outmail128153.authsmtp.com (outmail128153.authsmtp.com [62.13.128.153]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB38F43D5D for ; Tue, 7 Jun 2005 16:09:36 +0000 (GMT) (envelope-from kpielorz@tdx.co.uk) Received: from dog.dmpriest.net.uk (kpielorz.dmpriest.net.uk [62.13.130.13]) by punt-mx0.dmpriest.net.uk (8.12.11/8.12.11/Kp) with ESMTP id j57G9X5a053154; Tue, 7 Jun 2005 17:09:33 +0100 (BST) Date: Tue, 07 Jun 2005 17:11:10 +0100 From: Karl Pielorz To: Cody Holland , freebsd-questions@freebsd.org Message-ID: <4E42847D5D89835606B85A0B@dog.dmpriest.net.uk> In-Reply-To: <4B3EE484EEA4F344BBB62F831648998628D909@corpsrv.RedMoon.local> References: <4B3EE484EEA4F344BBB62F831648998628D909@corpsrv.RedMoon.local> X-Mailer: Mulberry/4.0.0 (Win32) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Cc: Subject: Re: Backup Question X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Karl Pielorz List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Jun 2005 16:09:37 -0000 --On 07 June 2005 11:02 -0500 Cody Holland wrote: > Ok, I'm trying to do a simple tar+gzip backup for my file system. I can > do this no problem. The backup is a little less than 2Gb. What I would > like to do is chop this up into 650Mb pieces that I can ftp over to a > server with a cd-r and burn them. Does anyone know a good utility that > can do this, or another method that will accomplish what I'm trying to > do? split -b (see the man page) - or I think tar has an option to define both the 'size of the tape' (in 1k blocks) and a script to run 'between tape changes' - so you should be able to sort something out with that... -Karl