自定义yum执行时repo目录
2021-12-08 22:21
方法一 通过setopt参数覆盖默认reposdir配置
yum install pkgs-name --setopt=reposdir=/tmp
setopt
的作用是可以设置/etc/yum.conf中的属性值,也可以说是覆盖那些属性信息。
方法二 修改/etc/yum.conf配置文件,指定reposdir参数
# cat /etc/yum.conf
[main]
cachedir=/var/cache/yum/$basearch/$releasever
keepcache=0
debuglevel=2
logfile=/var/log/yum.log
exactarch=1
obsoletes=1
gpgcheck=1
plugins=1
installonly_limit=3
reposdir=/tmp