Linux看看硬體資訊

2021-09-02 00:20:36 字數 1286 閱讀 1347

agent38:~ # dmidecode|grep "system information" -a9

system information

manufacturer: huawei

product name: rh2288h v3

version: tbd by oem

serial number: 2102311tbw10h9000026

uuid: f244425d-2791-e711-86a5-a0086f2ee6b9

wake-up type: power switch

sku number: type1sku0

family: type1family

2015-01-21 09:35:07

dmidecode 用來檢視裝置硬體資訊,包括裝置型號、bios、系統、主機板、處理器、記憶體、快取詳細資訊等等。

常用引數:

# dmidecode -h

usage: dmidecode [options]

options are:

-d,--dev-mem file     read memory fromdevice file (default: /dev/mem)

從裝置檔案中讀取資訊,輸出檔案內容與不加引數相同

-h,--help             display this help textand exit

顯示幫助資訊

-q,--quiet            less verbose output

簡化資訊輸出

-s,--string keyword   only display the valueof the given dmi string

只顯示指定dmi字串的資訊(dmi即desktopmanagement inte***ce, 就是幫助      收集電腦系統資訊的管理系統)

-t,--type type        only display theentries of given type

只顯示指定型別的條目

-u,--dump             do not decode theentries

顯示不解碼的條目

--dump-bin file      dump the dmidata to a binary file

--from-dump file     read the dmidata from a binary file

-v,--version          display the version andexit

顯示版本資訊

Linux檢視硬體資訊

在linux環境開發驅動程式,首先要探測到新硬體,接下來就是開發驅動程式。常用命令整理如下 用硬體檢測程式kudzu探測新硬體 service kudzu start or restart 檢視cpu資訊 cat proc cpuinfo 檢視板卡資訊 cat proc pci 檢視pci資訊 ls...

linux 檢視硬體資訊

引用 在linux的桌面版本中,檢視這些東西的確很方便,有圖形化的工具可以使用。但是在linux伺服器版上,或者遠端ssh連線的時候,就沒有圖形化的介面可以操作了。此時如果我們需要了解這些資訊,就只能依靠linux下的命令了。在這篇文章裡,我將介紹一下檢視cpu資訊 記憶體資訊 硬碟分割槽 硬碟型號...

檢視Linux硬體資訊

1 主機板資訊 檢視主機板的序列號 dmidecode grep i serial number 2,cpu資訊 通過 proc檔案系統 1 cat proc cpuinfo 通過檢視開機資訊 2 dmesg grep i cpu 3 dmidecode t processor 3 硬碟資訊 檢視分...