用于确定规格的终端命令

时间:2012-06-30 13:02:20

标签: macos

我意识到您可以通过检查桌面上的“关于此Mac”功能轻松确定macs规格。但是如果可能的话,我想通过终端来做。那你怎么去做呢?如果有任何综合资源,你可以建议我指点他们!

干杯

2 个答案:

答案 0 :(得分:7)

您正在寻找的是system_profiler命令。

创建包含所有plist的系统信息的SPDataTypes

system_profiler -xml 

创建包含特定plist的信息的SPDataType

system_profiler -xml SPHardwareRAIDDataType 

SPDataTypes的列表:

SPParallelATADataType
SPApplicationsDataType
SPAudioDataType
SPBluetoothDataType
SPCardReaderDataType
SPComponentDataType
SPDeveloperToolsDataType
SPDiagnosticsDataType
SPDiscBurningDataType
SPEthernetDataType
SPExtensionsDataType
SPFibreChannelDataType
SPFireWireDataType
SPFirewallDataType
SPFontsDataType
SPFrameworksDataType
SPDisplaysDataType
SPHardwareDataType
SPHardwareRAIDDataType
SPNetworkLocationDataType
SPLogsDataType
SPManagedClientDataType
SPMemoryDataType
SPModemDataType
SPNetworkDataType
SPPCIDataType
SPParallelSCSIDataType
SPPowerDataType
SPPrefPaneDataType
SPPrintersSoftwareDataType
SPPrintersDataType
SPConfigurationProfileDataType
SPSASDataType
SPSerialATADataType
SPSoftwareDataType
SPStartupItemDataType
SPSyncServicesDataType
SPThunderboltDataType
SPUSBDataType
SPUniversalAccessDataType
SPNetworkVolumeDataType
SPWWANDataType
SPAirPortDataType

有关如何使用system_profiler run:

的详细信息
man system_profiler

答案 1 :(得分:1)

正如@Anne发布的那样,system_profiler很有用,但是如果您需要更多细节,例如CPU型号,系列,步进,功能(例如SSSE3),请尝试

sysctl

每行输出都包含完整的类别层次结构,因此您可以将结果显示为您要查找的内容,例如。查看CPU详细信息:

sysctl | grep machdep.cpu

在线或在终端中查看man page

man sysctl