配置启用dns
cd /etc/sysconfig/network-scripts/
vi ifcfg-ens33
# 修改ONBOOT为yes
ONBOOT=yes
重启系统
reboot
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