From owner-freebsd-stable Wed Apr 19 9:14:47 2000 Delivered-To: freebsd-stable@freebsd.org Received: from privatecube.privatelabs.com (privatecube.privatelabs.com [198.143.31.30]) by hub.freebsd.org (Postfix) with ESMTP id E867437B551 for ; Wed, 19 Apr 2000 09:14:38 -0700 (PDT) (envelope-from mi@privatelabs.com) Received: from misha.privatelabs.com (root@misha.privatelabs.com [198.143.31.6]) by privatecube.privatelabs.com (8.9.2/8.9.2) with ESMTP id LAA27045 for ; Wed, 19 Apr 2000 11:13:52 -0400 (EDT) Received: (from mi@localhost) by misha.privatelabs.com (8.9.3/8.9.3) id MAA78615 for stable@freebsd.org; Wed, 19 Apr 2000 12:14:15 -0400 (EDT) (envelope-from mi) From: Mikhail Teterin Message-Id: <200004191614.MAA78615@misha.privatelabs.com> Subject: second installworld fails To: stable@freebsd.org Date: Wed, 19 Apr 2000 12:14:13 -0400 (EDT) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Hi! I tried to installworld over NFS after a buildworld on one machine. Regretfully, mounting /usr/obj and /usr/src read-only is not an option -- some processing is happening at the install stage... And mounting read-write causes errors. I fixed one of them, caused by ln trying to make an already existing link: --- lib/libncurses/Makefile Thu Mar 2 03:23:23 2000 +++ lib/libncurses/Makefile Wed Apr 19 11:37:45 2000 @@ -390,4 +390,5 @@ all-man: ${page:T:S/3x$/3/g} ${page:T:S/3x$/3/g}: ${page} + rm -f ${.TARGET} ln -s ${.ALLSRC} ${.TARGET} .endfor but now the following error would not go away :( ===> gnu/usr.bin/perl/miniperl install -c -s -o root -g wheel -m 555 miniperl /usr/bin /usr/bin/perl -> /usr/bin/miniperl ===> gnu/usr.bin/perl/perl install -c -s -o root -g wheel -m 555 perl /usr/bin /usr/bin/perl5 -> /usr/bin/perl /usr/bin/perl5.00503 -> /usr/bin/perl make: don't know how to make Makefile.PL. Stop *** Error code 2 Stop in ..../src/gnu/usr.bin/perl/perl. *** Error code 1 When yet another machine runs installworld... Could this, please, be corrected? Ideally, I'd like to be able to, may be, even burn /usr/src and /usr/obj onto a CD and upgrade machines like that (or the ro NFS). "Don't put off 'till beforinstall what can be done in all" :-) Thanks! -mi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message