From owner-freebsd-questions@FreeBSD.ORG Fri Apr 4 18:20:14 2008 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 149BA1065683 for ; Fri, 4 Apr 2008 18:20:14 +0000 (UTC) (envelope-from cthala@gmail.com) Received: from wa-out-1112.google.com (wa-out-1112.google.com [209.85.146.177]) by mx1.freebsd.org (Postfix) with ESMTP id DC7BC8FC13 for ; Fri, 4 Apr 2008 18:20:13 +0000 (UTC) (envelope-from cthala@gmail.com) Received: by wa-out-1112.google.com with SMTP id k17so122389waf.3 for ; Fri, 04 Apr 2008 11:20:13 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; bh=fZGq7AXp+QhJ7eIDQbRRWAMBD3oLQtSzBy7tMzKiFhA=; b=ViDgftJZGWZ4AmfWbnmKq/VKCTUsn9vEDX0Br9xUHNz+JEFz7e3fT+j/gKfJnUto6ShBwJkv6E/BqlfG/Y/oLRHCfxx+qP1eKeDNVFauopo1+ZlFf+7t4EXR+bERJ4LlBF2zFoXmBElnwPLeLcJK/FlExEeoqAR/UbtBOLWfCvo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=c5C8ogQM36UhgQPWFetSUQoOpiWrQzKjeyb8M0uJIh2b8BY/VKyY8VnF16qQgpDEhDKDtqiBT1dSLUzMTnn3BFSLKeoniL5KMI82EB0igxROhjpRC8gr4h7aWap3QGjEvVLkB4DUBDAblUG6eWdgOE7tSL/UHHNXqMSof6OzWkk= Received: by 10.115.79.1 with SMTP id g1mr2544145wal.43.1207333213445; Fri, 04 Apr 2008 11:20:13 -0700 (PDT) Received: by 10.115.60.15 with HTTP; Fri, 4 Apr 2008 11:20:13 -0700 (PDT) Message-ID: <77647f500804041120veb5fa52t34e3b7ab1854bd61@mail.gmail.com> Date: Fri, 4 Apr 2008 14:20:13 -0400 From: "C Thala" To: freebsd MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: restore various level dump files 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: Fri, 04 Apr 2008 18:20:14 -0000 If i have 3 dump(1)-files from a filesystem and restore them via restore -i -f dump-file, how do I layer them together? That is, how do I tell restore that I want to restore a level 0, 1, and 2? Do I run "restore -i -f dump-0" and then "restore -i -f dump-1" and then "restore -i -f dump-2" in that order? Is there some way I can tell restore that more than one level is available? "restore -i -f dump-0 -f dump-1 -f dump-2" doesn't work. If I restore a level 0 and then a level 1, will the level 1 delete files that were removed when the level 1 was taking (like rsync -a --delete) or do I get a bunch of stale files lying around?