1.查看服务器型号、序列号
dmidecode | grep "System Information" -A9
2.查看主板型号
dmidecode | grep -A16 "System Information$"
3.查看BIOS信息
dmidecode -t bios
4.查看内存槽及内存条
dmidecode -t memory
5.查看网卡信息
dmesg | grep -i Ethernet
6.查看pci信息,即主板所有硬件槽信息
lspci | head -10
7.查看CPU的相关信息
lscpu
8.查看cpu运行模式
getconf LONG_BIT
9.最大支持多少内存
dmidecode|grep -P 'Maximum/s+Capacity'
10.Linux 查看内存的频率
dmidecode | grep -A16 "Memory Device"|grep 'Speed'
11.查看所有网卡的链路状态
for i in `seq 0 9`;do ethtool em${i} | egrep 'em|Link';done
12.查看系统运行级别
systemctl get-defaultsystemctl list-unit-files 查看所有模块