centos定制update的yum源

Posted a10086

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos定制update的yum源相关的知识,希望对你有一定的参考价值。

1.安装mini的系统,设置yum为保存cache

[root@controller ~]# cat /etc/yum.conf 
[main]
cachedir=/var/cache/yum/$basearch/$releasever
keepcache=1

2.执行yum update -y

#更新完后,把目录下面所有的rpm包拷贝出来到一个目录
find ./ -name *.rpm|xargs cp -rf {} /mnt/rpmrepo
#createrepo创建本地源
createrepo  /mnt/rpmrepo
#注解
#该路径为下载rpm包的路径
#命令执行完成后会生成repodata目录,并生成相应的repomd.xml文件
[root@controller ~]# cat /etc/yum.repos.d/ovirt.repo
[ovirt]
name=ovirt
baseurl=file:///mnt/rpmrepo
enabled=1
gpgcheck=0

 

以上是关于centos定制update的yum源的主要内容,如果未能解决你的问题,请参考以下文章

CentOS下升级系统 yum update命令 自己配置更新源

CentOS yum 命令出现 [Errno 14] curl#6 - "Couldn't resolve host ..." 的解决方法(代码片段

yum update 报错

CentOS下的yum upgrade和yum update区别,没事别乱用,和Ubuntu的update不一样!

yum update

CentOS yum update 与 yum upgrade 区别