From owner-freebsd-questions@FreeBSD.ORG Mon Jun 14 19:41:15 2004 Return-Path: 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 517F516A4CE for ; Mon, 14 Jun 2004 19:41:15 +0000 (GMT) Received: from main.gmane.org (main.gmane.org [80.91.224.249]) by mx1.FreeBSD.org (Postfix) with ESMTP id 84FCF43D5E for ; Mon, 14 Jun 2004 19:41:14 +0000 (GMT) (envelope-from freebsd-questions@m.gmane.org) Received: from root by main.gmane.org with local (Exim 3.35 #1 (Debian)) id 1BZxKA-0004p1-00 for ; Mon, 14 Jun 2004 21:40:54 +0200 Received: from 64.83.41.70.dsl70-bus-nova.cavtel.net ([64.83.41.70]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 14 Jun 2004 21:40:54 +0200 Received: from reed by 64.83.41.70.dsl70-bus-nova.cavtel.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 14 Jun 2004 21:40:54 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-questions@freebsd.org From: "Reed L. O'Brien" Date: Mon, 14 Jun 2004 15:37:33 -0400 Lines: 25 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: 64.83.41.70.dsl70-bus-nova.cavtel.net User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.4) Gecko/20030915 X-Accept-Language: en-us, en Sender: news Subject: incremental tar question X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Jun 2004 19:41:15 -0000 FreeBSD 5.2.1 I am using the folowing to backup saturday tar -jcf etc.bz2 /etc /usr/local/etc in /bak/saturday. I would like to do an incremental on monday (et al) in /bak/monday (et al) tar -cf etc.bz2 /etc/ /usr/local/etc/ -g /bak/saturday/etc.bz2 Is this the correct format? I cannot get it to work. I can get it to leave a big enough bz2 file in /bak/monday but I can't untar it. though I can the initial full backup from saturday. Do I need to copy the bz2 archive to /bak/monday? Do I need a different command? Does -g not support bzip2? ideas? FreeBSD 5.2.1 TIA reed