zoukankan      html  css  js  c++  java
  • Linux 查看系统配置参数

    原文链接:http://www.cnblogs.com/aric2016/p/10971690.html
             <!--一个博主专栏付费入口结束-->
            <link rel="stylesheet" href="https://csdnimg.cn/release/phoenix/template/css/ck_htmledit_views-4a3473df85.css">
                                        <link rel="stylesheet" href="https://csdnimg.cn/release/phoenix/template/css/ck_htmledit_views-4a3473df85.css">
                <div class="htmledit_views" id="content_views">
                                            <div id="cnblogs_post_body" class="blogpost-body cnblogs-markdown"><p>查看 cpu信息:</p>
    
    cat /proc/cpuinfo

    查看内存信息:

    grep MemTotal /proc/meminfo

    查看操作系统信息:

    uname -a

    查看centos版本信息:

    cat /etc/issue

    查看磁盘使用情况:

    df -h

    查看其它磁盘外设信息:

    fdisk -l

    查看所有可用块设备的信息:

    lsblk

    查看所有硬件信息:

    1. dmidecode |more
    2. 或:dmesg |more

    查看网卡信息:

     ethtool eth0

    转载于:https://www.cnblogs.com/aric2016/p/10971690.html

查看全文
  • 相关阅读:
    aspjpeg 组件在asp中的使用
    C# 使用 fckeditor 上传文件中文名乱码的问题---转
    我来挑战主页绑定,浏览器被绑架之终极方案!
    nginx简易配置
    树莓派安装中文输入法
    树莓派4超频至2.0GHz
    python3 requests使用连接池
    python3 语言特性5
    git日常使用
    python3 时间格式化
  • 原文地址:https://www.cnblogs.com/LoveShare/p/11965048.html
  • Copyright © 2011-2022 走看看