查看物理CPU的个数
#cat /proc/cpuinfo |grep "physical id"|sort |uniq|wc -l
2
查看逻辑CPU的个数
#cat /proc/cpuinfo |grep "processor"|wc -l
24
查看CPU是几核
#cat /proc/cpuinfo |grep "cores"|uniq
6
我这里应该是2个Cpu,每个Cpu有6个core,应该是Intel的U,支持超线程,所以显示24
查看Linux内存:
top
查看多种Linux系统版本(适用于所有的linux,包括Redhat、SuSE、Debian等发行版)
lsb_release -a
查看Redhat Linux系统版本:
cat /etc/redhat-release
查看Linux服务器型号:
dmidecode | grep "Product"
查看Linux硬盘:
df -h
查看CPU、内存占用情况:
top
查看SWAP空间大小:
cat /proc/swaps
查看操作系统是32位还是64位:
getconf LONG_BIT
转载于:https://blog.51cto.com/cag2050/1158020