欢迎光临
我们一直在努力

centos7创建自己的yum源

建站超值云服务器,限时71元/月

安装软件:

yum -y install createrepo yum-utils

设置yum源为阿里云或网易的镜像,这里使用阿里云的:

wget -C /etc/yum.repo.d/ali.repo http://mirrors.aliyun.com/repo/Centos-7.repo
wget -C /etc/yum.repo.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo

同步镜像到本地

a.创建文件夹:

mkdir -p /home/lee/local

b. 同步阿里云的rpm包:

nohup reposync -p /home/lee/

c. 将所有的rpm包移动到/home/lee/local中:

mv /home/lee/base/Pachage/* /home/lee/local/
mv /home/lee/update/Pachage/* /home/lee/local/
mv /home/lee/epel/Pachage/* /home/lee/local/
mv /home/lee/extra/Pachage/* /home/lee/local/

d. 用createrepo创建本地yum源:

createrepo /home/lee/ #注意,不是local

更改yum源为自己的镜像:

vim /etc/yum.repo.d/local.repo

添加以下内容:

[local]
name=local repo
baseurl=file:///home/lee/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
enabled=1
赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » centos7创建自己的yum源
分享到: 更多 (0)