From owner-freebsd-questions@FreeBSD.ORG Thu May 17 16:03:23 2012 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 82E8A1065672; Thu, 17 May 2012 16:03:23 +0000 (UTC) (envelope-from matthias@d2ux.net) Received: from h1907788.stratoserver.net (h1907788.stratoserver.net [85.214.252.129]) by mx1.freebsd.org (Postfix) with ESMTP id 3CD898FC17; Thu, 17 May 2012 16:03:23 +0000 (UTC) Received: from localhost (localhost.localdomain [127.0.0.1]) by h1907788.stratoserver.net (Postfix) with ESMTP id 7FA3339ED13B; Thu, 17 May 2012 18:03:21 +0200 (CEST) Received: from h1907788.stratoserver.net ([127.0.0.1]) by localhost (h1907788.stratoserver.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id w+Ux+VFvICrj; Thu, 17 May 2012 18:03:20 +0200 (CEST) Received: from [192.168.2.107] (p579D3936.dip.t-dialin.net [87.157.57.54]) by h1907788.stratoserver.net (Postfix) with ESMTP id CC76039ED207; Thu, 17 May 2012 18:03:20 +0200 (CEST) Message-ID: <4FB5214E.6010106@d2ux.net> Date: Thu, 17 May 2012 18:03:26 +0200 From: Matthias Petermann User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:9.0) Gecko/20111228 Thunderbird/9.0 MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <4FB4D7AB.9030200@d2ux.net> <201205171252.04519.jmc-freebsd2@milibyte.co.uk> In-Reply-To: <201205171252.04519.jmc-freebsd2@milibyte.co.uk> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Mike Clarke , matthew@FreeBSD.org Subject: Re: Filesystem dump incremental? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 May 2012 16:03:23 -0000 Thanks Mike and Matthew, the -u switch was what I missed. It now works fine. Regards, Matthias On 17.05.2012 13:52, Mike Clarke wrote: > On Thursday 17 May 2012, Matthias Petermann wrote: > >> dump -a -1 -f /mnt/da0/backup-compaq.1.dump / > Try a new full backup with > > dump -0aLuf /mnt/da0/backup-compaq.1.dump / > > then for the incremental use > > dump -1aLuf /mnt/da0/backup-compaq.1.dump / > > The option you're missing is "u", but "L" is worth using as well when > you're backing up a mounted filesystem. > > You could hack the contents of /etc/dumpdates to avoid having to repeat > the level zero dump if you know the date and time when the original one > was started. >