搭建mirror镜像站
环境
下载镜像 792MB
系统:CentOS7.4-Mini-1708
IP:192.168.3.4
安装rsyncyum -y install rsync
创建存储目录mkdir /mirror /scripts
创建同步源脚本
rsync 同步方式
12345678910111213141516171819202122232425262728293031323334cat <<'EOF' >/scripts/ustc_rsync.sh#!/bin/bashif ! which rsync >/dev/null 2>&1;then exit 1;fi#rsync://mirrors.163.com/centos/7/rsyncUrl=( rsync://rsync.mirrors.ustc.edu.cn/repo/centos/7/ rsync://rsync.mirrors.ustc.edu.cn/repo/epel/7/)localDir=( /data/mirror/centos/7/ /data/mirror/epel/7/)rsync_Mirrors() { #rsync -vai4CH --safe-links --numeric-ids --delete --delete-delay
...