1.顯卡信息
dmesg | grep -i vga
lspci | grep -i vga //查看顯卡信息
2.dmidecode | grep -i 'serrial number' //查看主板信息,查看主板的序列號(hào)
3.CPU信息
#通過(guò)/proc文件系統(tǒng)
cat /proc/cpuinfo
dmesg | grep -i cpu
#通過(guò)查看開機(jī)信息
dmidecode -t processor
4.硬盤信息
fdisk -l //分區(qū)情況
df -h //大小情況
du -h //使用情況
dmesg | grep sda
5.內(nèi)存信息
cat /proc/meminfo
dmesg | grep mem
free -m
vmstat
dmldecode | grep -i mem
6.網(wǎng)卡信息
dmesg | grep -i eth
lspci | grep -i eth
7.鼠標(biāo)鍵盤和USB信息
cat /proc/bus/input/devices 查看鍵盤和鼠標(biāo)
cat /proc/bus/usb/devices 查看USB設(shè)備
cat /proc/interrupts
8.聲卡信息
lspci | grep -i vga
dmesg | grep -i vga
9.其他命令
lspci (顯示外設(shè)備信息,如USB,網(wǎng)卡等信息)