From owner-freebsd-stable Fri Apr 28 17:47:36 2000 Delivered-To: freebsd-stable@freebsd.org Received: from alcanet.com.au (mail.alcanet.com.au [203.62.196.10]) by hub.freebsd.org (Postfix) with ESMTP id BFD9E37BFE8 for ; Fri, 28 Apr 2000 17:47:32 -0700 (PDT) (envelope-from jeremyp@gsmx07.alcatel.com.au) Received: by border.alcanet.com.au id <115210>; Sat, 29 Apr 2000 10:47:53 +1000 From: Peter Jeremy Subject: Re: removed files In-reply-to: ; from domi@saargate.de on Tue, Apr 25, 2000 at 11:57:17PM +1000 To: Dominik Brettnacher Cc: stable@FreeBSD.ORG Message-Id: <00Apr29.104753est.115210@border.alcanet.com.au> MIME-version: 1.0 X-Mailer: Mutt 1.0i Content-type: text/plain; charset=us-ascii References: Date: Sat, 29 Apr 2000 10:47:52 +1000 Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Tue, Apr 25, 2000 at 11:57:17PM +1000, Dominik Brettnacher wrote: >is there a list available that contains all files/programs which were >removed from FreeBSD? AFAIK, there isn't in this form. You could go through the CVS commit logs looking at what was deleted, but that is probably fairly time consuming. One alternative is "find -x / /usr /var -mtime +N", where N is the number of days since your last installworld. This falls down in /usr/include (where identical files are not updated). Another option (if you've got a recent CD-ROM) is to mount the live filesystem and compare the contents: find -x / /usr /var | sort -o /tmp/myfiles find /cdrom | sort -o /tmp/newfiles diff /tmp/myfiles /tmp/newfiles Peter To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message