1.从官方的centos镜像站点(如 http://isoredirect.centos.org/centos/7/isos/x86_64/ )下载centos的iso镜像文件。
2.将镜像文件挂载到 /mnt 上 mount dev/cdrom/mnt
创建本地yum源
cd /etc/yum.repo.d/
创建一个新文件以.repo结尾
在编辑器中输入以下内容
[local]
name=Local YUM Repository
baseurl=file:///mnt/
enabled=1
gpgcheck=0
即可创建本地yum源