You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

140 lines
4.6 KiB

6 years ago
# **dmidecode**
7 years ago
6 years ago
## 说明
7 years ago
5 years ago
**dmidecode命令** 可以让你在Linux系统下获取有关硬件方面的信息。dmidecode的作用是将DMI数据库中的信息解码以可读的文本
方式显示。由于DMI信息可以人为修改因此里面的信息不一定是系统准确的信息。dmidecode遵循SMBIOS/DMI标准其输出的信息包括
BIOS、系统、主板、处理器、内存、缓存等等
7 years ago
5 years ago
DMIDesktop Management Interface,DMI就是帮助收集电脑系统信息的管理系统DMI信息的收集必须在严格遵照SMBIOS规范的前提
下进行。SMBIOSSystem Management BIOS是主板或系统制造者以标准格式显示产品管理信息所需遵循的统一规范。SMBIOS和DMI是
由行业指导机构Desktop Management Task Force(DMTF)起草的开放性的技术标准其中DMI设计适用于任何的平台和操作系统
7 years ago
5 years ago
DMI充当了管理工具和系统层之间接口的角色。它建立了标准的可管理系统更加方便了电脑厂商和用户对系统的了解。DMI的主要组成
部分是Management Information Format(MIF)数据库。这个数据库包括了所有有关电脑系统和配件的信息。通过DMI用户可以获取
序列号、电脑厂商、串口信息以及其它系统配件信息
7 years ago
5 years ago
```markdown
6 years ago
Usage: dmidecode [OPTIONS]
7 years ago
6 years ago
-d, --dev-mem FILE 从设备文件读取信息,输出内容与不加参数标准输出相同(默认: /dev/mem)
-q, --quiet Less verbose output
-s, --string KEYWORD 只显示指定DMI字符串的信息(string)
-t, --type TYPE 只显示指定类型的信息(type)
-u, --dump 显示未解码的原始条目内容
--dump-bin FILE 将DMI数据转储到一个二进制文件中
--from-dump FILE 从一个二进制文件读取DMI数据
--no-sysfs Do not attempt to read DMI data from sysfs files
--oem-string N Only display the value of the given OEM string
7 years ago
```
6 years ago
## dmidecode参数string及type列表如下
7 years ago
1Valid string keywords are
6 years ago
* bios-vendor
* bios-version
* bios-release-date
* system-manufacturer
* system-product-name
* system-version
* system-serial-number
* system-uuid
* baseboard-manufacturer
* baseboard-product-name
* baseboard-version
* baseboard-serial-number
* baseboard-asset-tag
* chassis-manufacturer
* chassis-type
* chassis-version
* chassis-serial-number
* chassis-asset-tag
* processor-family
* processor-manufacturer
* processor-version
* processor-frequency
7 years ago
2Valid type keywords are
6 years ago
* bios
* system
* baseboard
* chassis
* processor
* memory
* Cache
* connector
* slot
7 years ago
3type全部编码列表
6 years ago
* BIOS
* System
* Base Board
* Chassis
* Processor
* Memory Controller
* Memory Module
* Cache
* Port Connector
* System Slots
* On Board Devices
* OEM Strings
* System Configuration Options
* BIOS Language
* Group Associations
* System Event Log
* Physical Memory Array
* Memory Device
* 32-bit Memory Error
* Memory Array Mapped Address
* Memory Device Mapped Address
* Built-in Pointing Device
* Portable Battery
* System Reset
* Hardware Security
* System Power Controls
* Voltage Probe
* Cooling Device
* Temperature Probe
* Electrical Current Probe
* Out-of-band Remote Access
* Boot Integrity Services
* System Boot
* 64-bit Memory Error
* Management Device
* Management Device Component
* Management Device Threshold Data
* Memory Channel
* IPMI Device
* Power Supply
* Additional Information
* Onboard Device
## 实例
5 years ago
```bash
7 years ago
dmidecode -t 1 # 查看服务器信息
5 years ago
dmidecode -s system-product-name # 查看硬件制造商
6 years ago
dmidecode | grep 'Product Name' # 查看服务器型号
5 years ago
dmidecode -s system-serial-number # 查看系统序列号
6 years ago
dmidecode | grep 'Serial Number' # 查看主板的序列号
7 years ago
dmidecode -t 2 # 查看主板信息
6 years ago
dmidecode -t memory # 查看内存信息
dmidecode -t 11 # 查看OEM信息
7 years ago
dmidecode -t 17 # 查看内存条数
dmidecode -t 16 # 查询内存信息
dmidecode -t 4 # 查看CPU信息
5 years ago
dmidecode -q | less # 显示SMBIOS/DMI 信息
7 years ago
cat /proc/scsi/scsi # 查看服务器硬盘信息
6 years ago
#不带选项执行dmidecode命令通常会输出所有的硬件信息。dmidecode命令有个很有用的选项-t可以按指定类型输出相关信息假如要获得处理器方面的信息则可以执行
dmidecode -t processor
7 years ago
6 years ago
dmidecode | grep -P -A5 "Memory\s+Device"|grep Size|grep -v Range # 查看内存的插槽数,已经使用多少插槽。每条内存多大,已使用内存多大
dmidecode | grep -P 'Maximum\s+Capacity' # 查看支持的最大内存容量
dmidecode | grep -A16 "Memory Device"|grep 'Speed' # 查看内存的频率
dmidecode | grep -A16 "System Information$" # 查看主板详细信息
7 years ago
```