标签:linux
查看Linux系统的所有配置命令
1、查看主板的序列号:
dmidecode | grep -i ‘serial number‘
2、查看CPU信息:
cat /proc/cpuinfo
dmesg | grep -i ‘cpu‘
dmidecode -t processor
3、查看内存信息:
cat /proc/meminfo
free -m
vmstat
5、查看网卡信息:
dmesg | grep -i ‘eth‘
cat /etc/sysconfig/hwconf | grep -i ‘eth‘
ethtool -i eth0
7、查看USB设备信息:
cat /proc/bus/usb/devices
6、查看键盘鼠标:
cat /proc/bus/input/devices
8、查看系统硬盘信息和使用情况:
fdisk -l && df
9、查看各设备的中断请求(IRQ):
cat /proc/interrupts
10、查看系统体系结构:
uname -a
本文出自 “乌云科技” 博客,请务必保留此出处http://wuyunkeji.blog.51cto.com/12028005/1909255
标签:linux
原文地址:http://wuyunkeji.blog.51cto.com/12028005/1909255