zoukankan      html  css  js  c++  java
  • linux 查看内存信息,及其他硬件信息 dmidecode命令

    查看服务器型号:dmidecode | grep 'Product Name'
    查看主板的序列号:dmidecode |grep 'Serial Number'
    查看系统序列号:dmidecode -s system-serial-number
    查看内存信息:dmidecode -t memory
    查看OEM信息:dmidecode -t 11

    dmidecode命令选项

    -d:(default:/dev/mem)从设备文件读取信息,输出内容与不加参数标准输出相同。
    -h:显示帮助信息。
    -s:只显示指定DMI字符串的信息。(string)
    -t:只显示指定条目的信息。(type)
    -u:显示未解码的原始条目内容。
    --dump-bin file:将DMI数据转储到一个二进制文件中。
    --from-dump FILE:从一个二进制文件读取DMI数据。
    -V:显示版本信息。

    不带选项执行dmidecode命令通常会输出所有的硬件信息。dmidecode命令有个很有用的选项-t,可以按指定类型输出相关信息,假如要获得处理器方面的信息,则可以执行:dmidecode -t processor

    type全部编码列表:

    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

  • 相关阅读:
    字符串案例1
    字符串1
    标准类制作
    构造方法
    封装
    成员变量和局部变量
    类和对象的案例

    案例
    方法的参数传递
  • 原文地址:https://www.cnblogs.com/fan-gx/p/11833246.html
Copyright © 2011-2022 走看看