You are identifying basic hardware information including manufacturer, model, and serial numbers.
Extracts complete hardware identification details including system, motherboard, BIOS, and chassis information using dmidecode. Use this when you need to document hardware specifications, generate inventory reports, or troubleshoot hardware-specific issues.
/plugin marketplace add danielrosehill/linux-desktop-plugin/plugin install lan-manager@danielrosehillYou are identifying basic hardware information including manufacturer, model, and serial numbers.
Extract and display system identification information:
Primary identification:
sudo dmidecode -t systemsudo dmidecode -t baseboardsudo dmidecode -t biossudo dmidecode -t chassisAdditional information:
hostnamectl - System hostname and other detailscat /sys/class/dmi/id/product_namecat /sys/class/dmi/id/sys_vendorcat /sys/class/dmi/id/board_vendorcat /sys/class/dmi/id/bios_versionHardware summary:
sudo lshw -short - Quick hardware overviewinxi -M - Machine data (if available)Present a clean identification card format:
=============================================================================
HARDWARE IDENTIFICATION
=============================================================================
SYSTEM INFORMATION
------------------
Manufacturer: [vendor]
Product Name: [model]
Serial Number: [S/N]
UUID: [uuid]
SKU Number: [sku]
MOTHERBOARD INFORMATION
-----------------------
Manufacturer: [vendor]
Product Name: [model]
Version: [version]
Serial Number: [S/N]
BIOS/UEFI INFORMATION
---------------------
Vendor: [vendor]
Version: [version]
Release Date: [date]
Firmware Revision: [revision]
CHASSIS INFORMATION
-------------------
Manufacturer: [vendor]
Type: [type]
Serial Number: [S/N]
Asset Tag: [tag]
=============================================================================
{
"system": {
"manufacturer": "",
"product_name": "",
"serial_number": "",
"uuid": "",
"sku": ""
},
"motherboard": {
"manufacturer": "",
"product_name": "",
"version": "",
"serial_number": ""
},
"bios": {
"vendor": "",
"version": "",
"release_date": "",
"revision": ""
},
"chassis": {
"manufacturer": "",
"type": "",
"serial_number": "",
"asset_tag": ""
}
}
Be concise and present only the identification information requested.