From owner-freebsd-questions@FreeBSD.ORG Tue Jun 10 21:20:53 2003 Return-Path: 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 0BC9337B401 for ; Tue, 10 Jun 2003 21:20:53 -0700 (PDT) Received: from everest.cs.du.edu (everest.cs.du.edu [130.253.191.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F20543FBD for ; Tue, 10 Jun 2003 21:20:52 -0700 (PDT) (envelope-from ifetch@cs.du.edu) Received: from mail.cs.du.edu (mail.cs.du.edu [130.253.191.12]) by everest.cs.du.edu (8.12.8+Sun/8.12.2) with ESMTP id h5B4KIQ2001237 for ; Tue, 10 Jun 2003 22:20:19 -0600 (MDT) Date: Tue, 10 Jun 2003 22:20:18 -0600 (MDT) From: Ivan Fetch To: freebsd-questions@freebsd.org Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-MailScanner: clean Subject: Modifying FreeBSD base? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jun 2003 04:20:53 -0000 Hello, I'd like to modify the FreeBSD "base" (e.g. make changes to configuration files) - is there a way to do this without make world and creating my own distribution (the changes are simple enough I'd like to be able to role them into a modified base for now). It seemd like I could do the following: 1. cat base.?? > /tmp/filename.tar.gz 2. cd /tmp; mkdir base; tar -C base -xpzf ../base.tar.gz 3. Edit which ever files, and recreate a new base.tar.gz 4. use split(1) to split the tar.gz file up again 5. Recreate the CHECKSUM.MD5 file with lines for each base.?? file of the form: MD5 (base.aa) = md5_of_file Unfortunately the install complains about not being able to read the base distributions (doing an FTP install). What am I missing? Somewhere there's something else which appears to be telling the install it should expect a certain number of split base.?? files (I end up with a larger number of these, and can not seem to get split to let me create the same number as originally existed in). Thanks, Ivan Fetch.