1. cpu
# lscpu
# cat /proc/cpuinfo //可以知道每個cpu資訊,如每個cpu的型號,主頻等
2. 記憶體
# free -m
# cat /proc/meminfo //檢視記憶體詳細使用
# dmidecode -t memory //檢視記憶體硬體資訊
3. 硬碟
# lsblk
# fdisk -l //檢視硬碟和分割槽的詳細資訊
4. 網路介面
# ifconfig -a
# ip link show
# ethtool eth0 //檢視某個網路介面的詳細資訊
5. 檢視主機板pci硬體資訊
# lspci
# lspci | grep -i 'eth'
//檢視網絡卡硬體資訊
# lspci | grep -i vga //檢視顯示卡硬體資訊
6. 檢視bios資訊
# dmidecode -t bios
linux系統檢視系統資訊
一 檢視cpu 總核數 物理cpu個數 x 每顆物理cpu的核數 總邏輯cpu數 物理cpu個數 x 每顆物理cpu的核數 x 超執行緒數 檢視物理cpu個數 cat proc cpuinfo grep physical id sort uniq wc l 檢視每個物理cpu中core的個數 即核數...
Linux檢視系統資訊
1.檢視系統核心 uname a uname r file sbin init 通過file命令判斷系統中的檔案時32位還是64位的 64位cpu系統架構可以安裝32位或64位的系統,而32為的cpu架構只能安裝32位的系統 2.檢視伺服器使用的linux發行版的名稱,版本號及描述資訊等 lsb r...
linux檢視系統資訊
通用命令 root centos68 more etc issue centos release 6.9 final redhat 系 root centos68 cat etc redhat release centos release 6.9 final 檢視系統核心及系統名稱 root cen...