How to make local rpm source in CentOS

藏色散人
Release: 2020-06-12 15:18:59
forward
2445 people have browsed it

The following column centos tutorial will introduce to you how to create a local rpm source in CentOS. I hope it will be helpful to friends in need!

How to make local rpm source in CentOS

Install createrepo

yum install createrepo
Copy after login

Make local rpm source

cd /opt/yliyun/conf
createrepo ./rpm
Copy after login

repo configuration

New 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
Copy after login

Install local rpm

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

The above is the detailed content of How to make local rpm source in CentOS. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:segmentfault.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!