From owner-freebsd-questions@FreeBSD.ORG Mon Jul 14 14:43:17 2008 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 5EF671065670 for ; Mon, 14 Jul 2008 14:43:17 +0000 (UTC) (envelope-from josh.carroll@gmail.com) Received: from rn-out-0910.google.com (rn-out-0910.google.com [64.233.170.189]) by mx1.freebsd.org (Postfix) with ESMTP id 248698FC16 for ; Mon, 14 Jul 2008 14:43:16 +0000 (UTC) (envelope-from josh.carroll@gmail.com) Received: by rn-out-0910.google.com with SMTP id j71so1570405rne.12 for ; Mon, 14 Jul 2008 07:43:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:reply-to :to:subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=nIBgjlbfZVgnk9s5vSwdfSeZ+WCIhqxCGBMnSkJWCPU=; b=M6c7F7RW/RnGYueUT3rPb1mRyals9tuIuK8OmWn2aNRTtNkHHoSo9NydjiyN2LOBbs HJnc2VrbV7V1c5D7LW0LCRdw2lR1OvFoIgZPaKs28lsBJ7FsWWpnZWVplk0kmdZx42jf kjipHFJ6ZRt429Yxp7Sx1FSm0V1qM0plX2Edw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:reply-to:to:subject:cc:in-reply-to :mime-version:content-type:content-transfer-encoding :content-disposition:references; b=crhFF/icmyY0s1W0+bACndNwL2GDQEcPcg4lJKZGY5D1sQpoJuTtiDBia6m0NXZIiF uEsUUVLUCYJyd+We/CHvEwnJMdZpFdokCsaefPZKP74Vt5+OOVjLGE+73HOQD+ODALOU Gp138Ui8gAzbzexm8ggMQi3b9YGVS+qnuHtG0= Received: by 10.150.149.19 with SMTP id w19mr20425661ybd.19.1216046596135; Mon, 14 Jul 2008 07:43:16 -0700 (PDT) Received: by 10.150.140.14 with HTTP; Mon, 14 Jul 2008 07:43:16 -0700 (PDT) Message-ID: <8cb6106e0807140743g8abe56co8e9def3b3227da05@mail.gmail.com> Date: Mon, 14 Jul 2008 10:43:16 -0400 From: "Josh Carroll" To: "tethys ocean" In-Reply-To: <235b80000807140547t9007b13of23a1db09085cb71@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <235b80000807140357m351f801bw254aab35367682bb@mail.gmail.com> <235b80000807140547t9007b13of23a1db09085cb71@mail.gmail.com> Cc: freebsd-questions@freebsd.org Subject: Re: Core(TM)2 Quad and TOP output X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: josh.carroll@gmail.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Jul 2008 14:43:17 -0000 >> > I have new server(webserver) quad core but performans is not well >> > (according >> > our old webserver pent IV ). Maybe its performans depends on our web >> > page >> > sourcecode. FreeBSD 6.3 stable is running on it. dmesg is in below. I'm sorry, I completely missed that you were running 6.3 and not a 7.x release. You are running the GENERIC kernel then, and while the processors are visible, it's only using one since you are not running with SMP support. You can build the SMP kernel (basically, GENERIC + options needed for SMP) by doing the following: cd /usr/src make kernel KERNCONF=SMP Then reboot, and it should pick up the newly installed kernel with SMP support. Note that this backs up your old kernel to /boot/kernel.old, so if the new one fails to boot, at the beastie menu, you can boot with the old kernel if necessary. Josh