软硬件开发技术笔记
保持专注,拒绝内耗
自定义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
分类
mac
1篇
4篇
c
1篇
4篇
2篇
1篇
搜索