2010-11-06 09:43:20 +0000 2010-11-06 09:43:20 +0000
47
47
Advertisement

如何查询Mac和Macbook的处理器型号?

Advertisement

“关于这台Mac "不显示,"更多信息… "也不显示…。

这个帖子说的是系统_profiler,但在这台装有雪豹的macbook上却没有: http://hintsforums.macworld.com/showthread.php?t=43422

能找到吗?

Advertisement
Advertisement

答案 (4)

177
177
177
2012-04-25 09:25:05 +0000

您可以通过以下命令找到完整的型号。

sysctl -n machdep.cpu.brand_string

这将返回类似于:

Intel(R) Core(TM) i7-2760QM CPU @ 2.40GHz

(在这里找到: http://osxdaily.com/2011/07/15/get-cpu-info-via-command-line-in-mac-os-x/ )

24
24
24
2010-11-06 12:03:25 +0000

System Profiler.app (或在OS X的新版本中为System Information.app)位于/Applications/Utilities/。你可以在Finder中按Cmd-Shift-U进入那里。

如果它不在那里,则是有管理员权限的人破坏了你的系统。重新安装 Mac OS X (或尝试使用 Pacifist 从 Mac OS X DVD 中还原 System Profiler.app)。


system_profiler是命令行对应的程序(或者System Profiler.app可能是这个CLI程序的GUI应用)。你需要在system_profiler的命令提示符下输入Terminal.app。如果你只对你的CPU和模型感兴趣,输入

system_profiler SPHardwareDataType

输出看起来像这样。

Hardware Overview:

  Model Name: MacBook Pro
  Model Identifier: MacBookPro6,2
  Processor Name: Intel Core i7
  Processor Speed: 2,66 GHz
  Number Of Processors: 1
  Total Number Of Cores: 2
  L2 Cache (per core): 256 KB
  L3 Cache: 4 MB
  Memory: 4 GB
  Processor Interconnect Speed: 4.8 GT/s
  Boot ROM Version: MBP61.0057.B0C
  SMC Version (system): 1.58f16
  Serial Number (system): W80253LDAGZ
  Hardware UUID: 598781DD-929A-1337-F00D-EF19A1B625F8
  Sudden Motion Sensor:
      State: Enabled

使用系统剖析器的另一个选择是 Mactracker ,一个包含迄今为止所有Mac型号数据库的应用程序。如果你知道你的型号(例如 “Macbook Pro (15-inch, Mid 2010) "和你的订单号(例如 "MC373LL/A"),你就可以找到你的处理器(例如2.66GHz的M 620)。

12
Advertisement
12
12
2012-06-14 20:36:52 +0000
Advertisement

补充@AlexT的回答,

open http://www.google.com/?q=$(sysctl -n machdep.cpu.brand_string | awk '{FS=" " ; print $2 "+" $3 "+" $4}')+site:ark.intel.com
```。
3
3
3
2010-11-08 10:13:00 +0000

我没有找到任何方法来检查它的软件,但在这个网站上。 http://www.everymac.com 你可以找到比系统剖析器提供的更多细节(包括cpu型号)。

Advertisement