From owner-freebsd-questions@FreeBSD.ORG Fri Aug 6 13:07:27 2010 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A5B8B1065679 for ; Fri, 6 Aug 2010 13:07:27 +0000 (UTC) (envelope-from xwo41js4biip5op@jetable.org) Received: from soleil.uvsq.fr (soleil.ipv6.uvsq.fr [IPv6:2001:660:300f::1]) by mx1.freebsd.org (Postfix) with ESMTP id 5FAB58FC1D for ; Fri, 6 Aug 2010 13:07:27 +0000 (UTC) Received: from lune.uvsq.fr (root@lune.uvsq.fr [193.51.33.28]) by soleil.uvsq.fr (8.14.1/jtpda-5.4) with ESMTP id o76D7LI4029504 for ; Fri, 6 Aug 2010 15:07:21 +0200 (CEST) X-Virus-Status: Clean X-Virus-Scanned: clamav-milter 0.95.3 at soleil.uvsq.fr Received: from [193.51.24.101] (chevalet2.csi.uvsq.fr [193.51.24.101]) by lune.uvsq.fr (8.14.2/jtpda-5.4) with ESMTP id o76D7KYx098374 for ; Fri, 6 Aug 2010 15:07:20 +0200 (CEST) Message-ID: <4C5C08DD.2000601@jetable.org> Date: Fri, 06 Aug 2010 15:06:37 +0200 From: thc User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.9.2.4) Gecko/20100608 Thunderbird/3.1 MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: clamav-milter 0.95.3 at lune.uvsq.fr X-Virus-Status: Clean X-Miltered: at soleil.uvsq.fr with ID 4C5C0909.000 by Joe's j-chkmail (http : // j-chkmail dot ensmp dot fr)! X-j-chkmail-Score: MSGID : 4C5C0909.000 on soleil.uvsq.fr : j-chkmail score : . : R=. U=. O=. B=0.000 -> S=0.000 X-j-chkmail-Status: Ham X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-3.0 (soleil.uvsq.fr [193.51.24.1]); Fri, 06 Aug 2010 15:07:21 +0200 (CEST) X-Spam-Status: No, score=-1.4 required=5.0 tests=AWL, BAYES_00, J_CHICKENPOX_25, SPF_SOFTFAIL autolearn=no version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on soleil.uvsq.fr Subject: installworld via NFS with FreeBSD 8 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Aug 2010 13:07:27 -0000 Hello I have a concern with the deployment of FreeBSD 8.1. I usually compile on a server and deploy the result by NFS. It works fine with FreeBSD 6 and 7, but curiously, I just can not get the same result with FreeBSD 8.1 (or with 8.0). Here is the df of the source: Filesystem 1K-blocks Used Avail Capacity Mounted on ... /dev/da0s1f 10,655,968 3,410,840 6,392,652 35% / exports ... :/export/src 12681998 5436870 6392652 46% /usr/src :/exports/obj 12681998 5436870 6392652 46% /usr/obj :/export/ports 12681998 5436870 6392652 46% /usr/ports The partitions are mounted via rc.local via /sbin/mount-t unionfs /export/src /usr/src Here is my exports file: /exports -alldirs -maproot=root -network 192.168.40.0 -mask 255.255.255.0 The file /etc/make.conf on both servers is empty. Server and client are ntp synchronised. Here is the excerpt from fstab on the client: srcf8: /exports/obj /usr/obj nfs rw 0 0 srcf8: /export/src /usr/src nfs rw 0 0 The client is first installed with the CD-ROM with minimal version. I've tested a with an All install from CDROM, and got the same problem I copied the file /usr/src/share/info/dir-tmpl missing on the client, but it is not enough. The command make ends installworld make: do not know how to make audit_uevents.h. Stop *** Error code 2 Stop in / usr / src / lib. *** Error code 1 Stop in / usr / src. *** Error code 1 Stop in / usr / src. *** Error code 1 Stop in / usr / src. *** Error code 1 Stop in / usr / src. Does someone how to correct this trouble? Thanks.