Linux下Dmidecode查看硬件信息

本文发布时间: 2019-Mar-22
查看服务器型号:dmidecode | grep 'Product Name'查看主板的序列号:dmidecode |grep 'Serial Number'查看系统序列号:dmidecode -s system-serial-number查看内存信息:dmidecode -t memory查看OEM信息:dmidecode -t 11Dmidecode 这款软件允许你在 Linux 系统下获取有关硬件方面的信息。Dmidecode 遵循 SMBIOS/DMI 标准,其输出的信息包括 BIOS、系统、主板、处理器、内存、缓存等等。偶发现这个工具很有用,就总结一下。一、Dmidecode简介DMI (Desktop Management Interface, DMI)就是帮助收集电脑系统信息的管理系统,DMI信息的收集必须在严格遵照SMBIOS规范的前提下进行。 SMBIOS(System Management BIOS)是主板或系统制造者以标准格式显示产品管理信息所需遵循的统一规范。SMBIOS和DMI是由行业指导机构Desktop Management Task Force (DMTF)起草的开放性的技术标准,其中DMI设计适用于任何的平台和操作系统。DMI充当了管理工具和系统层之间接口的角色。它建立了标准的可管理系统更加方便了电脑厂商和用户对系统的了解。DMI的主要组成部分是Management Information Format (MIF)数据库。这个数据库包括了所有有关电脑系统和配件的信息。通过DMI,用户可以获取序列号、电脑厂商、串口信息以及其它系统配件信息。dmidecode的输出格式一般如下:Handle 0×0002 DMI type 2, 8 bytes Base Board Information Manufacturer:Intel Product Name: C440GX+ Version: 727281-0001 Serial Number: INCY92700942其中的前三行都称为记录头(recoce Header), 其中包括了:recode id(handle): DMI表中的记录标识符,这是唯一的,比如上例中的Handle 0×0002。dmi type id: 记录的类型,譬如说:BIOS,Memory,上例是type 2,即”Base Board Information”recode size: DMI表中对应记录的大小,上例为8 bytes.(不包括文本信息,所有实际输出的内容比这个size要更大。)记录头之后就是记录的值decoded values: 记录值可以是多行的,比如上例显示了主板的制造商(manufacturer)、model、version以及serial Number。二、Dmidecode的作用dmidecode的作用是将DMI数据库中的信息解码,以可读的文本方式显示。由于DMI信息可以人为修改,因此里面的信息不一定是系统准确的信息。三、安装DmidecodeDmidecode 在主流的 Linux 发行版中都可以找到,只需通过所用发行版的包管理器安装即可,如:apt-get install dmidecode或者使用官方包安装:Dmidecode源码包下载地址:http://download.savannah.GNU.org/releases/dmidecode/Win版本下载地址:http://gnuwin32.sourceforge.net/packages/dmidecode.htm四、dmidecode命令用法详解不带选项执行 dmidecode 通常会输出所有的硬件信息。Dmidecode 有个很有用的选项 -t,可以按指定类型输出相关信息,假如要获得处理器方面的信息,则可以执行dmidecode -t processor输出:# dmidecode 2.10SMBIOS 2.6 present.Handle 0x0004, DMI type 4, 40 bytesProcessor InformationSocket Designation: CPU 1Type: Central ProcessorFamily: XeonManufacturer: IntelID: A5 06 01 00 FF FB EB BFSignature: Type 0, Family 6, Model 26, Stepping 5Flags:FPU (Floating-point unit on-chip)VME (Virtual mode extension)DE (Debugging extension)------Usage: dmidecode [OPTIONS]Options are:-d, --dev-mem FILE Read memory from device FILE (default: /dev/mem)从设备文件读信息,输出内容与不加参数标准输出相同-h, --help Display this help text and exit显示帮助信息-q, --quiet Less verbose output显示更少的简化信息-s, --string KEYWORD Only display the value of the given DMI string只显示指定DMI字符串的信息-t, --type TYPE Only display the entries of given type只显示指定条目的信息-u, --dump Do not decode the entries显示未解码的原始条目内容--dump-bin FILE Dump the DMI data to a binary file--from-dump FILE Read the DMI data from a binary file-V, --version Display the version and exit显示版本信息五、dmidecode参数string及type列表(1)Valid string keywords are:bios-vendorbios-versionbios-release-datesystem-manufacturersystem-product-namesystem-versionsystem-serial-numbersystem-uuidbaseboard-manufacturerbaseboard-product-namebaseboard-versionbaseboard-serial-numberbaseboard-asset-tagchassis-manufacturerchassis-typechassis-versionchassis-serial-numberchassis-asset-tagprocessor-familyprocessor-manufacturerprocessor-versionprocessor-frequency(2)Valid type keywords are:biossystembaseboardchassisprocessormemoryCacheconnectorslot(3)type全部编码列表0 BIOS1 System2 Base Board3 Chassis4 Processor5 Memory Controller6 Memory Module7 Cache8 Port Connector9 System Slots10 On Board Devices11 OEM Strings12 System Configuration Options13 BIOS Language14 Group Associations15 System Event Log16 Physical Memory Array17 Memory Device18 32-bit Memory Error19 Memory Array Mapped Address20 Memory Device Mapped Address21 Built-in Pointing Device22 Portable Battery23 System Reset24 Hardware Security25 System Power Controls26 Voltage Probe27 Cooling Device28 Temperature Probe29 Electrical Current Probe30 Out-of-band Remote Access31 Boot Integrity Services32 System Boot33 64-bit Memory Error34 Management Device35 Management Device Component36 Management Device Threshold Data37 Memory Channel38 IPMI Device39 Power Supply40 Additional Information41 Onboard Device关于 Dmidecode 的更多用法,你可以通过指定 -h 选项查询


(以上内容不代表本站观点。)
---------------------------------
本网站以及域名有仲裁协议。
本網站以及域名有仲裁協議。

2024-Mar-04 02:10pm
栏目列表