一种在 Ubuntu Karmic 中发现 CPU 数量和每个 CPU/核心规格的编程方法?
一种在 Ubuntu Karmic 中发现 CPU 数量和每个 CPU/核心规格的编程方法? Bash 或 C/C++、Python、Perl 都可以。谢谢!
A programmatic way to discover the number of CPUs and spec for each CPU/Core in Ubuntu Karmic? Bash or C/C++, Python, Perl are fine. Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果你有的话,可以尝试
lshw
。其他有用的工具包括lspci
、lshal
、biosdecode
等。也可以尝试/proc/cpuinfo
以及中的其他工具>/proc
@OP
/proc/cpuinfo 只是一个普通文件,所以你可以使用任何可以显示文件信息的工具来查看它(顺便说一下,cat.cat 用于连接文件)
you can try
lshw
if you have it. Other useful tools includelspci
,lshal
,biosdecode
etc. also try/proc/cpuinfo
and others at/proc
@OP
/proc/cpuinfo is just a normal file, so you can use any tools that can display file info to view it (besides cat. cat is used for concatenating files by the way)