查看系统硬件的信息,像序列号SN 大风起

查看硬件信息三大工具:
dmidecode命令
udevadm命令
ipmitool命令

udevadm info --query=all --name=/dev/sd*
cd /dev/disk && ls -l
cat /proc/cpuinfo | grep name | cut -f2 -d: | uniq -c
查看网卡信息【lspci|grep Ethernet】
查看 CPU 物理个数【grep 'physical id' /proc/cpuinfo | sort -u | wc -l】
查看主板信息【dmidecode |grep -A16 "System Information$"】
查看BIOS信息【dmidecode -t bios】

chkconfig --list # 列出所有系统服务

假设是一种超能力
原文地址:https://www.cnblogs.com/Haihong72H/p/15733753.html