本文介绍: 如果电源是双电源,则会显示两组一样的信息。和lshw中的显示内存部分相同的。会记录所有硬件相关信息。但可以使用其他命令查看。来获取指定硬件信息。例如内存相关可以使用

查看服务器硬件信息

dmidecode

root@uos-PC:/home/uos/Downloads/log/var/log/tuned# dmidecodeh
Usage: dmidecode [OPTIONS]
Options are:
d, —devmem 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
t, —type TYPE Only display the entries of given type
-H, —handle HANDLE Only display the entry of given handle
-u, —dump Do not decode the entries
dumpbin FILE Dump the DMI data to a binary file
–fromdump FILE Read the DMI data from a binary file
–no-sysfs Do not attempt to read DMI data from sysfs files
–oemstring N Only display the value of the given OEM string
-V, —version Display the version and exit

例如查看电源信息

$ dmidecode > /tmp/hardware.log
$ grep -ni "system power" /tmp/hardware.log

551:System Power Supply
## 可以进入/tmp/hardware.log 查看具体内容
System Power Supply
        Power Unit Group: 1
        Location: To Be Filled By O.E.M.
        Name: To Be Filled By O.E.M.
        Manufacturer: To Be Filled By O.E.M.
        Serial Number: To Be Filled By O.E.M.
        Asset Tag: To Be Filled By O.E.M.
        Model Part Number: To Be Filled By O.E.M.
        Revision: To Be Filled By O.E.M.
        Max Power Capacity: Unknown
        Status: Present, OK
        Type: Switching
        Input Voltage Range Switching: Auto-switch
        Plugged: Yes
        Hot Replaceable: No
        Input Voltage Probe Handle: 0x0035
        Cooling Device Handle: 0x0037
        Input Current Probe Handle: 0x0038

如果电源是双电源,则会显示两组一样的信息

#有效输入关键词:
bios
system
baseboard
chassis
processor
memory
Cache
connector
slot

全部编码列表

#全部编码列表
0 BIOS
1 System
2 Base Board
3 Chassis
4 Processor
5 Memory Controller
6 Memory Module
7 Cache
8 Port Connector
9 System Slots
10 On Board Devices
11 OEM Strings
12 System Configuration Options
13 BIOS Language
14 Group Associations
15 System Event Log
16 Physical Memory Array
17 Memory Device
18 32-bit Memory Error
19 Memory Array Mapped Address
20 Memory Device Mapped Address
21 Built-in Pointing Device
22 Portable Battery
23 System Reset
24 Hardware Security
25 System Power Controls
26 Voltage Probe
27 Cooling Device
28 Temperature Probe
29 Electrical Current Probe
30 Out-of-band Remote Access
31 Boot Integrity Services
32 System Boot
33 64-bit Memory Error
34 Management Device
35 Management Device Component
36 Management Device Threshold Data
37 Memory Channel
38 IPMI Device
39 Power Supply
40 Additional Information
41 Onboard Device

可以通过命令

dmidecode -t 编码

获取指定硬件信息
例如获取电源信息

$ /usr/sbin/dmidecode -t 39
# dmidecode 3.2
Getting SMBIOS data from sysfs.
SMBIOS 3.2.0 present.

Handle 0x0039, DMI type 39, 22 bytes
System Power Supply
        Power Unit Group: 1
        Location: To Be Filled By O.E.M.
        Name: To Be Filled By O.E.M.
        Manufacturer: To Be Filled By O.E.M.
        Serial Number: To Be Filled By O.E.M.
        Asset Tag: To Be Filled By O.E.M.
        Model Part Number: To Be Filled By O.E.M.
        Revision: To Be Filled By O.E.M.
        Max Power Capacity: Unknown
        Status: Present, OK
        Type: Switching
        Input Voltage Range Switching: Auto-switch
        Plugged: Yes
        Hot Replaceable: No
        Input Voltage Probe Handle: 0x0035
        Cooling Device Handle: 0x0037
        Input Current Probe Handle: 0x0038

使用lshw

# lshw --help
Hardware Lister (lshw) - 
usage: lshw [-format] [-options ...]
       lshw -version

        -version        print program version ()

format can be
        -html           output hardware tree as HTML
        -xml            output hardware tree as XML
        -json           output hardware tree as a JSON object
        -short          output hardware paths
        -businfo        output bus information

options can be
        -class CLASS    only show a certain class of hardware
        -C CLASS        same as '-class CLASS'
        -c CLASS        same as '-class CLASS'
        -disable TEST   disable a test (like pci, isapnp, cpuid, etc. )
        -enable TEST    enable a test (like pci, isapnp, cpuid, etc. )
        -quiet          don't display status
        -sanitize       sanitize output (remove sensitive information like serial numbers, etc.)
        -numeric        output numeric IDs (for PCI, USB, etc.)
        -notime         exclude volatile attributes (timestamps) from output

lshw > hardware.txt
记录所有硬件的相关信息
可以使用其他命令查看
例如内存相关可以使用lsmem和lshw中的显示内存部分相同
cpu可以使用lscpu查看

原文地址:https://blog.csdn.net/imliuqun123/article/details/130149929

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任

如若转载,请注明出处:http://www.7code.cn/show_45558.html

如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱suwngjj01@126.com进行投诉反馈,一经查实,立即删除

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注