From owner-freebsd-questions@FreeBSD.ORG Wed Aug 29 15:01:50 2007 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 652B216A41A for ; Wed, 29 Aug 2007 15:01:50 +0000 (UTC) (envelope-from freminlins@gmail.com) Received: from wa-out-1112.google.com (wa-out-1112.google.com [209.85.146.180]) by mx1.freebsd.org (Postfix) with ESMTP id 360B613C458 for ; Wed, 29 Aug 2007 15:01:49 +0000 (UTC) (envelope-from freminlins@gmail.com) Received: by wa-out-1112.google.com with SMTP id k17so225097waf for ; Wed, 29 Aug 2007 08:01:49 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:references; b=gFO6EPai8sFXuclvQc54V8HyOzDKgtc2g1L3mfllBsU1Sxo0Mi0SvoX7Rto/EUTpV34ZdpRNekaHJFRX2/RePXnai2WNfraXkTQY9fXzfxPv+1QTJvrd8MRlQPgsn0zPQZ//QpGRmJBWLLyrwNyjTtItH6dNUz8lqUWWIWwKXQg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:references; b=djyA0yQ9D3UUxu9GaTNTNpsOELiLyakdbnk1S7GneeMGCAPP++eX3ayyVNjK/12vNy56bl6W2KhmLzL2oW7x/STPk2U2IAnYV+CrZPgF2eTszBHacoceRGHc20UXLARfZTGV6F0auwbpU9MTQqU11nXKdjyvvPHw2htXpXdla2o= Received: by 10.114.14.1 with SMTP id 1mr1551wan.1188398201892; Wed, 29 Aug 2007 07:36:41 -0700 (PDT) Received: by 10.114.146.15 with HTTP; Wed, 29 Aug 2007 07:36:41 -0700 (PDT) Message-ID: Date: Wed, 29 Aug 2007 15:36:41 +0100 From: Freminlins To: "Wojciech Puchar" In-Reply-To: <20070829153832.I13181@wojtek.tensor.gdynia.pl> MIME-Version: 1.0 References: <20070829153832.I13181@wojtek.tensor.gdynia.pl> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-questions@freebsd.org, Lisandro Grullon Subject: Re: How to use dump? 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: Wed, 29 Aug 2007 15:01:50 -0000 Hi, On 29/08/2007, Wojciech Puchar wrote: > > dump doesn't copy files to files, but files to raw device (partition, > tape, DVD) or to one/few big files. Dump is used to back up a file system and can write that data to a file. It doesn't have to write to a raw device. To dump /home to /backup, do something like "dump 0auf /backup/home.dump /home". Frem.