CentOS制作本地rpm源

前端之家收集整理的这篇文章主要介绍了CentOS制作本地rpm源前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

安装createrepo

  1. yum install createrepo

制作本地rpm源

  1. cd /opt/yliyun/conf
  2. createrepo ./rpm

repo配置

新建CentOS-Local.repo
/opt/yliyun/conf/CentOS-Local.repo

  1. # CentOS-Local.repo
  2. #
  3. # This repo can be used with mounted DVD media,verify the mount point for
  4. # CentOS-6. You can use this repo and yum to install items directly off the
  5. # DVD ISO that we release.
  6. #
  7. # To use this repo,put in your DVD and use it with the other repos too:
  8. # yum --enablerepo=c6-local [command]
  9. #
  10. # or for ONLY the media repo,do this:
  11. #
  12. # yum --disablerepo=\* --enablerepo=c6-local [command]
  13.  
  14. [c6-local]
  15. name=CentOS-$releasever - Media
  16. baseurl=file:///opt/yliyun/conf/rpm/
  17. gpgcheck=0
  18. enabled=1
  19. gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6

安装本地rpm

  1. yum --disablerepo=\* --enablerepo=c6-local -c conf/CentOS-Local.repo -q -y localinstall conf/rpm/*.rpm --nogpgcheck

猜你在找的CentOS相关文章