#檢視伺服器cpu個數
現在 伺服器的cpu多了,好多同志都分不清楚是幾個cpu,幾核
方法有二:
看physical id
# cat /proc/cpuinfo | grep physical (原來都是4核的,說明只是2個cpu)
physical id : 0
physical id : 0
physical id : 0
physical id : 0
physical id : 1
physical id : 1
physical id : 1
physical id : 1
這說明是二個cpu
如果幾個cpu了,也知道是幾個了,8/2=4核
看cat /proc/cpuinfo |grep 'core id'
core id : 0
core id : 0
core id : 2
core id : 2
core id : 1
core id : 1
core id : 3
core id : 3
#檢視伺服器系統資訊
linux下如何檢視版本資訊, 包括位數和多核資訊,今天我們就來一起看看linux 檢視版本資訊以及檢視cpu核心資訊、cpu具體型號等等,整個cpu資訊一目了然。相信不會讓大家失望。
# uname -a
linux euis1 2.6.9-55.elsmp #1 smp fri apr 20 17:03:35 edt 2007 i686 i686 i386 gnu/linux
(linux檢視版本當前作業系統核心資訊)
# cat /etc/issue | grep linux
red hat enterprise linux as release 4 (nahant update 5)
(linux檢視版本當前作業系統發行版資訊)
# cat /proc/cpuinfo | grep name | cut -f2 -d: | uniq -c
8 intel(r) xeon(r) cpu e5410 @ 2.33ghz
(linux檢視cpu有8個邏輯cpu, 也知道了cpu型號)
# cat /proc/cpuinfo | grep physical | uniq -c
4 physical id : 0
4 physical id : 1
(linux檢視版本說明實際上是兩顆4核的cpu)
# getconf long_bit
32(linux檢視版本說明當前cpu執行在32bit模式下, 但不代表cpu不支援64bit)
# cat /proc/cpuinfo | grep flags | grep ' lm ' | wc -l
8(結果大於0, 說明支援64bit計算. lm指long mode, 支援lm則是64bit)
最後再完整看cpu物理資訊, 不過大部分我們都不關心而已.
# dmidecode | grep -a48 'processor information$'
檢視發布伺服器資訊
1 檢視資料庫中有幾個發布,以及相應的資訊,需要在發布庫中執行 如果沒有特殊原因,immediate sync應當為0,否則會導致正整個發布內的項重新初始化快照 2 檢視發布中的article.從這裡可以看到發布的物件 article name 在訂閱端的名稱 destination object ...
檢視發布伺服器資訊
1 檢視資料庫中有幾個發布,以及相應的資訊,需要在發布庫中執行 如果沒有特殊原因,immediate sync應當為0,否則會導致正整個發布內的項重新初始化快照 2 檢視發布中的article.從這裡可以看到發布的物件 article name 在訂閱端的名稱 destination object ...
Python 檢視伺服器磁碟資訊
檢視磁碟資訊,主要用到了兩個方法 使用方法 1 安裝 psutil pip install psutil 2 進入 python shell,並 import psutil 輸入 help psutil.disk partitions 返回 help on function disk partiti...