【Linux】查看服务器硬件信息

这篇具有很好参考价值的文章主要介绍了【Linux】查看服务器硬件信息。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

查看服务器硬件信息

dmidecode

root@uos-PC:/home/uos/Downloads/log/var/log/tuned# dmidecode -h
Usage: 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
-t, --type TYPE Only display the entries of given type
-H, --handle HANDLE Only display the entry of given handle
-u, --dump Do not decode the entries
–dump-bin FILE Dump the DMI data to a binary file
–from-dump FILE Read the DMI data from a binary file
–no-sysfs Do not attempt to read DMI data from sysfs files
–oem-string N Only display the value of the given OEM string
-V, --version Display the version and exit

例如查看电源信息

$ dmidecode > /tmp/hardware.log
$ grep -ni "system power" /tmp/hardware.log

551:System Power Supply
## 可以进入/tmp/hardware.log 查看具体内容
System Power Supply
        Power Unit Group: 1
        Location: To Be Filled By O.E.M.
        Name: To Be Filled By O.E.M.
        Manufacturer: To Be Filled By O.E.M.
        Serial Number: To Be Filled By O.E.M.
        Asset Tag: To Be Filled By O.E.M.
        Model Part Number: To Be Filled By O.E.M.
        Revision: To Be Filled By O.E.M.
        Max Power Capacity: Unknown
        Status: Present, OK
        Type: Switching
        Input Voltage Range Switching: Auto-switch
        Plugged: Yes
        Hot Replaceable: No
        Input Voltage Probe Handle: 0x0035
        Cooling Device Handle: 0x0037
        Input Current Probe Handle: 0x0038

如果电源是双电源,则会显示两组一样的信息

#有效输入关键词:
bios
system
baseboard
chassis
processor
memory
Cache
connector
slot

全部编码列表

#全部编码列表
0 BIOS
1 System
2 Base Board
3 Chassis
4 Processor
5 Memory Controller
6 Memory Module
7 Cache
8 Port Connector
9 System Slots
10 On Board Devices
11 OEM Strings
12 System Configuration Options
13 BIOS Language
14 Group Associations
15 System Event Log
16 Physical Memory Array
17 Memory Device
18 32-bit Memory Error
19 Memory Array Mapped Address
20 Memory Device Mapped Address
21 Built-in Pointing Device
22 Portable Battery
23 System Reset
24 Hardware Security
25 System Power Controls
26 Voltage Probe
27 Cooling Device
28 Temperature Probe
29 Electrical Current Probe
30 Out-of-band Remote Access
31 Boot Integrity Services
32 System Boot
33 64-bit Memory Error
34 Management Device
35 Management Device Component
36 Management Device Threshold Data
37 Memory Channel
38 IPMI Device
39 Power Supply
40 Additional Information
41 Onboard Device

可以通过命令

dmidecode -t 编码

来获取指定的硬件信息
例如获取电源信息

$ /usr/sbin/dmidecode -t 39
# dmidecode 3.2
Getting SMBIOS data from sysfs.
SMBIOS 3.2.0 present.

Handle 0x0039, DMI type 39, 22 bytes
System Power Supply
        Power Unit Group: 1
        Location: To Be Filled By O.E.M.
        Name: To Be Filled By O.E.M.
        Manufacturer: To Be Filled By O.E.M.
        Serial Number: To Be Filled By O.E.M.
        Asset Tag: To Be Filled By O.E.M.
        Model Part Number: To Be Filled By O.E.M.
        Revision: To Be Filled By O.E.M.
        Max Power Capacity: Unknown
        Status: Present, OK
        Type: Switching
        Input Voltage Range Switching: Auto-switch
        Plugged: Yes
        Hot Replaceable: No
        Input Voltage Probe Handle: 0x0035
        Cooling Device Handle: 0x0037
        Input Current Probe Handle: 0x0038

使用lshw

# lshw --help
Hardware Lister (lshw) - 
usage: lshw [-format] [-options ...]
       lshw -version

        -version        print program version ()

format can be
        -html           output hardware tree as HTML
        -xml            output hardware tree as XML
        -json           output hardware tree as a JSON object
        -short          output hardware paths
        -businfo        output bus information

options can be
        -class CLASS    only show a certain class of hardware
        -C CLASS        same as '-class CLASS'
        -c CLASS        same as '-class CLASS'
        -disable TEST   disable a test (like pci, isapnp, cpuid, etc. )
        -enable TEST    enable a test (like pci, isapnp, cpuid, etc. )
        -quiet          don't display status
        -sanitize       sanitize output (remove sensitive information like serial numbers, etc.)
        -numeric        output numeric IDs (for PCI, USB, etc.)
        -notime         exclude volatile attributes (timestamps) from output

