1.检查CPU情况
# 型号及核数
cat /proc/cpuinfo | grep name | cut -f2 -d: | uniq -c
# 查看物理cpu个数
cat /proc/cpuinfo | grep "physical id" | sort | uniq | wc -l
# 查看逻辑cpu个数
cat /proc/cpuinfo | grep "processor" | wc -l
cat /proc/cpuinfo | grep 'process' | sort | uniq | wc -l
# 查看每个CPU核数
cat /proc/cpuinfo | grep "cores" | uniq
2.查看内存
free -h
3.查看磁盘信息
# 查看磁盘列表
df -h
# 查看磁盘是机械盘或SSD盘(1为机械盘,0为SSD盘)
lsblk -d -o name,rota
文章来源:https://www.toymoban.com/news/detail-717807.html
4.查看linux版本
# 查看Linux内核版本:
cat /proc/version //查看linux版本信息
uname -a // 查看内核/OS/CPU信息
# 查看Linux系统版本的命令:
lsb_release -a
cat /etc/redhat-release
文章来源地址https://www.toymoban.com/news/detail-717807.html
网络检测
# 检查网络
ping 10.57.34.195
# 检查端口是否畅通
telnet 10.57.31.217 3306
时钟检查
# ntpstat查看NTP服务器的状态
ntpstat
字符检查
locale | grep LANG // LANG=zh_CN.UTF-8
到了这里,关于服务器资源检查的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!