在linux系统终端查看硬件信息

使用如下命令查看包括CPU、内存、硬盘、主板在内的各种硬件相关的信息

  • CPU型号

    1
    cat /proc/cpuinfo | grep "model name" | uniq
  • 查看CPU物理个数

    1
    cat /proc/cpuinfo | grep "physical id" | uniq | wc -l
  • 查看内存信息

    1
    2
    3
    # 先安装工具软件,以archlinux为例
    sudo pacman -S dmidecode
    sudo dmidecode -t memory | grep Size
  • 查看内存条厂家

    1
    sudo dmidecode -t memory | grep Manufacturer
  • 查看硬盘信息

    1
    fdisk -l | grep "Disk /dev/sd"
  • 查看主板信息

    1
    sudo dmidecode | grep -A16 "System Information$"