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

查看全文
  • 相关阅读:
    tomcat调优
    使用Docker部署Spring Boot项目
    java配置ueditor中解决“未找到上传文件”错误提示
    java.lang.NoClassDefFoundError: org/aspectj/weaver/reflect/ReflectionWorld$ReflectionWorldException
    spring01
    android中的wrap_content,match_parent, fill_parent
    RPC和http
    Failed to read artifact descriptor for xxx
    Error processing condition on org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafWebMvcConfiguration.resourceUrlEncodingFilter
    springboot的自动配置
  • 原文地址:https://www.cnblogs.com/LoveShare/p/11965048.html
  • Copyright © 2011-2022 走看看