一、查看服务器硬件信息
查看服务器型号、序列号
dmidecode|grep "System Information" -A9|egrep "Manufacturer|Product|Serial""
查看主板型号
dmidecode |grep -A16 "System Information$"
查看BIOS信息
dmidecode -t bios
查看内存槽及内存条
dmidecode -t memory | head -45 | tail -23
查看网卡信息
dmesg | grep -i Ethernet
二、查看CPU信息
(1)查看cpu型号
cat /proc/cpuinfo | grep name | cut -f2 -d: | uniq -c
(2)查看系统中实际物理CPU的数量
grep 'physical id' /proc/cpuinfo | sort | uniq | wc -l
(3)系统中逻辑CPU的数量(核数)
cat /proc/cpuinfo |grep 'processor'|wc -l
(4)查看单颗物理CPU核数
cat /proc/cpuinfo |grep "cores"|uniq
(5)查看CPU的主频
cat /proc/cpuinfo |grep MHz|uniq
- 查看CPU的详细信息
cat /proc/cpuinfo | head -20
- 查看CPU的相关信息
lscpu
(8)查看cpu运行模式
getconf LONG_BIT
(9)查看cpu是否支持64bit
#结果大于0, 说明支持64bit计算. lm指long mode, 支持lm则是64bit
cat /proc/cpuinfo | grep flags | grep ' lm ' | wc -l
三、查看内存信息
(1)查看内存硬件信息
dmidecode -t memory | head -45 | tail -24
(2)最大支持多少内存
dmidecode|grep -P 'Maximum\s+Capacity'
- Linux 查看内存的频率
dmidecode|grep -A16 "Memory Device"|grep 'Speed'
- Linux 查看内存的详细信息
cat /proc/meminfo |head -20
- Linux 查看内存的使用情况:
free -m //-b,-k,-m,-g show output in bytes,KB,MB,or GB
四、查看硬盘信息
(1)查看挂接的分区状态
fdisk -l |grep Disk
查看硬盘和分区分布
lsblk
(3)查看硬盘和分区的详细信息
fdisk -l
(4)查看挂接的分区状态
mount | column -t
(5)查看交换分区状态
swapon -s
(6)查看硬盘使用情况
df -hT
五、查看网卡信息
查看网卡的链路状态文章来源:https://www.toymoban.com/news/detail-445698.html
#Link detected: yes代表链路连接正常
ethtool 网卡名|egrep -i 'eth|link'
茫茫人海中,遇见不容易,留个赞再走吧。(^з^)-☆文章来源地址https://www.toymoban.com/news/detail-445698.html
到了这里,关于linux 查看硬件服务器命令大全(超详细)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!