From owner-freebsd-questions Sun Oct 17 11:46:55 1999 Delivered-To: freebsd-questions@freebsd.org Received: from proxy4.ba.best.com (proxy4.ba.best.com [206.184.139.15]) by hub.freebsd.org (Postfix) with ESMTP id 4A194150B9 for ; Sun, 17 Oct 1999 11:46:48 -0700 (PDT) (envelope-from GregoryC@stcinc.com) Received: from stcinc.com (gw-covad768k-cognitivetech.ncal.verio.com [207.20.238.29] (may be forged)) by proxy4.ba.best.com (8.9.3/8.9.2/best.out) with ESMTP id LAA03240 for ; Sun, 17 Oct 1999 11:45:15 -0700 (PDT) Message-ID: <380A1E76.F5E343FC@stcinc.com> Date: Sun, 17 Oct 1999 12:07:34 -0700 From: Gregory Carvalho Reply-To: GregoryC@stcinc.com Organization: Simplified Technology Company X-Mailer: Mozilla 4.51 [en] (X11; I; FreeBSD 3.2-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: FreeBSD Questions Subject: Difficulty with dump(8) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG I have created the following script, and I am executing it on FreeBSD 3.2R with a HP DDS3 tape drive. It is not creating a volume for each of the file systems on a single DDS3 cartridge, which I desire it to do. #!/usr/local/bin/bash mt -f /dev/rsa0 erase 0 for filesys in / /var /usr do dump -0au -f /dev/rsa0 $filesys done mt -f /dev/rsa0 offline Yesterday, I issued: dump -0au -f /dev/rsa0 / dump -0au -f /dev/rsa0 /var as a test, and it created two volumes on tape. "mt -f /dev/rsa0 fsf 1" displayed /var and "mt -f /dev/rsa0 bsf 1" display /. My intent is to dump everything in the file system on every archive process, successively archiving every file system. I would appreciate direction on how to achieve this process. Cordially, Gregory Carvalho GregoryC@stcinc.com Simplified Technology Company http://www.stcinc.com In God I Trust! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message