查看cpu情况
拿到一台服务器,相信大部分站长都会第一时间查看服务器硬件信息是否和卖家所说相符,今天小编教你如何查看centos7的cpu信息。
centos7查看CPU型号
cat /proc/cpuinfo | grep name | cut -f2 -d: | uniq -c
centos7查看物理CPU个数
cat /proc/cpuinfo | grep "physical id" | sort -u | wc -l
centos7查看逻辑CPU个数
cat /proc/cpuinfo | grep "processor" | wc -l
centos7查看CPU内核数
cat /proc/cpuinfo | grep "cpu cores" | uniq
centos7查看单个物理CPU封装的逻辑CPU数量
cat /proc/cpuinfo | grep "siblings" | uniq
centos7查看是否超线程
cat /proc/cpuinfo | grep -e "cpu cores" -e "siblings" | sort | uniq
计算是否开启超线程
逻辑CPU > 物理CPU x CPU核数 (开启超线程)
逻辑CPU = 物理CPU x CPU核数 (没有开启超线程或不支持超线程)
如果cpu cores数量和siblings数量一致,则没有启用超线程,否则超线程被启用。