From owner-freebsd-stable@FreeBSD.ORG Wed Feb 19 16:34:10 2014 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7F032512 for ; Wed, 19 Feb 2014 16:34:09 +0000 (UTC) Received: from mail.tyknet.dk (mail.tyknet.dk [144.76.253.226]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 3D57F1965 for ; Wed, 19 Feb 2014 16:34:08 +0000 (UTC) Received: from [192.168.1.32] (sterloe.dk [213.150.63.117]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by mail.tyknet.dk (Postfix) with ESMTPSA id C1069125E09 for ; Wed, 19 Feb 2014 16:34:00 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.8.3 mail.tyknet.dk C1069125E09 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=gibfest.dk; s=default; t=1392827640; bh=4ui5NMNQRsmZd4n1YX4zEvhlECMmVB7K9CEsTsASgZo=; h=Date:From:To:Subject:References:In-Reply-To; b=N0hLom8QAAnKYEsE/lnQrILQuSMNlYpzmLNNCv1x38Wm9YLAfdiBcsJZV4JdEvFai lJpWmuUzQPn9PNzYlBjwseRj7dEYHQzFIml2eko05VVWzcEctPZ4IDxjy0pJjTafdX QAa1TZeL+DgmurshlUetFCTz90Gyg9M4UDJqTvu1RJ/E8LSWdFJ/3Z00qPbC+nRAJQ Y3gmRcIrA3OzWUbDM2u92XlhhaE7rAwFah407JBeQxpMcValAui0bz72p4TWdHEHI9 epafhk65EOWRJZfaxi49GG9N1JTy4YXInOnwKtBfhAsTei2vFgo14QRfmK52ZzEWRd zoay7xh5VG6UQ== Message-ID: <5304DCF7.5040101@gibfest.dk> Date: Wed, 19 Feb 2014 17:33:59 +0100 From: Thomas Steen Rasmussen User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.3.0 MIME-Version: 1.0 To: freebsd-stable@freebsd.org Subject: Re: Problem with installworld on 10-stable r262131 References: <530338DD.8030601@gibfest.dk> <53037123.6030102@gibfest.dk> <53049E0C.7090503@gibfest.dk> <036EFF83-C953-48E7-88F7-2212C974AFFD@FreeBSD.org> In-Reply-To: <036EFF83-C953-48E7-88F7-2212C974AFFD@FreeBSD.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Feb 2014 16:34:10 -0000 On 19-02-2014 13:55, Dimitry Andric wrote: > On 19 Feb 2014, at 13:05, Thomas Steen Rasmussen wrote: > ... >> I've svn updated to r262193 and I did "make clean" before building world and >> kernel again, installing kernel, rebooting, and running installworld again. >> >> I still get the same error: > ... >> mtree -deU -f /usr/src/etc/mtree/BSD.var.dist -p /var >> empty: flags ("schg" is not "none"mtree -deU -f /usr/src/etc/mtree/BSD.usr.dist -p /usr > That 'empty: flags ("schg" is not "none")' message indicates there is > some problem with the permissions under your /usr directory... Thank you, that got me in the right direction. The schg problem was actually under /var and was corrected by running: mtree -dieu -f /usr/src/etc/mtree/BSD.var.dist -p /var twice. I added -i to make it correct schg errors as described in mtree(8). This didn't get me any further though, but it did make that message go away. > >> mtree -deU -f /usr/src/etc/mtree/BSD.include.dist -p /usr/include >> mtree -deU -f /usr/src/etc/mtree/BSD.groff.dist -p /usr >> mtree -deU -f /usr/src/etc/mtree/BSD.sendmail.dist -p / >> install -l s usr/src/sys /sys >> cd /usr/share/man; for mandir in man*; do install -l s ../$mandir /usr/share/man/en.ISO8859-1/; install -l s ../$mandir /usr/share/man/en.UTF-8/; done >> install: /usr/share/man/en.ISO8859-1//man1: Directory not empty > ... and this causes trouble creating your man directories, or symlinks > in those directories. I got past this error by deleting all files under /usr/share/man and /usr/share/openssl/man and when I ran installworld after this it completed with no further problems. Thank you for the help. Best regards, Thomas Steen Rasmussen