From owner-freebsd-questions@FreeBSD.ORG Sun Oct 23 15:32:05 2011 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 20F15106564A for ; Sun, 23 Oct 2011 15:32:05 +0000 (UTC) (envelope-from wblock@wonkity.com) Received: from wonkity.com (wonkity.com [67.158.26.137]) by mx1.freebsd.org (Postfix) with ESMTP id D05C88FC13 for ; Sun, 23 Oct 2011 15:32:04 +0000 (UTC) Received: from wonkity.com (localhost [127.0.0.1]) by wonkity.com (8.14.5/8.14.5) with ESMTP id p9NFW3k6050312; Sun, 23 Oct 2011 09:32:03 -0600 (MDT) (envelope-from wblock@wonkity.com) Received: from localhost (wblock@localhost) by wonkity.com (8.14.5/8.14.5/Submit) with ESMTP id p9NFW3qP050309; Sun, 23 Oct 2011 09:32:03 -0600 (MDT) (envelope-from wblock@wonkity.com) Date: Sun, 23 Oct 2011 09:32:03 -0600 (MDT) From: Warren Block To: Bill Tillman In-Reply-To: <1319375054.79311.YahooMailNeo@web36507.mail.mud.yahoo.com> Message-ID: References: <000001cc90c0$a0c16050$e24420f0$@org> <4EA2CE72.5030202@cran.org.uk> <20111022161242.11803f76.freebsd@edvax.de> <4EA31702.7080406@locolomo.org> <1319375054.79311.YahooMailNeo@web36507.mail.mud.yahoo.com> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.2.7 (wonkity.com [127.0.0.1]); Sun, 23 Oct 2011 09:32:04 -0600 (MDT) Cc: "freebsd-questions@freebsd.org" Subject: Re: Need to Backup Using 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: Sun, 23 Oct 2011 15:32:05 -0000 On Sun, 23 Oct 2011, Bill Tillman wrote: > I have two FreeBSD 8.2-STABLE servers running NFS. I have tons of files on Server A that I want to backup to a big drive on Sever B. Server B nfs_mounts one of the filesystems on Server A to /mnt. So if I wanted to make a backup of the filesytem on Server A to Server B I tried: > > dump -d /home/my_home/backups/20111024 /mnt > > but each time I try this it tells me that filesystem /mnt is unknown. /mnt is not in /etc/fstab. I manually mounted this via NFS and that's where all the files I want to backup are accessible to the command line on Server B. What am I missing? dump(8) works on entire filesystems. To copy directories, consider rsync. To copy directories but put them into archives, there's tar and numerous others.