zoukankan      html  css  js  c++  java
  • 查看Linux基本系统信息

    #! /bin/bash
    #The scripts will return the system infomation
    
    #return hostname and version infomation   // 返回主机名和系统版本信息
    echo -e "e[31;43m///// HOSTNAME INFOMATION *****e[0m"
    hostname
    uname -r
    cat /proc/version
    echo ""
    
    #File system disk space usage            // 文件系统磁盘可用空间
    echo -e "e[31;43m***** File System Disk Space usage INFOMATION *****e[0m"
    df -h
    echo ""
    
    #Idie time system and use of memory     //系统空闲和使用中的内存
    echo -e "e[31;43m***** Idie system And use of memory infomation *****e[0m"
    free
    echo ""
    
    #system start time                     //系统启动时间
    echo -e "e[31;43m***** System start time INFOMATION *****e[0m"
    uptime
    echo ""
    
    #User logged on                        //登录的用户
    echo -e "e[31;43m***** User logged on INFOMATION *****e[0m"
    who
    echo ""
    
    #Use memory up to five processes         //使用内存最多的五个进程
    echo -e "e[31;43m***** Use memory up to five processes INFOMATION *****e[0m"
    ps -eo %mem,%cpu,comm --sort=-%mem | head -n 6
    echo ""
    echo -e "e[1;32mDone.e[0m"
  • 相关阅读:
    GitHub入门之一:使用github下载项目
    Android Fragment 真正的完全解析(下)
    Android Fragment 真正的完全解析(上)
    c# 发送邮件
    SmartThreadPool
    虚拟机
    相关系数
    为枚举类型添加说明 zt
    MD5
    hashcode
  • 原文地址:https://www.cnblogs.com/yangxiaofei/p/5421263.html
Copyright © 2011-2022 走看看