centos7如何查看cpu型号

lewis 2019-12-02 24次阅读

centos7中查看cpu型号的方法:1、打开centos7终端;2、在centos7终端命令行中输入“cat /proc/cpuinfo | grep name | cut -f2 -d: | uniq -c”命令查看cpu型号即可。

具体操作步骤:

1、在centos7系统桌面中使用快捷键【Ctrl+Alt+T】打开centos7终端命令行模式。

2、在centos7终端命令行中输入以下命令查看cpu型号即可。

cat /proc/cpuinfo | grep name | cut -f2 -d: | uniq -c #查看cpu型号

完整示例:

[root@localhost ~]# cat /proc/cpuinfo | grep name | cut -f2 -d: | uniq -c

8 Intel(R) Xeon(R) CPU E5-2670 v2 @ 2.50GHz

[root@localhost ~]#



发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。