1.顯示卡資訊
dmesg | grep -i vga
lspci | grep -i vga //檢視顯示卡資訊
2.dmidecode | grep -i 'serrial number' //檢視主機板資訊,檢視主機板的序列號
3.cpu資訊
#通過/proc檔案系統
cat /proc/cpuinfo
dmesg | grep -i cpu
#通過檢視開機資訊
dmidecode -t processor
4.硬碟資訊
fdisk -l //分割槽情況
df -h //大小情況
du -h //使用情況
dmesg | grep sda
5.記憶體資訊
cat /proc/meminfo
dmesg | grep mem
free -m
vmstat
dmldecode | grep -i mem
6.網絡卡資訊
dmesg | grep -i eth
lspci | grep -i eth
7.滑鼠鍵盤和usb資訊
cat /proc/bus/input/devices 檢視鍵盤和滑鼠
cat /proc/bus/usb/devices 檢視usb裝置
cat /proc/interrupts
8.音效卡資訊
lspci | grep -i vga
dmesg | grep -i vga
9.其他命令
lspci (顯示外裝置資訊,如usb,網絡卡等資訊)
Linux下檢視硬體配置
在linux下檢視硬體著實沒有windows下那麼直觀,不過當掌握之後其實也是蠻方便的。檢視cpu cat proc cpuinfo 記憶體 暫時沒有找見,不過可以用cat proc meminfo來看記憶體的使用情況。pci裝置 lspci 或者 cat proc bus pci devices來...
Linux 下 硬體資訊 檢視
在linux環境開發驅動程式,首先要探測到新硬體,接下來就是安裝驅動程式。探測硬體裝置 用硬體檢測程式kuduz探測新硬體 service kudzu start or restart 檢視cpu資訊 cat proc cpuinfo 檢視板卡資訊 cat proc pci 檢視pci資訊 lspc...
Linux下檢視硬體配置
1 檢視cpu資訊 a.獲取cpu詳細資訊 cat proc cpuinfo b.檢視cpu型號 cat proc cpuinfo grep name uniq c 8 model name intel r xeon r cpu e5410 2.33ghz 說明有8個邏輯cpu,以及cpu的型號 主...