Linux教程

在 Linux 下查看硬件配置

本文主要是介绍在 Linux 下查看硬件配置,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

参考自:

https://www.binarytides.com/linux-commands-hardware-info/

https://www.binarytides.com/linux-lshw-command/

以 CentOS 为例,安装 lshw:

yum install lshw

然后运行:

sudo lshw -short

太长可以根据需要,显示部分硬件信息:

# 内存
lshw -short -class memory

# CPU
lshw -class processor

# 磁盘
lshw -short -class disk -class storage -class volume

#网络
lshw -class network

#输出报告
lshw -html > hardware.html

查看磁盘占用:

df -H

查看 CPU 和内存占用:

top

参数详细解释:https://www.cnblogs.com/mengchunchen/p/9669704.html

这篇关于在 Linux 下查看硬件配置的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!