From owner-freebsd-questions@FreeBSD.ORG Wed Jul 25 15:16:21 2012 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 E9F14106566B for ; Wed, 25 Jul 2012 15:16:21 +0000 (UTC) (envelope-from illoai@gmail.com) Received: from mail-yw0-f54.google.com (mail-yw0-f54.google.com [209.85.213.54]) by mx1.freebsd.org (Postfix) with ESMTP id A13028FC16 for ; Wed, 25 Jul 2012 15:16:21 +0000 (UTC) Received: by yhfs35 with SMTP id s35so967799yhf.13 for ; Wed, 25 Jul 2012 08:16:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; bh=Rnkkxq4pTXLEMrbj7zBwFS4KBNBgadiIUyw4BQG80uQ=; b=eDP745smndgEbiS13XnX/cTbptnC2fqx9w8B8t2PdvAeXW2P38Cp4GVtFiNcCxDHxg tOcPH+mVLWLLmP9yAwIa0SH6xv1xlBSsTjd0khHA5adidHWLfSxnOW9orIA/hMDqWe+5 ckKiwK+zTNT5Tved3IoIfVmXlqS80kSO9n2KWfZYFr5xO4wAQ3kzxBoWqUo62DIhITBZ hhIEalHjr68v2ii+u7eoF2IWEsQvklOA9cteZ/NS9qZN6J6y0PCwXIxy6I5R1XQ1WyBd 26d5VpPnRm455Wirzn5X8GLDPibaVHrdftye88222SeGQAgVo2jAx6uq/+LbL1ZExtMN NySA== MIME-Version: 1.0 Received: by 10.100.230.16 with SMTP id c16mr1210127anh.22.1343229380955; Wed, 25 Jul 2012 08:16:20 -0700 (PDT) Received: by 10.101.195.15 with HTTP; Wed, 25 Jul 2012 08:16:20 -0700 (PDT) In-Reply-To: <63031.1343217300.9705048765098688512@ffe15.ukr.net> References: <63031.1343217300.9705048765098688512@ffe15.ukr.net> Date: Wed, 25 Jul 2012 11:16:20 -0400 Message-ID: From: "illoai@gmail.com" To: =?UTF-8?B?0JLQu9Cw0LTQuNGB0LvQsNCyINCf0YDQvtC00LDQvQ==?= Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Cc: freebsd-questions@freebsd.org Subject: Re: how to determine the temperature of your CPU? 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: Wed, 25 Jul 2012 15:16:22 -0000 On 25 July 2012 07:55, =D0=92=D0=BB=D0=B0=D0=B4=D0=B8=D1=81=D0=BB=D0=B0=D0= =B2 =D0=9F=D1=80=D0=BE=D0=B4=D0=B0=D0=BD wrote: > > > CPU: AMD FX(tm)-8120 Eight-Core Processor (3110.49-MHz K8-clas= s CPU) > Origin =3D "AuthenticAMD" Id =3D 0x600f12 Family =3D 15 Model =3D 1 = Stepping =3D 2 > > # kldstat -v | grep temp > 319 cpu/coretemp > 311 hostb/amdtemp > > % sysctl dev.amdtemp & % sysctl hw.acpi.thermal & the other stuff is probably best extracted via: % sysctl dev.cpu | grep temperature (as you can't use wildcards in sysctl oids, bleh) For my dual core machine, I use: % sysctl hw.acpi.thermal.tz0.temperature dev.amdtemp.0.sensor0 \ dev.amdtemp.0.sensor1 dev.cpu.0.temperature dev.cpu.1.temperature in a script to quickly see all of my temperature sensors. You likely have many more. --=20 --