为CentOS5构建本地yum仓库
作者 佚名技术
来源 Linux系统
浏览
发布时间 2012-05-02
项目中大量使用CentOS5作为运行平台,测试需要经常安装系统,每次要升级的文件越来越多,构建内部仓库一来方便安装,二来方便升级...---[服务端]创建基本仓库,并copy DVD或者CD文件(减少网络下载量)Copy the RPMs from the CDs/DVD to /var/www/html/centos/5/base.1. mount -o loop,ro CentOS-xxxxx.iso /mnt 2. cp -r /mnt /var/www/html/centos/5/base 同步远端仓库 3./usr/bin/rsync -avrt --delete rsync://rsync.muug.mb.ca/centos/5/os/i386/ /var/www/html/centos/5/os/i386/ 同步update仓库例子: /usr/bin/rsync -avrt rsync://rsync.muug.mb.ca/centos/5/updates/i386/ /opt/repos/yum/centos/5/updates/i386/ 镜像在这里的列表中选中快的http://www.centos.org/modules/tinycontent/index.php?id=30 客户端使用仓库 [base] name=CentOS-$releasever - Base baseurl=http://192.168.xx.xx/centos/$releasever/os/$basearch/ #mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os #baseurl=http://mirror.centos.org/centos/$releasever/os/$basearch/ gpgcheck=1 gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-5 #released updates [update] name=CentOS-$releasever - Updates baseurl=http://192.168.xx.xx/centos/$releasever/updates/$basearch/ #mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=updates #baseurl=http://mirror.centos.org/centos/$releasever/updates/$basearch/ gpgcheck=1 gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-CentOS-5 |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
关于为CentOS5构建本地yum仓库的所有评论