久久久久久久视色,久久电影免费精品,中文亚洲欧美乱码在线观看,在线免费播放AV片

<center id="vfaef"><input id="vfaef"><table id="vfaef"></table></input></center>

    <p id="vfaef"><kbd id="vfaef"></kbd></p>

    
    
    <pre id="vfaef"><u id="vfaef"></u></pre>

      <thead id="vfaef"><input id="vfaef"></input></thead>

    1. 站長資訊網(wǎng)
      最全最豐富的資訊網(wǎng)站

      centos7怎么查看cpu是幾核

      centos7查看cpu是幾核的方法:1、登錄CentOS服務(wù)器,打開終端;2、在終端窗口中,執(zhí)行“cat /proc/cpuinfo | grep "cores"|uniq”命令,查看輸出結(jié)果即可。

      centos7怎么查看cpu是幾核

      本教程操作環(huán)境:centos7系統(tǒng)、thinkpad t480電腦。

      概念

      物理CPU:實(shí)際Server中插槽上的CPU個(gè)數(shù)。

      物理cpu數(shù)量:可以數(shù)不重復(fù)的 physical id 有幾個(gè)。

      CPU核數(shù)

      一塊CPU上面能處理數(shù)據(jù)的芯片組的數(shù)量、比如現(xiàn)在的i5 760,是雙核心四線程的CPU、而 i5 2250 是四核心四線程的CPU,一般來說,物理CPU個(gè)數(shù)×每顆核數(shù)就應(yīng)該等于邏輯CPU的個(gè)數(shù),如果不相等的話,則表示服務(wù)器的CPU支持超線程技術(shù)。

      查看CPU信息

      當(dāng)我們 cat /proc/cpuinfo 時(shí),具有相同core id的CPU是同一個(gè)core的超線程,具有相同physical id的CPU是同一個(gè)CPU封裝的線程或核心。

      下面舉例說明

      【1】查看CPU型號(hào):cpu型號(hào)是E7-4820

      [root@node1 ~]# cat /proc/cpuinfo | grep name | cut -f2 -d: | uniq -c     32  Intel(R) Xeon(R) CPU E7- 4820  @ 2.00GHz

      【2】查看物理cpu個(gè)數(shù):物理核心數(shù)是2核

      [root@node1 ~]# cat /proc/cpuinfo | grep "physical id" | sort | uniq|wc -l 2

      【3】查看邏輯cpu的個(gè)數(shù):邏輯cpu個(gè)數(shù)是32個(gè)

      [root@node1 ~]# cat /proc/cpuinfo | grep "processor" |wc -l 32

      【4】查看cpu是幾核:cpu是8核

      [root@node1 ~]# cat /proc/cpuinfo | grep "cores"|uniq cpu cores       : 8

      推薦:《centos使用教程》

      贊(0)
      分享到: 更多 (0)
      網(wǎng)站地圖   滬ICP備18035694號(hào)-2    滬公網(wǎng)安備31011702889846號(hào)