【回答】
プロセッサ数を調査するには以下のコマンドを実行します。
CPU数 × コア数 × 2(Hyper-Threadingが有効な場合)の合計が表示されます。
# cat /proc/cpuinfo | grep processor
processor : 0
processor : 1
processor : 2
processor : 3
processor : 4
processor : 5
processor : 6
processor : 7
物理CPUを調査するには以下のコマンドを実行します。
physical id が2種類(0と1)表示されるため、物理CPU数は2個と分かります。
# cat /proc/cpuinfo | grep "physical id"
physical id : 0
physical id : 1
physical id : 0
physical id : 0
physical id : 0
physical id : 1
physical id : 1
physical id : 1
# cat /proc/cpuinfo | grep "cpu cores"
4
以上より上記の例では計算によりHyper-Threadingが無効であることが分かります。
(*)本ページは Redhat Enterprise Linux 4以後を想定しています。
最終更新日:2012/08/12
[Redhat Enterprise linux 6(EL) FAQ トップへ]
[FAQ CENTER トップ]