zoukankan      html  css  js  c++  java
  • Linux 系统查看服务器SN序列号以及服务器型号

    单独查看服务器的序列号:

    ~]# dmidecode -t system |grep 'Serial Number'
    Serial Number: c0275c93-87db-49a9-9197-f05dd825afea

    单独查看服务器型号:

    ~]# dmidecode -t system |grep 'Product'
    Product Name: Alibaba Cloud ECS

    统一查看服务器SN序列号和型号
    ~]# dmidecode -t system |grep 'System Information' -A9 | egrep 'Manufacturer|Product|Serial'
    Manufacturer: Alibaba Cloud(厂商)   
    Product Name: Alibaba Cloud ECS(型号)
    Serial Number: c0275c93-87db-49a9-9197-f05dd825afea(序列号)

    查看内存条信息及使用情况(内存的插槽数,已经使用多少插槽.每条内存多大)

    ~]# dmidecode -t memory | grep Size

    Size: 2048 MB

  • 相关阅读:
    UVA
    [CQOI2018] 社交网络
    UVA
    51nod 1314 定位系统
    51nod 1211 数独
    51nod 1392 装盒子
    51nod1253 Kundu and Tree
    51nod1313 完美串
    51nod1039 x^3 mod p
    51nod1369 无穷印章
  • 原文地址:https://www.cnblogs.com/5444de/p/12869804.html
Copyright © 2011-2022 走看看