From owner-freebsd-questions Fri May 25 7:53: 1 2001 Delivered-To: freebsd-questions@freebsd.org Received: from clmboh1-smtp3.columbus.rr.com (clmboh1-smtp3.columbus.rr.com [65.24.0.112]) by hub.freebsd.org (Postfix) with ESMTP id DCB5F37B42C for ; Fri, 25 May 2001 07:52:57 -0700 (PDT) (envelope-from wmoran@iowna.com) Received: from iowna.com (dhcp065-024-023-038.columbus.rr.com [65.24.23.38]) by clmboh1-smtp3.columbus.rr.com (8.11.2/8.11.2) with ESMTP id f4PEnVk25841; Fri, 25 May 2001 10:49:31 -0400 (EDT) Message-ID: <3B0E716B.65A35D10@iowna.com> Date: Fri, 25 May 2001 10:51:23 -0400 From: Bill Moran X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 4.3-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: Cary Cc: freebsd-questions Subject: Re: dump is giving me errors References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Cary wrote: > > I'm attempting to back up my home directory with dump, but I keep getting > the same error: > # /sbin/dump -0u -f /usr/home/dump /usr/home/cary > DUMP: Date of this level 0 dump: Fri May 25 09:35:21 2001 > DUMP: Date of last level 0 dump: the epoch > DUMP: Dumping /usr/home/cary to /usr/home/dump > DUMP: bad sblock magic number > DUMP: The ENTIRE dump is aborted. > # > /usr/home/dump is a file (though I have also tried dumping to a dir). I > was able to start dumping the / filesystem to standard output as a test, > and it worked. But no matter what options I've tried, I get the same error > as above. I've read the man page, but I don't know enough to know what > applies and doesn't apply when dumping to a HD or filesystem rather than a > tape drive. Any help that could be rendered would be appreciated. What's your partition layout? dump(8) can only dump "filesystems" (i.e. entire partitions) If /usr/home/cary isn't a seperate partition, you'll get that error. If you just want to back up just part of a partition, tar(1) is probably a better choice. (it even provides compression) tar czf /usr/home/cary.tgz /usr/home/cary Or dump(8) the entire partition. (use df(1) to see your partition layout, or mount(8)) -Bill To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message