From owner-freebsd-questions@FreeBSD.ORG Tue Apr 22 18:30:28 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 7E12D37B401 for ; Tue, 22 Apr 2003 18:30:28 -0700 (PDT) Received: from pop016.verizon.net (pop016pub.verizon.net [206.46.170.173]) by mx1.FreeBSD.org (Postfix) with ESMTP id ADBDE43F3F for ; Tue, 22 Apr 2003 18:30:27 -0700 (PDT) (envelope-from cswiger@mac.com) Received: from mac.com ([151.205.188.169]) by pop016.verizon.net (InterMail vM.5.01.05.33 201-253-122-126-133-20030313) with ESMTP id <20030423013027.JZZU3199.pop016.verizon.net@mac.com>; Tue, 22 Apr 2003 20:30:27 -0500 Message-ID: <3EA5ECAE.5030509@mac.com> Date: Tue, 22 Apr 2003 21:30:22 -0400 From: Chuck Swiger Organization: The Courts of Chaos User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.4a) Gecko/20030401 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-questions@freebsd.org References: <20030423010932.GA869@mail.hitmedia.com> In-Reply-To: <20030423010932.GA869@mail.hitmedia.com> X-Enigmail-Version: 0.74.1.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Authentication-Info: Submitted using SMTP AUTH at pop016.verizon.net from [151.205.188.169] at Tue, 22 Apr 2003 20:30:26 -0500 cc: BSD baby Subject: Re: setting up many FreeBSD boxes at once... advice? 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, 23 Apr 2003 01:30:28 -0000 BSD baby wrote: > I'm going to be setting up 6 identical FreeBSD boxes at the same time. > (Workstation boxes inside our office.) > > Each one with the exact same setup. Same ports installed, etc. > > Anyone whose done this before have any advice? Sure. You should consider one machine (ie, perhaps the one you use) as a build and test system. Build that out to 4.7p10 or 4.8/STABLE via cvsup; build and install the ports that you want. > Should I put /usr/ports on one NFS share so I don't have to keep > cvsuping the directories or downloading the source files? Certainly that would work. You can also do a "make package" and scp or otherwise copy the .tgz file, which can be added via pkg_add. > Actually... if the boxes are identical is there any harm in doing > a permanent NFS for the whole /usr partition? All sharing one /usr? People used to do this a lot when disk space was really expensive; it's one of the main reasons why a /usr partition exists. That being said, disk space is very very cheap nowadays, and FreeBSD is efficient in terms of "software content per MB of OS install space", however one wants to measure or guestimate that for one's situation. The main downside of using NFS sharing is that client machines tend to block hard if the NFS server goes down (not so good for a machine that might also be used as your test machine), and the security of NFS against a local intruder is effectively zero; make sure you have a firewall in place and block portmapper. Most probably, the risk of downtime isn't going to be worth $50 or whatever of disk storage that having each system be capable of booting without the network requires. -- -Chuck