lshw > hardware.txt
会记录所有硬件的相关信息
但可以使用其他命令查看
例如内存相关可以使用lsmem和lshw中的显示内存部分是相同的
cpu可以使用lscpu查看文章来源地址https://www.toymoban.com/news/detail-413219.html

到了这里,关于【Linux】查看服务器硬件信息的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • Linux 服务器 CPU 详细信息查看、物理 CPU 以及逻辑 CPU

    什么是CPU CPU: (Central Processing Unit)也称为中央处理器,主要通过内部总线,建立起芯片内各部件之间的信息传输通路 查看CPU详细信息 : 我们平常在操作Linux服务器时,如何能够知道服务器的CPU的详细信息呢 [xxx@xxx ~]#  cat /proc/cpuinfo | grep name | cut -f2 -d: | uniq -c 16: CPU 核心数 Intel®

    2024年01月25日
    浏览(60)
  • 服务器硬件规格常用查看命令——通用命令

    使用lshw命令可以查看服务器硬件配置的详细信息。使用它可以在支持DMI的x86或IA-64系统以及某些PowerPC机器上打印内存配置、固件版本、主板配置、CPU版本、G4可以工作)。目前该命令支持 CPU频率、缓存、总线速度等信息(已知PowerMac DMI(仅限x86和IA-64)、OpenFimware设备树(仅

    2024年02月05日
    浏览(53)
  • Centos7 对新服务器的硬件信息概览

    2024年02月03日
    浏览(36)
  • 使用Windows查看服务器RAID信息

    在管理和监控服务器的过程中,了解服务器的RAID(冗余阵列磁盘)信息非常重要。RAID技术可以提供数据冗余和性能增强,确保数据的安全性和可靠性。在Windows操作系统中,可以通过几种方式来查看服务器的RAID信息,包括使用磁盘管理工具和命令行工具。 下面将介绍如何使

    2024年02月04日
    浏览(50)
  • 查看服务器连接的交换机信息

    要查询与服务器连接的交换机端口,可以使用lldptool与交换机进行交互并获取相关信息。 lldptool是一个用于管理和控制链路层发现协议(LLDP)的实用工具。LLDP是一种网络协议,允许网络设备(如交换机、路由器等)在网络中相互发现和交换有关自身的信息。 lldptool允许用户查

    2024年02月02日
    浏览(50)
  • Jetson硬件平台状态查看工具jtop安装,服务器平台上可以通过nvtop工具来查看资源使用情况

    首先安装支持环境包(maybe…need) sudo apt-get install git cmake sudo apt-get install python3-dev sudo apt-get install libhdf5-serial-dev hdf5-tools sudo apt-get install libatlas-base-dev gfortran 安装 pip3 因为最终需要用 pip3 安装,所以这一步是不可缺少的。 sudo apt install python3-pip 安装 jtop sudo -H pip3 install -U jetso

    2023年04月23日
    浏览(56)
  • 查看服务器的配置,系统,cpu等信息

    查看Linux服务器配置 目录 1、查看服务器的操作系统 ​编辑2.查看CPU信息  使用`lscpu`命令查看服务器CPU信息  3.查看Linux服务器CPU核数  4.查看内存信息 查看内存使用情况:free -h 5.查看硬盘大小   6.查看服务器网卡设备配置信息 1、查看服务器的操作系统 查看操作系统 命令

    2024年02月04日
    浏览(62)
  • 统信UOS服务器系统-如何查看版本信息

    在统信服务器操作系统V20官网镜像下载列表里面看,有A版(兼容OpenAnolis社区技术路线)和E版(兼容openEuler社区技术路线)镜像的区别,但从版本发行标记里面看,从1050之后,都是同时发布,应该是版本进行了融合,实现了发版节奏一致,使用习惯和兼容性基本一致,特殊应

    2024年04月11日
    浏览(57)
  • 浪潮服务器使用ARCCONF查看RAID配置信息

    提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档 最近接管了一个浪潮服务器,系统是 Windows Server 2022 ,本来想打开硬件管理器看看硬盘配置的,结果只显示 INSPUR LOGICAL VOLUME ,而且服务器是24小时开机的,所以只能借助RAID管理工具了,我这款RAID控制器

    2024年04月23日
    浏览(60)
  • 查看服务器/IIS日志、log、访问信息基本方法

    IIS的错误日志通常位于特定的文件夹中,记录了服务器上发生的错误和异常。这些日志可以提供有关网站或应用程序出现问题的详细信息。默认情况下,IIS错误日志存储在以下路径: C:inetpublogsLogFiles 在这个目录下,可以找到以 u_errYYMMDD 的格式命名的错误日志文件,其中

    2024年02月09日
    浏览(46)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包