From owner-freebsd-questions@FreeBSD.ORG Sun Oct 25 17:28:02 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 ADF951065679 for ; Sun, 25 Oct 2009 17:28:02 +0000 (UTC) (envelope-from tajudd@gmail.com) Received: from mail-yw0-f178.google.com (mail-yw0-f178.google.com [209.85.211.178]) by mx1.freebsd.org (Postfix) with ESMTP id 671768FC14 for ; Sun, 25 Oct 2009 17:28:01 +0000 (UTC) Received: by ywh8 with SMTP id 8so9223108ywh.3 for ; Sun, 25 Oct 2009 10:28:01 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type; bh=26tiGSxordAk7FfZfejr7StMIZJAn9OV87DUaohAqvU=; b=H6CmV64fX8VboGsvzBGS53ll/cFGYROvGXVUUI93nT4IwXswrGHrJnGm/JDgttyT9b e+iQN45/3SLmd9TCf6kBK+7TXhUcxWtHFaPbtPaYuQ2c+3UyipbkeeWwnE1pe8N7Hy1/ b0VX2rV6zb1zLduMiS2nyrG0TKMI21EIjk6BQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=ibBW6hut3/Q6PH+25YQ3hF7uwJwgjU+IYc414OnhjZkA/eBGtG8nQOiTtms1vzfaBH 8mPw/iVXK/H6MHnYgrltHnA5oh14JTkPV0q8qePqnw/V/ziAPHTAKGvrn0G4CmtuPnJ4 oyTrJX6EBmhZ9q8ItXgqulm/cywIuhVZ6gdQk= MIME-Version: 1.0 Received: by 10.101.49.19 with SMTP id b19mr8321514ank.146.1256491681518; Sun, 25 Oct 2009 10:28:01 -0700 (PDT) In-Reply-To: <4AE2F431.7070504@poughkeepsieschools.org> References: <4AE2E84F.6060703@poughkeepsieschools.org> <4AE2F431.7070504@poughkeepsieschools.org> Date: Sun, 25 Oct 2009 11:28:01 -0600 Message-ID: From: Tim Judd To: "B. Cook" Content-Type: text/plain; charset=ISO-8859-1 Cc: freebsd-questions@freebsd.org Subject: Re: 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: Sun, 25 Oct 2009 17:28:02 -0000 http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/makeworld.html#CANONICAL-BUILD Look at "the following recommended sequence": 1. make buildworld 2. make buildkernel 3. make installkernel 4. reboot in single user [*] 5. mergemaster -p 6. make installworld 7. mergemaster 8. reboot Your steps skip steps 4 and 5. Note that it's been said many times, especially with remote hosting. 4 can be modified to read something like: 4. Boot with only required programs to run steps 5 and 6. In most cases, it's just sshd that needs to be running. This means editing /etc/rc.conf and disabling everything except sshd and the IP networking/routing. The purpose of 4 is to stop other people, binaries, or daemons running and using files that need to be updated. Redirecting or piping in steps 1, 2, 3 and 6 are optional. I'd love to have a logfile myself most of these things. Either script(1) or tee(1) it. Please update your script per directions. and I would definitely cut the 4 && commands away from each other. they're not related and didn't seem to do the purpose you probably intended it to do. --Tim