美文网首页
yum.conf文件解析

yum.conf文件解析

作者: 素白流殇 | 来源:发表于2016-12-21 21:08 被阅读27次
[main]
cachedir=/var/cache/yum          #yum下载的RPM包的缓存目录
keepcache=0                  #缓存是否保存,1保存,0不保存。
debuglevel=2                 #调试级别(0-10),默认为2(具体调试级别的应用,我也不了解)。
logfile=/var/log/yum.log       #yum的日志文件所在的位置
exactarch=1                 #在更新的时候,是否允许更新不同版本的RPM包,比如是否在i386上更新i686的RPM包。
obsoletes=1                 #这是一个update的参数,具体请参阅yum(8),简单的说就是相当于upgrade,允许更新陈旧的RPM包。
gpgcheck=1                 #是否检查GPG(GNU Private Guard),一种密钥方式签名。
plugins=1                 #是否允许使用插件,默认是0不允许,但是我们一般会用yum-fastestmirror这个插件。
installonly_limit=3          #允许保留多少个内核包。
exclude=selinux*           #屏蔽不想更新的RPM包,可用通配符,多个RPM包之间使用空格分离。
#       This is the default, if you make this bigger yum won't see if the metadata
# is newer on the remote and so you'll "gain" the bandwidth of not having to
# download the new metadata and "pay" for it by yum not having correct
# information.
# It is esp. important, to have correct metadata, for distributions like
# Fedora which don't keep old packages around. If you don't like this checking
# interupting your command line usage, it's much better to have something
# manually check the metadata once an hour (yum-updatesd will do this).
metadata_expire=90m      #设定保存时长
# PUT YOUR REPOS HERE or IN separate files named file.repo
# in /etc/yum.repos.d

相关文章

  • yum.conf文件解析

  • yum

    配置文件: /etc/yum.conf 公共配置 配置文件: /etc/yum.repos.d/*.repo...

  • yum添加代理

    在/etc/yum.conf的文件末尾添加proxy=http://proxyHost:proxyPort[htt...

  • yum -y update 忽略内核更新

    用 yum -y upgrade 不更新内核 命令配置 配置文件/etc/yum.conf

  • yum 缓存配置

    打开yum的缓存功能:/etc/yum.conf配置文件,设置"keepcache=1"配置文件中的”cached...

  • CentOS7安装kubeadm--用阿里云yum源

    步骤 配置设置好/etc/yum.conf的代理。添加repo文件wget -O /etc/yum.repos.d...

  • Yum命令解析

    Yum配置文件位于/etc/yum.conf和/etc/yum.repos.d/CentOS-Base.repo目...

  • linux yum 使用

    一、配置 yum 配置 主配置文件 /etc/yum.conf 资源库配置目录 /etc/yum.repos.d ...

  • yum配置保存安装包

    用yum安装软件默认是不保存软件包的,如果要保存的话只需修改配置文件/etc/yum.conf,将keepcach...

  • 软件包管理

    RPM无法解决软件包的依赖性 rpm包的管理 yum(软件的仓库) 配置文件的路径:/etc/yum.conf 在...

网友评论

      本文标题:yum.conf文件解析

      本文链接:https://www.haomeiwen.com/subject/ryxcvttx.html