From owner-freebsd-questions@FreeBSD.ORG Sun Nov 29 15:24:15 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 19B9E1065676 for ; Sun, 29 Nov 2009 15:24:15 +0000 (UTC) (envelope-from freebsd@insightbb.com) Received: from mxsf08.insightbb.com (mxsf08.insightbb.com [74.128.0.78]) by mx1.freebsd.org (Postfix) with ESMTP id DB1198FC16 for ; Sun, 29 Nov 2009 15:24:14 +0000 (UTC) X-IronPort-AV: E=Sophos;i="4.47,308,1257138000"; d="scan'208";a="802382465" Received: from unknown (HELO asav02.insightbb.com) ([172.31.249.123]) by mxsf08.insightbb.com with ESMTP; 29 Nov 2009 10:24:13 -0500 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AroEAKMgEkvQLicL/2dsb2JhbACBTdE6hDEEgXI X-IronPort-AV: E=Sophos;i="4.47,308,1257138000"; d="scan'208";a="338247895" Received: from 208-46-39-11.dia.static.qwest.net (HELO laptop2.stevenfriedrich.org) ([208.46.39.11]) by asavout02.manage.insightbb.com with ESMTP; 29 Nov 2009 10:24:13 -0500 From: Steven Friedrich To: questions@freebsd.org Date: Sun, 29 Nov 2009 10:24:06 -0500 User-Agent: KMail/1.12.1 (FreeBSD/7.2-RELEASE-p4; KDE/4.3.3; i386; ; ) MIME-Version: 1.0 Content-Type: Text/Plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Message-Id: <200911291024.06896.freebsd@insightbb.com> Cc: Subject: ACPI temperature 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, 29 Nov 2009 15:24:15 -0000 I booted my HP Pavilion zd8215us and I immediately invoked chkCPUTemperature. The first temp reported was 52C, which is 125.6F. This leads me to believe that acpi has an anomaly regarding temperature measurement. The ambient temp was 71F (21.6C). The machine had been off for over eight hours. Here's chkCPUTemperature: #!/bin/sh # $Id:$ # # CPU Temperature Information from ACPI POLLING_RATE=`sysctl hw.acpi.thermal.polling_rate|awk '{print $2}'` while [ 1 ] do sysctl hw.acpi.thermal.tz0.temperature sleep $POLLING_RATE done uname -a FreeBSD laptop2.StevenFriedrich.org 7.2-RELEASE-p4 FreeBSD 7.2-RELEASE-p4 #1: Sat Oct 3 18:47:43 EDT 2009 root@laptop2.StevenFriedrich.org:/usr/obj/usr/src/sys/LAPTOP i386