ftp分享镜像文件

任选ftp和http服务的一种,自行搭建yum源仓库,要求防火墙和selinux处于开启状态。
系统:redhat7.3

1配置好本机yum
ftp分享镜像文件_第1张图片
2
服务端安装ftp
#yum -y install vsftpd
#mkdir /var/ftp/pub/dvd
#umount /dev/sr0
#mount /dev/sr0 /var/ftp/pub/dvd
#service vsftpd start

firewall-cmd --add-service=ftp --permanent

firewall-cmd --reload

setenforce 1

客户端操作:
ftp分享镜像文件_第2张图片
yum list
ftp分享镜像文件_第3张图片在这里插入图片描述](https://img-blog.csdnimg.cn/2020031422061370.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L3JoZWxyZWRoYXQ=,size_16,color_FFFFFF,t_70)

你可能感兴趣的:(linux)