From owner-freebsd-questions Sun Dec 8 15:41:57 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 960A837B401 for ; Sun, 8 Dec 2002 15:41:56 -0800 (PST) Received: from rwcrmhc53.attbi.com (rwcrmhc53.attbi.com [204.127.198.39]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0DBC843E4A for ; Sun, 8 Dec 2002 15:41:56 -0800 (PST) (envelope-from freebsd-questions-local@be-well.no-ip.com) Received: from be-well.ilk.org (lowellg.ne.client2.attbi.com[24.147.188.198]) by rwcrmhc53.attbi.com (rwcrmhc53) with ESMTP id <20021208234155053003pt6ie>; Sun, 8 Dec 2002 23:41:55 +0000 Received: from be-well.ilk.org (lowellg.ne.client2.attbi.com [24.147.188.198] (may be forged)) by be-well.ilk.org (8.12.6/8.12.6) with ESMTP id gB8Nfr7v036714; Sun, 8 Dec 2002 18:41:53 -0500 (EST) (envelope-from freebsd-questions-local@be-well.no-ip.com) Received: (from lowell@localhost) by be-well.ilk.org (8.12.6/8.12.6/Submit) id gB8NfqTl036711; Sun, 8 Dec 2002 18:41:52 -0500 (EST) X-Authentication-Warning: be-well.ilk.org: lowell set sender to freebsd-questions-local@be-well.ilk.org using -f To: mike Cc: Subject: Re: Silly cvsup question. References: <3846.192.168.1.10.1039287347.squirrel@email.unixhideout.com> From: Lowell Gilbert Date: 08 Dec 2002 18:41:52 -0500 In-Reply-To: <3846.192.168.1.10.1039287347.squirrel@email.unixhideout.com> Message-ID: <44k7ik5b9b.fsf@be-well.ilk.org> Lines: 22 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii 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 mike writes: > Hello. i use cvsup to backup certain critical folders on the machine labs, > to the machine labs2 automatically every night. My question is this. If i > add new stuff to say, /home/mike (or wherever) then that gets mirrored at > night and everything does its job as i want it to. However, if i DELETE > something from /home/mike (or whereever) It never gets deleted from labs2. > So its not "synching" correctly. For example i just went to zip -r > cvsup-backup cvsup-backup on labs2, so i can pull it to XP and burn it, > and i realized it had my library still in there which i deleted months > ago. cvsup isn't going to be very good at tracking which files have been deleted on the original, unless you are pulling from a cvs repository (that's where it keeps information on directory contents). Otherwise, it won't know whether a file has been deleted from the original machine, or is a local modification on the duplicate. Given that you're not using cvs, you'd probably do better with rsync for this job. You could also use other tools that can keep metadata, like dump(8) or even use the incremental facilities of Gnu tar. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message