aix
作業系統
aix的硬體資訊可以通過
prtconf
命令看到。
1. 檢視邏輯
cpu個數
#pmcycles -m
cpu 0 runs at 4204 mhz
cpu 1 runs at 4204 mhz
cpu 2 runs at 4204 mhz
cpu 3 runs at 4204 mhz
cpu 4 runs at 4204 mhz
cpu 5 runs at 4204 mhz
cpu 6 runs at 4204 mhz
cpu 7 runs at 4204 mhz
上面描述有8個
cpu,
cpu的主頻為
4.2g赫茲
2. 檢視物理
cpu個數
#prtconf|grep processors
number of processors: 4
3. 確定
cpu是幾核
用邏輯cpu除以物理
cpu就是核數。
4. 檢視單個
cpu的詳細資訊
#lsattr -e -l proc0
frequency4204000000processor speedfalse
smt_enabled trueprocessor smt enabled false
smt_threads 2processor smt threads false
stateenableprocessor statefalse
typepowerpc_power6 processor typefalse
linux
作業系統
linux
下的cpu
資訊全部都在
/proc/cpuinfo
這個檔案中,可以直接開啟看。
1. 檢視物理
cpu的個數
#cat /proc/cpuinfo |grep "physical id"|sort |uniq|wc -l
2. 檢視邏輯
cpu的個數
#cat /proc/cpuinfo |grep "processor"|wc -l
3. 檢視
cpu是幾核
#cat /proc/cpuinfo |grep "cores"|uniq
4. 檢視
cpu的主頻
#cat /proc/cpuinfo |grep mhz|uniq
AIX和Linux下如何檢視CPU和記憶體資訊
aix 和linux 下如何檢視cpu 和記憶體資訊 aix 作業系統 aix的硬體資訊可以通過 prtconf 命令看到。1.檢視邏輯 cpu個數 pmcycles m cpu 0 runs at 4204 mhz cpu 1 runs at 4204 mhz cpu 2 runs at 4204...
AIX和Linux下如何檢視CPU和記憶體資訊
aix作業系統 aix的硬體資訊可以通過prtconf命令看到。1.檢視邏輯cpu個數 pmcycles m cpu 0 runs at 4204 mhz cpu 1 runs at 4204 mhz cpu 2 runs at 4204 mhz cpu 3 runs at 4204 mhz cpu...
aix如何檢視日誌策略 AIX常見日誌檢視位置
常見日誌檢視位置 文章分類 作業系統 進行aix 的日常維護,需要關注哪些日誌檔案?解答在進行 aix的日常維護時,需關注的日誌檔案有 檔案描述 建議core 和snapcore 由應用產生的 dump 檔案,可用於診斷錯誤 可刪除nohup.out nohup 命令的輸出結果 可刪除.xerror...