Linux

如何在 Linux 中找到硬體型號?

  • May 5, 2021

我使用系統資訊實用程序獲取系統的型號以及主機板的型號。

DMI System Manufacturer     LENOVO
DMI System Product          2306CTO
DMI System Version          ThinkPad X230
DMI Motherboard Product     2306CTO  

2306CTO在這種情況下,有沒有辦法在 Linux 中獲取型號?

使用dmidecode | grep -A3 '^System Information'命令。在那裡您可以找到來自 BIOS 和硬體的所有資訊。這些是三台不同機器上的範例(這是完整輸出的摘錄):

System Information
   Manufacturer: Dell Inc.
   Product Name: Precision M4700

System Information
   Manufacturer: MICRO-STAR INTERANTIONAL CO.,LTD
   Product Name: MS-7368

System Information
   Manufacturer: HP
   Product Name: ProLiant ML330 G6

嘗試以人類可讀的形式獲取與您的基板相關sudo dmidecode -t baseboard的 DMI 表格內容的完整資訊**。對於僅System Product Name,您可以使用任何一種(鍵入dmidecode -s以獲取s**字元串關鍵字的列表):

sudo dmidecode -s system-product-name
sudo dmidecode -s baseboard-product-name

主機板資訊的其他相關選項是

sudo dmidecode -s system-version
sudo dmidecode -s baseboard-version
sudo dmidecode -s system-manufacturer
sudo dmidecode -s baseboard-manufacturer

嘗試sudo dmidecode -s獲取可用的系統 DMI 字元串的完整列表。

引用自:https://unix.stackexchange.com/questions/75750