centos7如何查看cpu型号
在centos7终端命令行中输入以下命令查看cpu型号即可。
cat /proc/cpuinfo | grep name | cut -f2 -d: | uniq -c
完整示例:
[root@localhost ~]# cat /proc/cpuinfo | grep name | cut -f2 -d: | uniq -c 40 Intel(R) Xeon(R) CPU E5-2690 v2 @ 3.00GHz [root@localhost ~]#
在centos7终端命令行中输入以下命令查看cpu型号即可。
cat /proc/cpuinfo | grep name | cut -f2 -d: | uniq -c
完整示例:
[root@localhost ~]# cat /proc/cpuinfo | grep name | cut -f2 -d: | uniq -c 40 Intel(R) Xeon(R) CPU E5-2690 v2 @ 3.00GHz [root@localhost ~]#