スポンサーリンク

FreeBSDCPUのモデルやクロックを調べる方法はいくつかあります。
  • sysctlで調べる
  • /var/run/dmesg.bootを見る
sysctlでCPUを調べる

CPUのモデルを調べるには hw.modelをチェックします。

sysctl -d hw.model
hw.model: Machine model


sysctl hw.model
hw.model: AMD Athlon(tm) 64 X2 Dual Core Processor 5200+


sysctl hw.model
hw.model: Dual-Core AMD Opteron(tm) Processor 2220



sysctl hw.model
hw.model: AMD Opteron(tm) Processor 254


sysctl hw.model
hw.model: AMD Athlon(TM) XP 2700+


sysctl hw.model
hw.model: Intel Pentium III


CPUのクロック周波数を調べるには、hw.clockrateを参照します。

sysctl -d hw.clockrate
hw.clockrate: CPU instruction clock rate


sysctl hw.clockrate
hw.clockrate: 2678


tscを調べる方法は、下記のとおりです。

sysctl hw.tsc_freq
machdep.tsc_freq: 2678001180


CPUのモデルとクロックが調べたいなら下記コマンドでできます。

sysctl hw.model hw.clockrate
hw.model: AMD Athlon(tm) 64 X2 Dual Core Processor 5200+
hw.clockrate: 2678


dmesg.bootで調べる

/var/run/dmesg.boot を CPU で grep します。

grep ^CPU /var/run/dmesg.boot
CPU: AMD Opteron(tm) Processor 254 (2814.44-MHz 686-class CPU)


こう考えるとdmesg.bootをgrepするほうが楽かもしれませんね。

CPUの個数を調べる

シングルコア、シングルCPUのマシンの場合。

sysctl kern.smp.cpus
kern.smp.cpus: 1


デュアルコアか、デュアルCPUの場合。

sysctl kern.smp.cpus
kern.smp.cpus: 2


sysctl -d kern.smp.cpus
kern.smp.cpus: Number of CPUs online


スポンサーリンク
スポンサーリンク
 
いつもシェア、ありがとうございます!


もっと情報を探しませんか?

関連記事

最近の記事

人気のページ

スポンサーリンク
 

過去ログ

2020 : 01 02 03 04 05 06 07 08 09 10 11 12
2019 : 01 02 03 04 05 06 07 08 09 10 11 12
2018 : 01 02 03 04 05 06 07 08 09 10 11 12
2017 : 01 02 03 04 05 06 07 08 09 10 11 12
2016 : 01 02 03 04 05 06 07 08 09 10 11 12
2015 : 01 02 03 04 05 06 07 08 09 10 11 12
2014 : 01 02 03 04 05 06 07 08 09 10 11 12
2013 : 01 02 03 04 05 06 07 08 09 10 11 12
2012 : 01 02 03 04 05 06 07 08 09 10 11 12
2011 : 01 02 03 04 05 06 07 08 09 10 11 12
2010 : 01 02 03 04 05 06 07 08 09 10 11 12
2009 : 01 02 03 04 05 06 07 08 09 10 11 12
2008 : 01 02 03 04 05 06 07 08 09 10 11 12
2007 : 01 02 03 04 05 06 07 08 09 10 11 12
2006 : 01 02 03 04 05 06 07 08 09 10 11 12
2005 : 01 02 03 04 05 06 07 08 09 10 11 12
2004 : 01 02 03 04 05 06 07 08 09 10 11 12
2003 : 01 02 03 04 05 06 07 08 09 10 11 12

サイト

Vim入門

C言語入門

C++入門

JavaScript/Node.js入門

Python入門

FreeBSD入門

Ubuntu入門

セキュリティ入門

パソコン自作入門

ブログ

トップ


プライバシーポリシー