zoukankan      html  css  js  c++  java
  • centos7最小版配置

    配置启用dns

    cd /etc/sysconfig/network-scripts/
    vi ifcfg-ens33
    
    # 修改ONBOOT为yes
    ONBOOT=yes
    

    重启系统

    reboot
    

    安装net-tools

    yum install net-tools
    

    查看ip

    ifconfig
    

    安装openssh、openssl 并启动

    # 安装
    yum install openssh*
    yum -y install openssl openssl-devel patch
    # 启动 
    systemctl start sshd
    

    安装vim

    yum install vim -y
    

    安装wget

    yum -y install wget
    

    安装gcc编译套件

    yum install gcc
    

    安装systemctl自动补全服务名称

    yum install -y bash-completion
    

    安装zip压缩解压工具

    yum install -y unzip zip
    

    安装curl

    yum -y install curl
    

    安装lsof,列出当前系统打开文件的工具

    yum install lsof -y
    

    文件上传下载

    yum -y install lrzsz
    

    安装网络监听iftop

    # 先安装epel-release 
    yum install epel-release 
    
    # 然后在安装iftop
    yum install iftop
    

    进程监控工具htop(升级版top)

    yum install htop -y
    

    文件树 tree

    yum install tree -y
    

    服务器资源监控glances

    yum install epel* -y
    yum install python-pip python-devel -y
    yum install glances -y
    
  • 相关阅读:
    调试ASP
    规范的又一个例子
    不同单位转换问题
    客户处出现一个错误
    SQL视图嵌套视图很容易出错
    安装包得到大进步
    两年前的产品现在长得不错
    不用报表的理由
    PowerPoint笔记(五)
    文本编辑器vi
  • 原文地址:https://www.cnblogs.com/lixingwu/p/12220621.html
Copyright © 2011-2022 走看看