Skip to main content

使用Linux命令行检测硬件信息

· One min read
Alan

使用命令行查看系统硬件信息, 文章摘自Check Ubuntu Hardware Info.

dmidecode

sudo dmidecode -t4 # CPU硬件信息
sudo dmidecode -t17 # 内存条硬件信息
sudo dmidecode -t2 # 显示主板(Motherboard)信息
sudo dmidecode -t10 # 显示主板上的显卡活声卡信息

lshw

sudo lshw -short # 列出所有硬件的摘要信息

# 显示硬盘详细信息
# -class 参数支持 system, bus, memory, processor, disk, storage, bridge, generic, display, volume, bus, network, multimedia, input.
sudo lshw -class disk

inxi

# 安装 
sudo apt install -y inxi
sudo inxi -bxx

其他

free -h # 显示内存大小及占用信息