From owner-freebsd-stable Tue Feb 6 15:14:34 2001 Delivered-To: freebsd-stable@freebsd.org Received: from illustrious.cnchost.com (illustrious.concentric.net [207.155.252.7]) by hub.freebsd.org (Postfix) with ESMTP id EBE7C37B65D for ; Tue, 6 Feb 2001 15:14:04 -0800 (PST) Received: from auvo.com (4032268D.ptr.dia.nextlink.net [64.50.38.141]) by illustrious.cnchost.com id SAA28965; Tue, 6 Feb 2001 18:14:04 -0500 (EST) [ConcentricHost SMTP Relay 1.10] Message-ID: <3A808528.C51E4FBF@auvo.com> Date: Tue, 06 Feb 2001 17:13:44 -0600 From: Mike Bytnar Reply-To: mbytnar@auvo.com Organization: Auvo X-Mailer: Mozilla 4.74 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: FreeBSD Subject: 'make installworld' fails over NFS mount Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG 'make installworld' fails over an NFS mount, but executes correctly on the machine that executed 'make buildworld'. Anyone else encounter this problem? Here are the steps I followed for the host machine "eng": 1. update to the latest STABLE source tree from CVS. 2. build the world eng# cd /usr/src/ eng# make buildworld buildworld successfully completes with the last line shown: chmod 444 freebsd.cf 4. now, add the below line to /etc/exports: /usr -alldirs -maproot=0 5. now, start NFS services, as outlined in the FreeBSD Handbook with: eng# portmap eng# nfsd -u -t -n 4 eng# mountd -r (NFS services should now be running on the host machine, opening /usr for world write-able and readable priviledges on all directories.) From the client machine "bridge": 1. start the NFS client with: bridge# nfsiod -n 4 2. create a node for the NFS mount point: bridge# mkdir /usr2 3. mount the remote /usr directory to /usr2 bridge# mount eng:/usr /usr2 4. execute installworld with: bridge# cd /usr2/src log output & errors to /inst-out bridge# make installworld >& /inst-out The problem occurs right after the RPC subproject. The logged output shows: install -C -o root -g wheel -m 444 /usr2/src/include/osreldate.h /usr/include/ install: /usr2/src/include/osreldate.h: No such file or directory *** Error code 71 Stop in /usr2/src/include. *** Error code 1 Stop in /usr2/src. *** Error code 1 Stop in /usr2/src. *** Error code 1 Stop in /usr2/src. *** Error code 1 Stop in /usr2/src. bridge# Is there a workaround for this problem? Thanks, --Mike To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message