Wednesday, March 17, 2021

RHEL - dmidcode

dmidecode dumps a computer's DMI (some say SMBIOS) table contents in a human-readable format. This table contains a description of the system's hardware components, as well as other useful pieces of information such as serial numbers and BIOS revision. You can retrieve this information without having to probe for the actual hardware.

SMBIOS stands for System Management BIOS, while DMI stands  for  Desktop  Management  Interface.  Both standards are tightly related and developed by the DMTF (Desktop Management Task Force).

dmidecode will try to locate the DMI table. It will first try to read the DMI table from sysfs, and next try reading directly from memory if sysfs access failed.  If  dmidecode  succeeds in  locating  a valid DMI table, it will then parse this table and display a list of records.

For more detail,
$ nam dmidecode

# systemctl status
# dmidecode -t memory
$ dmidecode -t bios
# faillock --reset

No comments:

Post a Comment

Git branch show detached HEAD

  Git branch show detached HEAD 1. List your branch $ git branch * (HEAD detached at f219e03)   00 2. Run re-set hard $ git reset --hard 3. ...