From owner-freebsd-questions@FreeBSD.ORG Tue Jul 14 20:07:47 2009 Return-Path: Delivered-To: questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E9BB8106567C for ; Tue, 14 Jul 2009 20:07:47 +0000 (UTC) (envelope-from pervect@gmail.com) Received: from qw-out-2122.google.com (qw-out-2122.google.com [74.125.92.25]) by mx1.freebsd.org (Postfix) with ESMTP id 997388FC31 for ; Tue, 14 Jul 2009 20:07:47 +0000 (UTC) (envelope-from pervect@gmail.com) Received: by qw-out-2122.google.com with SMTP id 3so271263qwe.7 for ; Tue, 14 Jul 2009 13:07:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:sender:received:in-reply-to :references:date:x-google-sender-auth:message-id:subject:from:to:cc :content-type:content-transfer-encoding; bh=FOVZal7fjxxZJyUnGgJF5D47eZGq2d7HgV8B3By2wBQ=; b=Tvd/dnToab5gX8oQuaEKs0YFFBmHOcMgszyPo+h6+ZPTNRl5B5Hv9Gymevf4O9obWS DbyYgfXVaQO51gZSsQvXgUO57wX1nMKdjIawz+n4UIfQ6K5F/rwNDFYraaBF1PWsm21q W5+tRbUBUj81m6oEksiEnG1eJpwPhoK5vNXNo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :content-transfer-encoding; b=mFZ1svJiTtFkHtE3RPwh6E8gviKuzXr3wplud4BTg+IdtSlfqZyIza9fdq81N72HKs pT+sdueLdmsrSjcsQZ0qznUnLb92GVz1Z41KHoVaU0E3moJWBz+qIDvN0mcvfY/Ja1jU yaTvYqvwFouCetEPcUyNPmrskBiwM+wmEGxoI= MIME-Version: 1.0 Sender: pervect@gmail.com Received: by 10.231.13.199 with SMTP id d7mr1606151iba.54.1247600285797; Tue, 14 Jul 2009 12:38:05 -0700 (PDT) In-Reply-To: <1247600086.36735.26.camel@localhost> References: <20090714024358.8095.qmail@us1.tomahawkonline.net> <20090714103103.14479.qmail@us1.tomahawkonline.net> <1247600086.36735.26.camel@localhost> Date: Tue, 14 Jul 2009 15:38:05 -0400 X-Google-Sender-Auth: 93916a7173ab2deb Message-ID: From: Victor Starenky To: Sergio de Almeida Lenzi Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: freebsd-questions Subject: Re: Server screwed up (/lib/libc.so.7: Undefined symbol "_nsdispatch") 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: Tue, 14 Jul 2009 20:07:48 -0000 Thank you Sergio! I'll give it a try tonight while keeping my fingers crossed. On Tue, Jul 14, 2009 at 3:34 PM, Sergio de Almeida Lenzi wrote: > Em Ter, 2009-07-14 =E0s 10:00 -0400, Victor Starenky escreveu: > =3D=3D=3D=3D=3D=3D=3DOK... =3D=3D=3D=3D=3D=3D=3D=3D > you can try this script... > it suposes that you have ALL the /usr/src=A0 and the GENERIC KERNEL... > in a slow machine, it is about 4 hours.... (Pentium 2, 256mb memory, 10Gb > disk) > FreeBSD 7.0 =3D>=A0 FreeBSD 7.2 > save the script in the root directory say: updatebsd > than.... with all the /usr/src (you can get it from the CD)..... > > sh updatebsd > if it finds a small mistake it will stop. > after building the OS, check if everything is ok, and reboot. > this script will install the GENERIC KERNEL, so if you have your > own kernel,=A0=A0 edit the last lines of the code to make your needs > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > DEPEND=3Ddepend > cd /usr/src > set -e > (cd share/mk;make all install || exit 1) > make includes > for i in etc share lib libexec secure/lib secure > do > (cd $i;make ${DEPEND} all install || exit 1) > sync > done > for i in sbin bin usr.sbin usr.bin > do > (cd $i;make ${DEPEND} all install || exit 1) > sync > done > cd /sys/`uname -m`/conf > config GENERIC > cd ../compile/GENERIC > make ${DEPEND} all install > >