lshw簡介及例項

2021-10-10 02:34:26 字數 1825 閱讀 6128

命令名稱: lshw

功能描述: lshw是乙個提取機器硬體配置詳細資訊的工具,並且能將結果輸出成html、json、xml等格式。

命令分類: 硬體管理

-x  啟**形介面(如果有安裝影象介面)

-html 將結果以html格式列印

-xml 將結果以xml格式列印

-json 將結果以json格式列印

-short 輸出硬體路徑

-businfo 輸出匯流排資訊

-dump 將結果匯出到乙個檔案(檔案為sqlite資料)

-class 僅顯示一類硬體資訊,可以使用lshw -short或lshw -businfo篩選硬體類別

user@user-pc:~$ sudo lshw -c network

*-network

description: wireless inte***ce

product: wireless 3165

vendor: intel corporation

physical id: 0

bus info: pci@0000:01:00.0

logical name: wlp1s0

version: 81

serial: bc:54:2f:5a:dd:9a

width: 64 bits

clock: 33mhz

capabilities: pm msi pciexpress bus_master cap_list ethernet physical wireless

configuration: broadcast=yes driver=iwlwifi driverversion=4.19.0-loongson-3-desktop firmware=29.1654887522.0 ip=10.10.6.159 latency=0 link=yes multicast=yes wireless=ieee 802.11

resources: irq:138 memory:59000000-59001fff

*-network

description: ethernet inte***ce

product: i211 gigabit network connection

vendor: intel corporation

physical id: 0

bus info: pci@0000:03:00.0

logical name: enp3s0

version: 03

serial: 00:0b:2f:19:b2:9e

capacity: 1gbit/s

width: 32 bits

clock: 33mhz

capabilities: pm msi msix pciexpress bus_master cap_list ethernet physical tp 10bt 10bt-fd 100bt 100bt-fd 1000bt-fd autonegotiation

configuration: autonegotiation=on broadcast=yes driver=igb driverversion=5.4.0-k firmware=0. 4-1 latency=0 link=no multicast=yes port=twisted pair

resources: irq:136 memory:59200000-5921ffff ioport:4000(size=32) memory:59220000-59223fff

user@user-pc:~$

SQL Drop Column語句簡介及例項

在本教程中,我們將學習如何使用sqldrop column子句從現有表中刪除乙個或多個列。1.sql drop column語句簡介 有時,想要從現有表中刪除乙個或多個未使用的列。為此,請使用alter table,如下所示 alter table table name drop column co...

HBASE簡介及部分操作例項

一 hbase簡介 hbase是乙個分布式的 面向列的開源資料庫,其名字 於hadoop資料庫 hadoop database hbase不同於一般的關聯式資料庫,它是乙個適合於非結構化資料儲存的資料庫,隸屬於apache的hadoop專案。二 hbase相關概念 表 table hbbase同樣是...

貪心演算法總結及例項簡介

基本思想 1.求解最優化問題的演算法包含一系列步驟。2.每一步都有一組選擇。3.作出當前看來最好的選擇。4.希望通過作出區域性優化選擇達到全域性優化選擇。5.貪心演算法不一定總產生優化解。6.貪心演算法是否產生優化解需嚴格證明。貪心演算法產生優化解的條件 1.貪心選擇性 若乙個優化問題的全域性優化解...