亚洲精品中文字幕无乱码_久久亚洲精品无码AV大片_最新国产免费Av网址_国产精品3级片

Linux認證

Linux cpuinfo系統(tǒng)詳解

時間:2024-11-16 08:00:41 Linux認證 我要投稿
  • 相關(guān)推薦

Linux cpuinfo系統(tǒng)詳解

  Linux可安裝在各種計算機硬件設備中,比如手機、平板電腦、路由器、視頻游戲控制臺、臺式計算機、大型機和超級計算機。下面是關(guān)于Linux cpuinfo系統(tǒng)詳解,希望大家認真閱讀!

  判斷依據(jù):

  1.具有相同core id的cpu是同一個core的超線程。

  2.具有相同physical id的cpu是同一顆cpu封裝的線程或者cores。

  英文版:

  1.Physical id and core id are not necessarily consecutive but they are unique. Any cpu with the same core id are hyperthreads in the same core.

  2.Any cpu with the same physical id are threads or cores in the same physical socket.

  echo "logical CPU number:"

  #邏輯CPU個數(shù)

  cat /proc/cpuinfo | grep "processor" | wc -l

  echo "physical CPU number:"

  #物理CPU個數(shù):

  cat /proc/cpuinfo | grep "physical id" | sort -u | wc -l

  echo "core number in a physical CPU:"

  #每個物理CPU中Core的個數(shù):

  cat /proc/cpuinfo | grep "cpu cores" | uniq | awk -F: '{print $2}'

  #查看core id的數(shù)量,即為所有物理CPU上的core的個數(shù)

  cat /proc/cpuinfo | grep "core id" | uniq | wc -l

  #是否為超線程?

  #如果有兩個邏輯CPU具有相同的”core id”,那么超線程是打開的。或者siblings數(shù)目比cpu cores數(shù)目大。

  #每個物理CPU中邏輯CPU(可能是core, threads或both)的個數(shù):

  cat /proc/cpuinfo | grep "siblings"

  /proc/cpuinfo 文件包含系統(tǒng)上每個處理器的數(shù)據(jù)段落。/proc/cpuinfo 描述中有 6 個條目適用于多內(nèi)核和超線程(HT)技術(shù)檢查:processor, vendor id, physical id, siblings, core id 和 cpu cores。

  processor 條目包括這一邏輯處理器的唯一標識符。

  physical id 條目包括每個物理封裝的唯一標識符。

  core id 條目保存每個內(nèi)核的唯一標識符。

  siblings 條目列出了位于相同物理封裝中的邏輯處理器的數(shù)量。

  cpu cores 條目包含位于相同物理封裝中的內(nèi)核數(shù)量。

  如果處理器為英特爾處理器,則 vendor id 條目中的字符串是 GenuineIntel。

  1.擁有相同 physical id 的所有邏輯處理器共享同一個物理插座。每個 physical id 代表一個唯一的物理封裝。

  2.Siblings 表示位于這一物理封裝上的邏輯處理器的數(shù)量。它們可能支持也可能不支持超線程(HT)技術(shù)。

  3.每個 core id 均代表一個唯一的處理器內(nèi)核。所有帶有相同 core id 的邏輯處理器均位于同一個處理器內(nèi)核上。

  4.如果有一個以上邏輯處理器擁有相同的 core id 和 physical id,則說明系統(tǒng)支持超線程(HT)技術(shù)。

  5.如果有兩個或兩個以上的邏輯處理器擁有相同的 physical id,但是 core id 不同,則說明這是一個多內(nèi)核處理器。cpu cores 條目也可以表示是否支持多內(nèi)核。

  判斷CPU是否64位,檢查cpuinfo中的flags區(qū)段,看是否有l(wèi)m標識。

  Are the processors 64-bit?

  A 64-bit processor will have lm ("long mode") in the flags section of cpuinfo. A 32-bit processor will not.

【Linux cpuinfo系統(tǒng)詳解】相關(guān)文章:

常用的Linux命令詳解09-28

Linux下top命令詳解07-09

嵌入式Linux詳解04-22

linux系統(tǒng)集群的架構(gòu)與實現(xiàn)06-29

Linux 系統(tǒng)硬盤優(yōu)化的方法05-20

Linux系統(tǒng)管理:linux修改鍵盤按鍵09-30

Linux系統(tǒng)使用命令行執(zhí)行php文件傳參的步驟詳解07-11

Linux學習之find命令詳解201611-06

Linux解壓縮命令詳解201608-11

Linux認證系統(tǒng)管理:linux下搭建ftp07-04