cd /etc/sysconfig/network-scripts/
vi ifcfg-ens33
# 修改ONBOOT为yes
ONBOOT=yes
reboot
yum install net-tools
ifconfig
# 安装
yum install openssh*
yum -y install openssl openssl-devel patch
# 启动
systemctl start sshd
ssh root@192.168.164.129
yum install vim -y
yum -y install wget
yum install gcc
yum install -y bash-completion
yum install -y unzip zip
# 下载curl安装包
wget https://curl.haxx.se/download/curl-7.63.0.tar.gz
# 解压安装包
tar zxvf curl-7.53.0.tar.gz
# 切换到目录
cd curl-7.63.0/
# 编译
make
# 安装编译文件
make install
#查看安装版本
curl --version
yum install lsof -y
yum -y install lrzsz
# 先安装epel-release
yum install epel-release
# 然后在安装iftop
yum install iftop
原文:https://www.cnblogs.com/lixingwu/p/12220621.html