linux 查看服务器cpu总数
时间: 2023-09-20 11:07:04 浏览: 63
Linux中查看物理CPU个数、核数、逻辑CPU个数的方法
5星 · 资源好评率100%
可以使用以下命令来查看 Linux 服务器的 CPU 总数:
```
cat /proc/cpuinfo | grep "physical id" | sort -u | wc -l
```
这条命令会输出服务器上物理 CPU 的数量。
阅读全文
Linux中查看物理CPU个数、核数、逻辑CPU个数的方法