
From dmidecode
man page:
dmidecode
is a tool for dumping 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. Thanks to this table, you can retrieve this information without having to probe for the actual hardware.
dmitui
is a TUI (Text User Interface) version that allows for easy navigation between sections, unlike dmidecode
, which requires you to specify the section as a command-line option. Additionally, dmitui
presents information in a well-organized and visually appealing manner.
A Linux based OS.
To build dmitui
:
cargo build --release
This will produce an executable file at target/release/dmitui
that you can copy to a directory in your $PATH
.
Run the following command to start dmitui
:
sudo dmitui
- Firmware (type 0)
- System (type 1)
- Baseboard (type 2)
- Chassis (type 3) (Partially)
- Firmware Language Information (type 13)
- Physical Memory Array (type 16)
- Portable Battery (type 22)
GNU General Public License v3.0 or later