zoukankan      html  css  js  c++  java
  • linux查看硬件配置命令


    1、查看服务器的CPU

    • 查看CPU信息:cat /proc/cpuinfo
    • 物理cpu个数:cat /proc/cpuinfo | grep "physical id" | sort | uniq | wc -l
    • 每个物理cpu中core的个数(即核数):cat /proc/cpuinfo | grep "cpu cores" | uniq

      服务器的逻辑CPU = 物理个数 * 核数

    2、查看服务器的内存情况 

      [root@localhost ~]# free -h
          total     used      free      shared       buff/cache        available
      Mem:     15G     857M     12G   23M           1.5G                 13G

      参数解释:

    • total 内存总数
    • used 已经使用的内存数
    • free 空闲的内存数
    • shared 多个进程共享的内存总额
    • buffers Buffer Cache和cached Page Cache 磁盘缓存的大小
    • -buffers/cache (已用)的内存数:used - buffers - cached
    • +buffers/cache(可用)的内存数:free + buffers + cached
    • 可用的memory=free memory+buffers+cached

    3、服务器磁盘使用情况

    • 查看当前硬盘使用情况: df –h
    • 查看硬盘性能:iostat -x 1 10

    4、查看环境变量

    • 查看环境变量:env 

    5、网络

    • 查看所有网络接口的属性:ifconfig 
    • 查看防火墙设置:iptables -L
    • 查看路由表:route -n
    • 查看所有监听端口:netstat -lntp
    • 查看所有已经建立的连接:netstat -antp
    • 查看网络统计信息:netstat -s


      世间万物
          花是花,草是草,你是你,我是我
              只要拥有这样的自由,满心才是欢喜



  • 相关阅读:
    jchdl
    jchdl
    UVa 11134 (区间上的贪心) Fabled Rooks
    UVa (二分) 11627 Slalom
    POJ 1037 (计数 + DP) 一个美妙的栅栏
    HDU 3448 Bag Problem
    HDu 3449 (有依赖的01背包) Consumer
    POJ 1456 (贪心+并查集) Supermarket
    POJ 2236 (简单并查集) Wireless Network
    POJ 1703 Find them, Catch them
  • 原文地址:https://www.cnblogs.com/merely/p/10389865.html
Copyright © 2011-2022 走看看