微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

CentOS制作本地rpm源

安装createrepo

yum install createrepo

制作本地rpm源

cd /opt/yliyun/conf
createrepo ./rpm

repo配置

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

# CentOS-Local.repo
#
#  This repo can be used with mounted DVD media,verify the mount point for
#  CentOS-6.  You can use this repo and yum to install items directly off the
#  DVD ISO that we release.
#
# To use this repo,put in your DVD and use it with the other repos too:
#  yum --enablerepo=c6-local [command]
#  
# or for ONLY the media repo,do this:
#
#  yum --disablerepo=\* --enablerepo=c6-local [command]

[c6-local]
name=CentOS-$releasever - Media
baseurl=file:///opt/yliyun/conf/rpm/
gpgcheck=0
enabled=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6

安装本地rpm

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

原文地址:https://www.jb51.cc/centos/381572.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。