搭建本地yum源

为了解决服务器安装软件包问题,搭建了yum的内部安装源

环境:1台可以访问Internet的Centos系统

1、建立文件
mkdir -p /home/repo/7/x86_x64

mkdir -p /home/repo/6/x86_x64

2、下载epel源

wget -O /etc/yum.repos.d/epel.repo https://mirrors.aliyun.com/repo/epel-7.repo

3、安装httpd服务,用于提供存放yum源
yum install httpd -y

4、安装yum-utils提供reporsync服务
yum install yum-utils -y

5、同步
reposync -p /home/repo/7/x86_x64
createrepo -p /home/repo/7/x86_x64/base/

你可能感兴趣的:(linux)