dmidecode經常使用參數詳解
ios
做者:尹正傑緩存
版權聲明:原創做品,謝絕轉載!不然將追究法律責任。服務器
dmidecode這個命令真是神器啊,他能快速的獲取服務器的硬件信息,並且這個命令有不少的花式玩法,今天讓咱們一塊兒來學習一下啊ide
這個命令的奇妙之處吧。若是您只在命令行敲擊dmidecode這個命令的話,它會將服務器的設備硬件信息,包括設備型號、BIOS、系統、學習
主板、處理器、內存、緩存詳細信息等等都例舉出來,這樣很不方便呢~ui
1.參數:-s,只顯示指定DMI字符串的信息(DMI即DesktopManagement Interface, 就是經過關鍵字收集電腦系統信息的管理系統)this
好比獲取服務器的惟一標識:UUIDspa
yinzhengjie:~ # dmidecode -s system-uuid命令行
這個就是輸入服務器的惟一標識UUID啦~那麼咱們還能夠經過-s選項查看其餘的東西呢code
其它參數:
Valid string keywords are:
bios-vendor
bios-version
bios-release-date
system-manufacturer
system-product-name
system-version
system-serial-number
system-uuid
baseboard-manufacturer
baseboard-product-name
baseboard-version
baseboard-serial-number
baseboard-asset-tag
chassis-manufacturer
chassis-type
chassis-version
chassis-serial-number
chassis-asset-tag
processor-family
processor-manufacturer
processor-version
processor-frequency
yinzhengjie:~ #
2.參數:-q,簡化輸出全部的硬件以及軟件的信息
3.參數:-t,只顯示指定類型的條目
yinzhengjie:~ # dmidecode -t system
經常使用類型的參數:
bios
system
baseboard
chassis
processor
memory
cache
connector
slot
更多參數能夠使用yinzhengjie:~ # dmidecode -h來查看選項功能,選定錯誤了的話系統會提示出有效的具體參數,因此咱們只要瞭解一下幾個參數什麼意思就OK啦
yinzhengjie:~ # dmidecode -hUsage: dmidecode [OPTIONS]Options are: -d, --dev-mem FILE Read memory from device FILE (default: /dev/mem) #從設備文件中讀取信息,輸出文件內容與不加參數相同 -h, --help Display this help text and exit #顯示幫助信息 -q, --quiet Less verbose output #簡化信息輸出 -s, --string KEYWORD Only display the value of the given DMI string #只顯示指定DMI字符串的信息(DMI即DesktopManagement Interface, 就是經過關鍵字收集電腦系統信息的管理系統) -t, --type TYPE Only display the entries of given type #只顯示指定類型的條目 -u, --dump Do not decode the entries #顯示不解碼的條目 -V, --version Display the version and exit #顯示版本信息yinzhengjie:~ #