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,網卡等信息)