系统下载
使用国内加速镜像
https://developer.aliyun.com/mirror
https://mirrors.aliyun.com/centos/7.7.1908/isos/x86_64/CentOS-7-x86_64-DVD-1908.iso
开启FTP服务
vsftpd是Linux下比较好的的FTP服务器
//检查是否安装vsftpdrpm -qa | grep vsftpd//没有就安装vsftpdyum -y install vsftpd//设置系统服务chkconfig vsftpd on
wget的安装
wget是一个从网络上自动下载文件的自由工具
yum install wget
