yum下载的包在哪里?

这个是由/etc/yum.conf控制的:

# 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=5 ... ...

 

cachedir是软件包下载后保存的目录。但默认是不保存的,因为keepcache=0。若想要保存下载的软件包,必须将keepcache设置1才可以。

你可能感兴趣的:(yum)