記憶體: cat /proc/meminfo
cpu: cat /proc/cpuinfo
硬碟: df -h -t(no device的裝置看不到)
fdisk -l可以在redhat9.0中看; redhat企業版不行。
還有幾個命令可以看很多硬體裝置的資訊。
lspci -v
dmidecode
dmesg
檢視cpu資訊(型號)
# cat /proc/cpuinfo | grep name | cut -f2 -d: | uniq -c
8 intel(r) xeon(r) cpu e5410 @ 2.33ghz
(看到有8個邏輯cpu, 也知道了cpu型號)
# cat /proc/cpuinfo | grep physical | uniq -c
4 physical id : 0
4 physical id : 1
(說明實際上是兩顆4核的cpu)
ps:jay added on 10th, may, 2011
# 其實是可能有超執行緒ht技術,不一定是有4核,也可能是2核4執行緒;當時還理解不清楚
# getconf long_bit
32(說明當前cpu執行在32bit模式下, 但不代表cpu不支援64bit)
# cat /proc/cpuinfo | grep flags | grep ' lm ' | wc -l
8(結果大於0, 說明支援64bit計算。 lm指long mode, 支援lm則是64bit)
再完整看cpu詳細資訊, 不過大部分我們都不關心而已。
# dmidecode | grep 'processor information'
檢視內 存資訊
# cat /proc/meminfo
# uname -a
linux euis1 2.6.9-55.elsmp #1 smp fri apr 20 17:03:35 edt 2007 i686 i686 i386 gnu/linux
(檢視當前作業系統核心資訊)
# cat /etc/issue | grep linux
red hat enterprise linux as release 4 (nahant update 5)
(檢視當前作業系統發行版資訊)
檢視機器型號
# dmidecode | grep "product name"
檢視網絡卡資訊
# dmesg | grep -i eth
Linux檢視硬體資訊
在linux環境開發驅動程式,首先要探測到新硬體,接下來就是開發驅動程式。常用命令整理如下 用硬體檢測程式kudzu探測新硬體 service kudzu start or restart 檢視cpu資訊 cat proc cpuinfo 檢視板卡資訊 cat proc pci 檢視pci資訊 ls...
linux 檢視硬體資訊
引用 在linux的桌面版本中,檢視這些東西的確很方便,有圖形化的工具可以使用。但是在linux伺服器版上,或者遠端ssh連線的時候,就沒有圖形化的介面可以操作了。此時如果我們需要了解這些資訊,就只能依靠linux下的命令了。在這篇文章裡,我將介紹一下檢視cpu資訊 記憶體資訊 硬碟分割槽 硬碟型號...
檢視Linux硬體資訊
1 主機板資訊 檢視主機板的序列號 dmidecode grep i serial number 2,cpu資訊 通過 proc檔案系統 1 cat proc cpuinfo 通過檢視開機資訊 2 dmesg grep i cpu 3 dmidecode t processor 3 硬碟資訊 檢視分...