From owner-freebsd-questions@FreeBSD.ORG Sat Oct 24 12:30:00 2009 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 DAE2F106566B for ; Sat, 24 Oct 2009 12:30:00 +0000 (UTC) (envelope-from postmaster@bsdwebsolutions.com) Received: from a.outbound.bsdwebsolutions.com (a.outbound.bsdwebsolutions.com [64.72.68.2]) by mx1.freebsd.org (Postfix) with ESMTP id AE1598FC1C for ; Sat, 24 Oct 2009 12:30:00 +0000 (UTC) Received: from mail.bsdwebsolutions.com ([64.72.68.15]) by a.outbound.bsdwebsolutions.com with esmtps (TLSv1:AES256-SHA:256) (BSD Web Solutions, Inc.) (envelope-from ) id 1N1f1c-0003CQ-AM for freebsd-questions@freebsd.org; Sat, 24 Oct 2009 07:43:12 -0400 Received: from [96.233.198.34] (port=1690 helo=[192.168.1.2]) by mail.bsdwebsolutions.com with esmtpsa (TLSv1:AES256-SHA:256) (BSD WebSolutions, Inc.) (envelope-from ) id 1N1f1c-000Fus-5e for freebsd-questions@freebsd.org (authenticated as postmaster@bsdwebsolutions.com); Sat, 24 Oct 2009 07:43:12 -0400 Message-ID: <4AE2E84F.6060703@poughkeepsieschools.org> Date: Sat, 24 Oct 2009 07:43:11 -0400 From: "B. Cook" User-Agent: Thunderbird 2.0.0.23 (Windows/20090812) MIME-Version: 1.0 To: freebsd-questions@freebsd.org Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Originating-IP: 96.233.198.34 X-BSD-Auth-Id: postmaster@bsdwebsolutions.com Subject: most bizarre libc.so.7 problem 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: Sat, 24 Oct 2009 12:30:00 -0000 I have a machine at home that I build releng_7 on from time to time; about once a month or so. yesterday I did that, and this AM I have libc.so.7 errors all over the place. turns out libc.so.7 was not in /lib I had to boot into /rescue/sh and get my zfs stuff mounted and do a quick cp from /usr/obj/usr/src/lib/libc/libc.so.7 to /lib/libc.so.7 then everything was fine.. do I'm doing a buildworld again while I'm here and see if something failed on my part.. I've been doing this for a while and never had this problem.. below is what I do.. cat -n /root/build-world 1 #!/bin/sh 2 cd /usr/src 3 make update 4 #chflags -R noschg /usr/obj/* 5 rm -rf /usr/obj/* 6 mkdir /var/log/build 7 make -j4 buildworld 2>&1 | tee /var/log/build/bworld-`date "+%Y%m%d-%H%M"`.log && \ 8 make -j4 buildkernel 2>&1 | tee /var/log/build/bkernel-`date "+%Y%m%d-%H%M"`.log && \ 9 make installkernel 2>&1 | tee /var/log/build/ikernel-`date "+%Y%m%d-%H%M"`.log && \ 10 make installworld 2>&1 | tee /var/log/build/iworld-`date "+%Y%m%d-%H%M"`.log && \ 11 date | mail -s `hostname -s` name@domain.com && 12 sync && \ 13 reboot Not sure if something changed, or if something happened.. thanks in advance