From owner-freebsd-questions@FreeBSD.ORG Sun Nov 19 13:52:35 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E1A5A16A416 for ; Sun, 19 Nov 2006 13:52:35 +0000 (UTC) (envelope-from duncan.fbsd@gmail.com) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.193]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4E01243D72 for ; Sun, 19 Nov 2006 13:52:22 +0000 (GMT) (envelope-from duncan.fbsd@gmail.com) Received: by nz-out-0102.google.com with SMTP id i11so734822nzh for ; Sun, 19 Nov 2006 05:52:31 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:from:to:subject:date:user-agent:cc:references:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:message-id; b=eTZl1qlXFxBzpkM2Jq/lvq0e9qROVxfJgCQFw5JqteyJaAuWO4gu4WJmB2RhLXAH2/5MbUQGAsdPU9b9CdyIZA3mvHJ/nIhdcSMeG4l0UpTrdYq7ndkexnRvCfdXp5j+IM1l1dAEYvfKujb4ho7GhC7brBWORs3Y8DZS+5Ni8xE= Received: by 10.64.241.3 with SMTP id o3mr6093687qbh.1163944350949; Sun, 19 Nov 2006 05:52:30 -0800 (PST) Received: from ?192.168.1.20? ( [75.7.74.134]) by mx.google.com with ESMTP id q14sm7735894qbq.2006.11.19.05.52.30; Sun, 19 Nov 2006 05:52:30 -0800 (PST) From: "Donald J. O'Neill" To: freebsd-questions@freebsd.org Date: Sun, 19 Nov 2006 07:51:33 -0600 User-Agent: KMail/1.9.4 References: <2cd0a0da0611190447i12f3a917le8dded55557101ed@mail.gmail.com> In-Reply-To: <2cd0a0da0611190447i12f3a917le8dded55557101ed@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200611190751.33237.duncan.fbsd@gmail.com> Cc: VeeJay Subject: Re: Installworld Problem... Please help!!! 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: Sun, 19 Nov 2006 13:52:36 -0000 On Sunday 19 November 2006 06:47, VeeJay wrote: > Hello, > > Please help!!! > I have CVSup'ed my 6.1 Fresh Install. No problems with buildworld or kernel > build, but I am getting failures > during installworld. When I give this command in single user mode: > > # make installworld > > A Partial output of the Screen Dump > > cd /usr/src/etc; make distrib-dirs > mtree -eU -f /usr/src/etc/mtree/BSD.root.dist -p / > mtree -eU -f /usr/src/etc/mtree/BSD.var.dist -p /var > mtree -eU -f /usr/src/etc/mtree/BSD.usr.dist -p /usr > mtree -eU -f /usr/src/etc/mtree/BSD.include.dist -p /usr/include > mtree -deU -f /usr/src/etc/mtree/BIND.chroot.dist -p /var/named > mtree -deU -f /usr/src/etc/mtree/BSD.sendmail.dist -p / > cd /; rm -f /sys; ln -s usr/src/sys sys > rm: /sys: Read-only file system > *** Error code 1 > > Stop in /usr/src/etc. > *** 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. > # > > > Information about my FSTAB: > > # cat /etc/fstab > # Device Mountpoint FStype Options Dump Pass# > /dev/mfid0s1b none swap sw 0 0 > /dev/mfid0s1a / ufs rw 1 1 > /dev/mfid0s1g /home ufs rw 2 2 > /dev/mfid0s1e /tmp ufs rw 2 2 > /dev/mfid0s1f /usr ufs rw 2 2 > /dev/mfid0s1d /var ufs rw 2 2 > /dev/acd0 /cdrom cd9660 ro, noauto 0 0 What are you doing to go into single user mode? It looks like your not mounting in r/w. The handbook Section 21.4.5, gives a very good method (two actually) of what to do. I used to use the first, I have used the second for several years. Try that. Don